[arch-commits] Commit in (8 files)

2020-11-24 Thread Daniel M. Capella via arch-commits
Date: Tuesday, November 24, 2020 @ 09:25:31
  Author: polyzen
Revision: 760891

Add bitwarden_rs

Added:
  bitwarden_rs/
  bitwarden_rs/repos/
  bitwarden_rs/trunk/
  bitwarden_rs/trunk/PKGBUILD
  bitwarden_rs/trunk/bitwarden_rs.install
  bitwarden_rs/trunk/bitwarden_rs.service
  bitwarden_rs/trunk/bitwarden_rs.sysusers.conf
  bitwarden_rs/trunk/bitwarden_rs.tmpfiles

+
 PKGBUILD   |   57 +++
 bitwarden_rs.install   |8 
 bitwarden_rs.service   |   69 +++
 bitwarden_rs.sysusers.conf |1 
 bitwarden_rs.tmpfiles  |2 +
 5 files changed, 137 insertions(+)

Added: bitwarden_rs/trunk/PKGBUILD
===
--- bitwarden_rs/trunk/PKGBUILD (rev 0)
+++ bitwarden_rs/trunk/PKGBUILD 2020-11-24 09:25:31 UTC (rev 760891)
@@ -0,0 +1,57 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Markus Richter 
+# Contributor: Timothée Ravier https://github.com/dani-garcia/bitwarden_rs
+license=('GPL3')
+depends=('mariadb-libs' 'openssl' 'postgresql-libs' 'sqlite')
+makedepends=('rustup')
+optdepends=('bitwarden_rs-vault: for the web app'
+'mariadb: for the MySQL backend'
+'postgresql: for the PostgreSQL backend')
+conflicts=("$pkgname-mysql" "$pkgname-postgresql")
+backup=('etc/bitwarden_rs.env')
+install=$pkgname.install
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz"
+"$pkgname.service"
+"$pkgname.sysusers.conf"
+"$pkgname.tmpfiles")
+b2sums=('faf4a3e0cba6905547c347bd8d7939e2412116d5c9b226e49cddd04306b6e69e00e1f5d7b1b09493ff02614d5417b34cd9c54cb3efffbf238e23e3f54bacd5d1'
+
'99ebd0c6dae3f3ef30283b6c45f30f64e7a0d0e8b4b18cc8b6eee7ae0d40a047813f5316858e8d3f758595bdb63e3ee3aa6e79a1c29371798cf98dd3430412f7'
+
'5a80dc0b4bca0eeb22e7cfb69be3d747ab98f7501ee1d78b7167e5f938fe48644799abfc9cfc89a0dbeb0b7597180050db980f4229f2b5e595328131ce3ae4e9'
+
'f874e011241c0ad39c72ea4f540ab57bafe5d7d577a3b37fc86905752cd646bcaf690d85ea0d9f0f5ee4559ba1ff3f330995b99e71a42b775e41c6c8a4a8a834')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's,# DATA_FOLDER=data,DATA_FOLDER=/var/lib/bitwarden_rs,
+  s,# WEB_VAULT_ENABLED=true,WEB_VAULT_ENABLED=false,
+  s,# LOG_FILE=/path/to/log,LOG_FILE=/var/log/bitwarden_rs.log,
+  /^# ROCKET_TLS/a ROCKET_LIMITS={json=10485760}' .env.template
+}
+
+build() {
+  cd $pkgname-$pkgver
+  rustup set profile minimal
+  BWRS_VERSION="$pkgver" cargo build --release --locked --features 
sqlite,mysql,postgresql
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cargo test --release --locked --features sqlite,mysql,postgresql
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 .env.template "$pkgdir"/etc/bitwarden_rs.env
+  install -Dt "$pkgdir"/usr/bin target/release/bitwarden_rs
+  install -Dm644 -t "$pkgdir"/usr/lib/systemd/system ../bitwarden_rs.service
+  install -Dm644 ../$pkgname.sysusers.conf 
"$pkgdir"/usr/lib/sysusers.d/bitwarden_rs.conf
+  install -Dm644 ../bitwarden_rs.tmpfiles 
"$pkgdir"/usr/lib/tmpfiles.d/bitwarden_rs.conf
+}
+
+# vim:set ts=2 sw=2 et:

Added: bitwarden_rs/trunk/bitwarden_rs.install
===
--- bitwarden_rs/trunk/bitwarden_rs.install (rev 0)
+++ bitwarden_rs/trunk/bitwarden_rs.install 2020-11-24 09:25:31 UTC (rev 
760891)
@@ -0,0 +1,8 @@
+post_install() {
+  cat << EOF
+Configure the server via its environment variables in /etc/bitwarden_rs.env.
+
+Start bitwarden_rs and enable its systemd service:
+# systemctl enable --now bitwarden_rs.service
+EOF
+}

Added: bitwarden_rs/trunk/bitwarden_rs.service
===
--- bitwarden_rs/trunk/bitwarden_rs.service (rev 0)
+++ bitwarden_rs/trunk/bitwarden_rs.service 2020-11-24 09:25:31 UTC (rev 
760891)
@@ -0,0 +1,69 @@
+[Unit]
+Description=Bitwarden Server (Rust Edition)
+Documentation=https://github.com/dani-garcia/bitwarden_rs
+After=network.target
+
+[Service]
+# The user/group bitwarden_rs is run under. These are created at install, with
+# /var/lib/bitwarden_rs as the home directory
+User=bitwarden_rs
+Group=bitwarden_rs
+
+# The location of the .env file for configuration
+EnvironmentFile=/etc/bitwarden_rs.env
+
+# The location of the compiled binary
+ExecStart=/usr/bin/bitwarden_rs
+
+# Set reasonable connection and process limits
+LimitNOFILE=1048576
+LimitNPROC=64
+
+# Set the working directory (user and password data are stored here) and only
+# allow writes to the following
+WorkingDirectory=~
+ReadWritePaths=/var/lib/bitwarden_rs /var/log/bitwarden_rs.log
+
+# Prevent bitwarden_rs from doing anything stupid and/or unneccessary
+LockPersonality=yes
+MemoryDenyWriteExecute=yes
+NoNewPrivileges=yes
+
+PrivateTmp=yes
+PrivateDevices=yes
+
+ProtectHome=yes
+ProtectSystem=strict

[arch-commits] Commit in (8 files)

2020-11-23 Thread David Runge via arch-commits
Date: Monday, November 23, 2020 @ 20:56:33
  Author: dvzrv
Revision: 760145

Add cri-o.

The container-runtime can be used with kubelet and 
follows kubernetes' upstream in versioning and compatibility.

Added:
  cri-o/
  cri-o/repos/
  cri-o/trunk/
  cri-o/trunk/PKGBUILD
  cri-o/trunk/cri-o-1.19.0-pinns_pie.patch
  cri-o/trunk/cri-o.install
  cri-o/trunk/modules-cri-o.conf
  cri-o/trunk/sysctl-cri-o.conf

--+
 PKGBUILD |   81 +
 cri-o-1.19.0-pinns_pie.patch |   33 
 cri-o.install|8 
 modules-cri-o.conf   |2 +
 sysctl-cri-o.conf|3 +
 5 files changed, 127 insertions(+)

Added: cri-o/trunk/PKGBUILD
===
--- cri-o/trunk/PKGBUILD(rev 0)
+++ cri-o/trunk/PKGBUILD2020-11-23 20:56:33 UTC (rev 760145)
@@ -0,0 +1,81 @@
+# Maintainer: David Runge 
+# Contributor: Tony Lambiris 
+
+pkgname=cri-o
+pkgver=1.19.0
+pkgrel=6
+pkgdesc="Open Container Initiative-based implementation of Kubernetes 
Container Runtime Interface"
+arch=('x86_64')
+url="https://github.com/cri-o/cri-o;
+license=('Apache')
+depends=('cni-plugins' 'conmon' 'conntrack-tools' 'containers-common'
+'device-mapper' 'glibc' 'iproute2' 'iptables' 'runc')
+makedepends=('apparmor' 'btrfs-progs' 'gpgme' 'go' 'go-md2man' 'libassuan' 
'libseccomp' 'ostree')
+optdepends=('apparmor: for apparmor integration'
+'btrfs-progs: for btrfs support')
+provides=('container-runtime')
+backup=('etc/crio/crio.conf')
+# configuration override and hook directories should exist
+options=('emptydirs')
+install="${pkgname}.install"
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;
+"modules-${pkgname}.conf"
+"sysctl-${pkgname}.conf"
+"${pkgname}-1.19.0-pinns_pie.patch")
+sha512sums=('15b506d755be735d7b71e503b02b309693e3090be41f5790bd34cec460238eab56829239caf18849f3656cf8c12f77a10bbb3ae4ad81eb4e18858946e454583d'
+
'85ee1310cb36c85c42b4068a9549a3ef72b856cd61b2c1036c3e871ef43a69ed80b43599ad94ce5b069ddd823e730596bb3d3875d4ba8cd77c4cc1985335'
+
'fbcc3c29d5d3dedf56ea96577dec50cb2656b4a22f5a82bf2d600ae20c6b113d35d5db116bac5520398d47a22d40835f56b86433c5713924060e1a7018d297ec'
+
'1eb382a0a5c273a6ed1df9666ff2b7a83cdb513818f85ca9984da254aecf518580c1b13410715eb73fd1bc7d687a4fd6ef5ae30eb11a1046e422157f117aeb1a')
+b2sums=('8288985392a08fb7fdc58f509d34f8814bf9670386b7aae42be349765cb1f3bd3f4b77077e9c282a4a25b0f99b8a8fc335c6a53053bd2575b3e23c225483a1d3'
+
'2771c64b45876d728fc139aa90754df8aadb07e14a7e1126a1488dfcbad7ebcbca923cb0230c4b87acdc6dad8243af2ad06ef4ce587d5c71fc200e40835d8b8d'
+
'c8a2133df6575c54eb9bd0a89a0c6c764c0cd456bff7338c4a2e1ef4f70a5a778d5a05c335fcf2491ed55e15fc36c677853c0bc8ab66d673f1950fa2c7695f6e'
+
'8d77c8060f483c943bd48d9bc2c1d676878e570b29989b7ff733906612b6dff09ed1ffcabc5174175ebc667df897e37e98a8132016bddcb27137661fca2da6dd')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # make sure that /run instead of /var/run is used
+  sed -e 's|/var/run|/run|g' \
+  -i crictl.yaml pkg/config/config{,_unix}.go \
+  docs/*.md crio-umount.conf \
+  vendor/github.com/containers/conmon/runner/config/config_unix.go \
+  vendor/github.com/containers/storage/{storage.conf,store.go}
+  # make sure that /usr/bin is used in systemd units
+  sed -e 's|/usr/local|/usr|g' \
+  -i contrib/systemd/*.service
+  # set the correct default PATH for cni-plugins
+  sed -e 's|/opt/cni/bin/|/usr/lib/cni/|g' \
+  -i pkg/config/config_unix.go
+  # do not statically link pinns and enable PIE
+  patch -Np1 -i "../${pkgname}-1.19.0-pinns_pie.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+
+  make
+}
+
+package() {
+  depends+=('libdevmapper.so' 'libgpgme.so' 'libseccomp.so')
+  cd "${pkgname}-${pkgver}"
+  # makefile is mixing DESTDIR and PREFIX
+  make install install.systemd DESTDIR="${pkgdir}" PREFIX="${pkgdir}/usr"
+  # modules
+  install -vDm 644 "../modules-${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/cri-o.conf"
+  # sysctl
+  install -vDm 644 "../sysctl-${pkgname}.conf" 
"${pkgdir}/usr/lib/sysctl.d/90-cri-o.conf"
+  # docs
+  install -vDm 644 
{CONTRIBUTING,README,awesome,code-of-conduct,install,transfer,tutorial}.md \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 tutorials/*.md \
+-t "${pkgdir}/usr/share/doc/${pkgname}/tutorials/"
+  install -vDm 644 contrib/cni/*.{conf,md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/examples/cni/"
+  install -vDm 644 

[arch-commits] Commit in (8 files)

2020-11-19 Thread Alexander Rødseth via arch-commits
Date: Thursday, November 19, 2020 @ 14:10:11
  Author: arodseth
Revision: 757580

Add opencascade74 since opencascade 7.5.0 currently breaks FreeCAD

Added:
  opencascade74/
  opencascade74/repos/
  opencascade74/repos/community-x86_64/
  opencascade74/trunk/
  opencascade74/trunk/PKGBUILD
  opencascade74/trunk/cmake-fix-variable.patch
  opencascade74/trunk/fix-install-dir-references.patch
  opencascade74/trunk/opencascade.sh

--+
 PKGBUILD |   55 +
 cmake-fix-variable.patch |   12 
 fix-install-dir-references.patch |   24 
 opencascade.sh   |   24 
 4 files changed, 115 insertions(+)

Added: opencascade74/trunk/PKGBUILD
===
--- opencascade74/trunk/PKGBUILD(rev 0)
+++ opencascade74/trunk/PKGBUILD2020-11-19 14:10:11 UTC (rev 757580)
@@ -0,0 +1,55 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Kyle Keen 
+# Contributor: Gabriel Souza Franco 
+# Contributor: Florian Pritz 
+# Contributor: Giuseppe Borzi 
+# Contributor: Brice Méalier 
+# Contributor: Michele Mocciola 
+
+pkgname=opencascade74
+pkgver=7.4.0
+pkgrel=1
+pkgdesc='Open CASCADE Technology, 3D modeling & numerical simulation'
+arch=(x86_64)
+url='https://www.opencascade.org'
+license=(custom)
+depends=(ffmpeg freeimage gl2ps intel-tbb tk vtk)
+makedepends=(cmake git ninja qt5-base)
+conflicts=(opencascade)
+source=("$pkgname.tgz::https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=fd47711d682be943f0e0a13d1fb54911b0499c31;sf=tgz;
+opencascade.sh
+fix-install-dir-references.patch
+cmake-fix-variable.patch)
+sha256sums=('af73c89ade0467ca7351dc445e4bd20832387da1e205f6955bc9356ab7d9f22b'
+'2064536a85d46fee368a8f1a712b2c6c77ca79c5bffcc68cba79d70d36efa2f4'
+'afb584aa453993ae8d9e2b983594558531ede735a5892754b812be30650c9fb5'
+'c7427082400b2d1ac58c59549d4dd1ee5b27d06847b7907842e9e2f2b68980fa')
+
+prepare() {
+  cd occt-fd47711
+  patch -Np1 -i ../fix-install-dir-references.patch
+  patch -Np1 -i ../cmake-fix-variable.patch
+}
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../occt-fd47711 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_FFMPEG=ON \
+-DUSE_FREEIMAGE=ON \
+-DUSE_GL2PS=ON \
+-DUSE_TBB=ON \
+-DUSE_VTK=ON \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm755 opencascade.sh "$pkgdir/etc/profile.d/opencascade.sh"
+  install -d "$pkgdir/usr/share/licenses/$pkgname/"
+  mv "$pkgdir/usr/share/doc/opencascade/"* 
"$pkgdir/usr/share/licenses/$pkgname"
+  rm -r "$pkgdir/usr/share/doc" "$pkgdir/usr/bin/"*.sh
+}

Added: opencascade74/trunk/cmake-fix-variable.patch
===
--- opencascade74/trunk/cmake-fix-variable.patch
(rev 0)
+++ opencascade74/trunk/cmake-fix-variable.patch2020-11-19 14:10:11 UTC 
(rev 757580)
@@ -0,0 +1,12 @@
+diff -Naur occt-V7_3_0/adm/templates/OpenCASCADEConfig.cmake.in 
occt-V7_3_0_new/adm/templates/OpenCASCADEConfig.cmake.in
+--- occt-V7_3_0/adm/templates/OpenCASCADEConfig.cmake.in   2018-05-29 
12:14:02.0 +0200
 occt-V7_3_0.new/adm/templates/OpenCASCADEConfig.cmake.in   2018-05-29 
12:14:02.0 +0200
+@@ -26,7 +26,7 @@
+ if (OpenCASCADE_INSTALL_PREFIX MATCHES "/cmake$")
+   get_filename_component (OpenCASCADE_INSTALL_PREFIX 
"${OpenCASCADE_INSTALL_PREFIX}" PATH)
+ endif()
+-if (OpenCASCADE_INSTALL_PREFIX MATCHES "/lib$")
++if (OpenCASCADE_INSTALL_PREFIX MATCHES "/lib(64)?$")
+   get_filename_component (OpenCASCADE_INSTALL_PREFIX 
"${OpenCASCADE_INSTALL_PREFIX}" PATH)
+ endif()
+ 

Added: opencascade74/trunk/fix-install-dir-references.patch
===
--- opencascade74/trunk/fix-install-dir-references.patch
(rev 0)
+++ opencascade74/trunk/fix-install-dir-references.patch2020-11-19 
14:10:11 UTC (rev 757580)
@@ -0,0 +1,24 @@
+diff -aur occt-V7_1_0/CMakeLists.txt occt-V7_1_0.new/CMakeLists.txt
+--- occt-V7_1_0/CMakeLists.txt 2016-11-25 11:50:18.0 +0100
 occt-V7_1_0.new/CMakeLists.txt 2017-03-18 08:44:10.406668714 +0100
+@@ -906,7 +906,7 @@
+ endforeach()
+ # install OpenCASCADE config file with compile definitions and C/C++ flags 
ONLY for current configuration
+ install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" 
CMAKE_INSTALL_CONFIG_NAME_LOWER)")
+-install (CODE 
"configure_file(\"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\"
 
\"${INSTALL_DIR}/${INSTALL_DIR_CMAKE}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\"
 COPYONLY)")
++install (CODE 

[arch-commits] Commit in (8 files)

2020-11-06 Thread Daniel M. Capella via arch-commits
Date: Friday, November 6, 2020 @ 21:37:38
  Author: polyzen
Revision: 744617

Add jedi-language-server and python-pygls

Added:
  jedi-language-server/
  jedi-language-server/repos/
  jedi-language-server/trunk/
  jedi-language-server/trunk/PKGBUILD
  python-pygls/
  python-pygls/repos/
  python-pygls/trunk/
  python-pygls/trunk/PKGBUILD

-+
 jedi-language-server/trunk/PKGBUILD |   26 ++
 python-pygls/trunk/PKGBUILD |   30 ++
 2 files changed, 56 insertions(+)

Added: jedi-language-server/trunk/PKGBUILD
===
--- jedi-language-server/trunk/PKGBUILD (rev 0)
+++ jedi-language-server/trunk/PKGBUILD 2020-11-06 21:37:38 UTC (rev 744617)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=jedi-language-server
+pkgver=0.21.0
+pkgrel=2
+pkgdesc='Language server for Jedi'
+arch=('any')
+url=https://github.com/pappasam/jedi-language-server
+license=('MIT')
+depends=('python-click' 'python-jedi' 'python-pygls')
+makedepends=('python-pip' 'python-poetry')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('bb9d5e5c0aadf69cc441263685c83c12e67b6ed6f546dbd92dbed417123d8a47')
+b2sums=('73d3b3fecca4d7df7eb9dafd0bc9618844754c3ba8cbeeb402bab6e342f223ee4de49593dc27e3c1c1bd0a329f49f54e2c17bd5a98750c4f756cba9bca074a3f')
+
+build() {
+  cd $pkgname-$pkgver
+  poetry build --format wheel
+}
+
+package() {
+  cd $pkgname-$pkgver
+  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
+}
+
+# vim:set ts=2 sw=2 et:

Added: python-pygls/trunk/PKGBUILD
===
--- python-pygls/trunk/PKGBUILD (rev 0)
+++ python-pygls/trunk/PKGBUILD 2020-11-06 21:37:38 UTC (rev 744617)
@@ -0,0 +1,30 @@
+# Maintainer: Otreblan 
+
+_name=pygls
+pkgname=python-pygls
+pkgver=0.9.1
+pkgrel=2
+pkgdesc='Pythonic generic implementation of the Language Server Protocol'
+arch=('any')
+url=https://github.com/openlawlibrary/pygls
+license=('APACHE')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-mock' 'python-pytest' 'python-pytest-asyncio')
+source=("$url/archive/v$pkgver/$_name-v$pkgver.tar.gz")
+b2sums=('f723ce70d1d080c52266b9449c589b9aabf04c748793a67d775436fa326fbdd6fd63876061fb5bdad95434c832e4ee351e36483b2a8406ad7b4dd9bdc9a1c2d2')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  pytest
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


[arch-commits] Commit in (8 files)

2020-11-05 Thread Ike Devolder via arch-commits
Date: Thursday, November 5, 2020 @ 19:16:07
  Author: idevolder
Revision: 743372

bring in vivaldi

Added:
  vivaldi-ffmpeg-codecs/
  vivaldi-ffmpeg-codecs/repos/
  vivaldi-ffmpeg-codecs/trunk/
  vivaldi-ffmpeg-codecs/trunk/PKGBUILD
  vivaldi/
  vivaldi/repos/
  vivaldi/trunk/
  vivaldi/trunk/PKGBUILD

--+
 vivaldi-ffmpeg-codecs/trunk/PKGBUILD |   65 +
 vivaldi/trunk/PKGBUILD   |   52 ++
 2 files changed, 117 insertions(+)

Added: vivaldi/trunk/PKGBUILD
===
--- vivaldi/trunk/PKGBUILD  (rev 0)
+++ vivaldi/trunk/PKGBUILD  2020-11-05 19:16:07 UTC (rev 743372)
@@ -0,0 +1,52 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: TZ86
+
+pkgname=vivaldi
+_rpmversion=3.4.2066.94-1
+pkgver=3.4.2066.94
+pkgrel=2
+pkgdesc='An advanced browser made with the power user in mind.'
+url="https://vivaldi.com;
+options=(!strip !zipman)
+license=('custom')
+arch=('x86_64')
+depends=('gtk3' 'libcups' 'nss' 'alsa-lib' 'libxss' 'ttf-font' 
'desktop-file-utils' 'shared-mime-info' 'hicolor-icon-theme')
+makedepends=('w3m')
+optdepends=(
+'vivaldi-ffmpeg-codecs: playback of proprietary video/audio'
+'pepper-flash: flash support'
+'google-chrome: Widevine DRM Plugin'
+'vivaldi-widevine: Widevine DRM Plugin'
+'libnotify: native notifications'
+)
+source=("https://downloads.vivaldi.com/stable/vivaldi-stable-${_rpmversion}.x86_64.rpm;)
+sha512sums=('2bd8722cd73da30a40ff46cfbde476a6a58827f9bf0053a52925026c46be6969f7de576f6aa013a815093f83798feba69a42bf20bfbaf065d965bd38d688ebd1')
+
+package() {
+cp --parents -a {opt,usr/bin,usr/share} "$pkgdir"
+
+# suid sandbox
+chmod 4755 "$pkgdir/opt/$pkgname/vivaldi-sandbox"
+
+# make /usr/bin/vivaldi-stable available
+binf="$pkgdir/usr/bin/vivaldi-stable"
+if [[ ! -e "$binf" ]] && [[ ! -f "$binf" ]] && [[ ! -L "$binf" ]]; then
+install -dm755 "$pkgdir/usr/bin"
+ln -s /opt/vivaldi/vivaldi "$binf"
+fi
+
+# install icons
+for res in 16 22 24 32 48 64 128 256; do
+install -Dm644 "$pkgdir/opt/$pkgname/product_logo_${res}.png" \
+"$pkgdir/usr/share/icons/hicolor/${res}x${res}/apps/$pkgname.png"
+done
+
+# license
+install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
+strings "$pkgdir/opt/vivaldi/locales/en-US.pak" \
+| tr '\n' ' ' \
+| sed -rne 's/.*(.*html>).*/\1/p' \
+| w3m -I 'utf-8' -T 'text/html' \
+> "$pkgdir/usr/share/licenses/$pkgname/eula.txt"
+}
+

Added: vivaldi-ffmpeg-codecs/trunk/PKGBUILD
===
--- vivaldi-ffmpeg-codecs/trunk/PKGBUILD(rev 0)
+++ vivaldi-ffmpeg-codecs/trunk/PKGBUILD2020-11-05 19:16:07 UTC (rev 
743372)
@@ -0,0 +1,65 @@
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+
+pkgname=vivaldi-ffmpeg-codecs
+pkgver=86.0.4240.185
+_vivaldi_major_version=3.4
+pkgrel=2
+pkgdesc="additional support for proprietary codecs for vivaldi"
+arch=('x86_64')
+url="https://ffmpeg.org/;
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=(
+  'gtk3' 'libexif' 'libxss' 'ninja' 'nss' 'pciutils' 'python2' 'python'
+  'xdg-utils' 'gn'
+)
+options=('!strip')
+source=(
+  
"https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz;
+)
+sha512sums=('b31a8fbf6c5ea667cfdbd3568f2fb87c4942e424fa957d83125494b9eb923ffa1dbd258bbc51801d7920d70dd65bbf268b0afd08ed195cc5204126166095fe11')
+
+prepare() {
+  cd "$srcdir/chromium-$pkgver"
+
+  # Force script incompatible with Python 3 to use /usr/bin/python2
+  sed -i '1s|python$|&2|' third_party/dom_distiller_js/protoc_plugins/*.py
+
+  # Make xcbgen available to ui/gfx/x/gen_xproto.py running under Python 2
+  ln -s /usr/lib/python3.*/site-packages/xcbgen "$srcdir/"
+
+}
+
+build() {
+  cd "$srcdir/chromium-$pkgver"
+
+  python2 tools/clang/scripts/update.py
+
+  export 
PATH="${srcdir}/chromium-${pkgver}/third_party/llvm-build/Release+Asserts/bin:$PATH"
+
+  # ui/gfx/x/gen_xproto.py needs xcbgen
+  export PYTHONPATH=$srcdir
+
+  # error while loading shared libraries: libtinfo.so.5: cannot open shared 
object file: No such file or directory
+  ln -s /usr/lib/libtinfo.so.6 \
+third_party/llvm-build/Release+Asserts/lib/libtinfo.so.5
+
+  export CC="clang"
+  export CXX="clang++"
+
+  local args="ffmpeg_branding=\"ChromeOS\" proprietary_codecs=true 
enable_platform_hevc=true enable_platform_ac3_eac3_audio=true 
enable_platform_mpeg_h_audio=true enable_platform_dolby_vision=true 
enable_mse_mpeg2ts_stream_parser=true use_gnome_keyring=false use_sysroot=false 
use_gold=false linux_use_bundled_binutils=false treat_warnings_as_errors=false 
enable_nacl=false enable_nacl_nonsfi=false clang_use_chrome_plugins=true 
is_component_build=true is_debug=false symbol_level=0 

[arch-commits] Commit in (8 files)

2020-09-18 Thread Andreas Radke via arch-commits
Date: Friday, September 18, 2020 @ 21:57:30
  Author: andyrtr
Revision: 396287

add packages required for recent printing packages changes

Added:
  lprint/
  lprint/repos/
  lprint/trunk/
  lprint/trunk/PKGBUILD
  pappl/
  pappl/repos/
  pappl/trunk/
  pappl/trunk/PKGBUILD

---+
 lprint/trunk/PKGBUILD |   32 
 pappl/trunk/PKGBUILD  |   63 
 2 files changed, 95 insertions(+)

Added: lprint/trunk/PKGBUILD
===
--- lprint/trunk/PKGBUILD   (rev 0)
+++ lprint/trunk/PKGBUILD   2020-09-18 21:57:30 UTC (rev 396287)
@@ -0,0 +1,32 @@
+# Maintainer: Andreas Radke 
+# Contributor: WorMzy Tykashi 
+
+pkgname=lprint
+pkgver=1.0
+pkgrel=1
+pkgdesc="Label Printer Application"
+arch=('x86_64')
+url="https://www.msweet.org/lprint/;
+license=('Apache' 'custom')
+depends=('libcups' 'libpng' 'libusb' 'pam')
+source=("https://github.com/michaelrsweet/lprint/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('845464660B686AAB36540B6F999559A027815955')  # M. Sweet
+sha256sums=('52a34d4a17accdc90aa32a29faf8da3493c274d838fdb86f0034ceaac83b5a32'
+'SKIP')
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   #make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # add license + exception
+  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" {LICENSE,NOTICE}
+}

Added: pappl/trunk/PKGBUILD
===
--- pappl/trunk/PKGBUILD(rev 0)
+++ pappl/trunk/PKGBUILD2020-09-18 21:57:30 UTC (rev 396287)
@@ -0,0 +1,63 @@
+# Maintainer: Andreas Radke 
+
+pkgname=pappl
+#https://github.com/michaelrsweet/pappl/commits/master
+_commit=8377f21cd02a7140a1feaf9cf9eb73002f52ac65 # master 2020-09-11
+pkgver=0.9
+pkgrel=0.1
+pkgdesc="a simple C-based framework/library for developing CUPS Printer 
Applications"
+arch=('x86_64')
+url="https://www.msweet.org/pappl/;
+license=('Apache' 'custom')
+depends=('libcups' 'libjpeg-turbo' 'pam')
+makedepends=('git')
+checkdepends=()
+optdepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+#options=('!makeflags')
+install=
+changelog=
+#source=("$pkgname-$pkgver.tar.gz"
+#"$pkgname-$pkgver.patch")
+source=(git+"https://github.com/michaelrsweet/pappl.git#commit=$_commit;)
+noextract=()
+md5sums=('SKIP')
+validpgpkeys=()
+
+#prepare() {
+#  cd "$pkgname-$pkgver"
+#  patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
+#}
+
+build() {
+  cd "$pkgname" #-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname" #-$pkgver"
+
+  # there's currently  no real test suite, 
+  # the tool is only useful outside the fakeroot envireonment - when packaging 
it crashes:
+  # testpappl: client.c:771: avahi_client_get_host_name_fqdn: Assertion 
`client' failed.
+  # /startdir/PKGBUILD: line 43:  1878 Aborted (core dumped) 
./testsuite/testpappl
+
+  # run it later outside fakeroot!
+  #./testsuite/testpappl 
+}
+
+package() {
+  cd "$pkgname" #-$pkgver"
+  make DESTDIR="$pkgdir/" install
+
+  # install the testing tool
+  install -Dm755 testsuite/testpappl -t "$pkgdir"/usr/bin
+  # install docs
+  install -Dm644 doc/* -t "$pkgdir"/usr/share/doc/$pkgname
+  # add license + exception
+  install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" {LICENSE,NOTICE}
+}


[arch-commits] Commit in (8 files)

2020-07-03 Thread Balló György via arch-commits
Date: Friday, July 3, 2020 @ 21:53:20
  Author: bgyorgy
Revision: 657667

Move dvdstyler from AUR with 70 votes

Added:
  dvdstyler/
  dvdstyler/trunk/
  dvdstyler/trunk/PKGBUILD
  dvdstyler/trunk/config.patch
  dvdstyler/trunk/dvdstyler.appdata.xml
  wxsvg/
  wxsvg/trunk/
  wxsvg/trunk/PKGBUILD

---+
 dvdstyler/trunk/PKGBUILD  |   40 +++
 dvdstyler/trunk/config.patch  |   42 
 dvdstyler/trunk/dvdstyler.appdata.xml |   55 
 wxsvg/trunk/PKGBUILD  |   37 +
 4 files changed, 174 insertions(+)

Added: dvdstyler/trunk/PKGBUILD
===
--- dvdstyler/trunk/PKGBUILD(rev 0)
+++ dvdstyler/trunk/PKGBUILD2020-07-03 21:53:20 UTC (rev 657667)
@@ -0,0 +1,40 @@
+# Maintainer: Balló György 
+# Contributor: Leonidas Spyropoulos 
+# Contributor: Miguel Revilla 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+# Contributor: Mario J Steele 
+
+pkgname=dvdstyler
+pkgver=3.1.2
+pkgrel=1
+pkgdesc="DVD authoring application for the creation of professional-looking 
DVDs"
+arch=(x86_64)
+url="https://www.dvdstyler.de/;
+license=(GPL2)
+depends=(cdrtools dvdauthor dvd+rw-tools mjpegtools wxsvg)
+makedepends=(docbook-xsl xmlto zip)
+source=("https://downloads.sourceforge.net/$pkgname/DVDStyler-$pkgver.tar.bz2;
+"config.patch"
+"$pkgname.appdata.xml")
+sha256sums=('04ff61c278167363904f7ee366bcf98ee15ce05368fa353f6d8ab1e8305d9a0e'
+'ebcadbea33d96c955bd3811d7bb269fcb4006b8525dfafcf291e5779debba913'
+'4ecba886e6eca2018f659543fa2242d5801cd12a3b7d293897787f2c6bc9d8f4')
+
+prepare() {
+  cd DVDStyler-$pkgver
+  patch -RNp1 -i ../config.patch
+  sed -i 's|/pixmaps|/icons/hicolor/48x48/apps|' data/Makefile.{am,in}
+}
+
+build() {
+  cd DVDStyler-$pkgver
+  ./configure --prefix=/usr --with-wx-config=/usr/bin/wx-config-gtk3
+  make
+}
+
+package() {
+  cd DVDStyler-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+}

Added: dvdstyler/trunk/config.patch
===
--- dvdstyler/trunk/config.patch(rev 0)
+++ dvdstyler/trunk/config.patch2020-07-03 21:53:20 UTC (rev 657667)
@@ -0,0 +1,42 @@
+From 30937f6e427153e85862afed41e69b470d52dc67 Mon Sep 17 00:00:00 2001
+From: ntalex 
+Date: Fri, 2 Aug 2019 22:49:37 +0200
+Subject: changed to use configation file .dvdstyler/dvdstyler under unix
+
+
+diff --git a/src/Config.cpp b/src/Config.cpp
+index a1ccbf5..6ea06fc 100644
+--- a/src/Config.cpp
 b/src/Config.cpp
+@@ -10,9 +10,8 @@
+ 
+ #include "Config.h"
+ #include 
+-#ifdef __WXMSW__
+ #include 
+-#endif
++#include 
+ 
+ Config s_config;
+ 
+@@ -27,8 +26,19 @@ void Config::Init() {
+   } else
+   wxConfig::Set(new wxFileConfig(wxT(""), wxT(""), 
fileName));
+   }
+-#endif
++#elif defined(__WXMAC__)
+   cfg = wxConfig::Get();
++#else
++  // check if .dvdstyler exist and move it
++  wxString dataDir = wxStandardPaths::Get().GetUserLocalDataDir();
++  if (wxFileExists(dataDir)) {
++  wxRenameFile(dataDir, dataDir + ".tmp");
++  wxMkdir(dataDir);
++  wxRenameFile(dataDir + ".tmp", dataDir + wxFILE_SEP_PATH + 
"dvdstyler");
++  }
++  cfg = new wxFileConfig("", "", dataDir + wxFILE_SEP_PATH + "dvdstyler");
++  wxConfig::Set(cfg);
++#endif
+ }
+ 
+ bool Config::IsMainWinMaximized() {

Added: dvdstyler/trunk/dvdstyler.appdata.xml
===
--- dvdstyler/trunk/dvdstyler.appdata.xml   (rev 0)
+++ dvdstyler/trunk/dvdstyler.appdata.xml   2020-07-03 21:53:20 UTC (rev 
657667)
@@ -0,0 +1,55 @@
+
+
+  dvdstyler.desktop
+  CC0-1.0
+  GPL-2.0
+  Cross-platform DVD authoring application
+  
+
+DVDStyler is a cross-platform free DVD authoring application for 
the
+creation of professional-looking DVDs. It allows not only burning 
of
+video files on DVD that can be played practically on any 
standalone DVD
+player, but also creation of individually designed DVD menus. It is
+Open Source Software and is completely free.
+
+
+Features
+Tip: DVDStyler is PC software, not self-hosted web software, so a 
web hosting plan is not required.
+
+
+  Create and burn DVD video with interactive menus
+  Design your own DVD menu or select one from the list of ready to use 
menu templates
+  Create photo slideshow
+  Add multiple subtitle and audio tracks
+  Support of AVI, MOV, MP4, MPEG, OGG, WMV and other file formats
+  Support of MPEG-2, MPEG-4, DivX, Xvid, MP2, MP3, 

[arch-commits] Commit in (8 files)

2020-06-26 Thread David Runge via arch-commits
Date: Thursday, June 25, 2020 @ 21:50:48
  Author: dvzrv
Revision: 653316

Adding irker from the AUR.

Added:
  irker/
  irker/repos/
  irker/trunk/
  irker/trunk/PKGBUILD
  irker/trunk/irker.sysusers
  irker/trunk/irker.tmpfiles
  irker/trunk/irkerd.env
  irker/trunk/irkerd.service

+
 PKGBUILD   |   64 +++
 irker.sysusers |1 
 irker.tmpfiles |1 
 irkerd.env |   14 
 irkerd.service |   43 
 5 files changed, 123 insertions(+)

Added: irker/trunk/PKGBUILD
===
--- irker/trunk/PKGBUILD(rev 0)
+++ irker/trunk/PKGBUILD2020-06-25 21:50:48 UTC (rev 653316)
@@ -0,0 +1,64 @@
+# Maintainer: David Runge 
+
+pkgname=irker
+pkgver=2.18
+pkgrel=2
+pkgdesc="An IRC client that runs as a daemon accepting notification requests"
+arch=('any')
+url="https://gitlab.com/esr/irker;
+license=('BSD')
+depends=('python' 'python-pysocks')
+makedepends=('docbook-xml' 'docbook-xsl' 'xmlto')
+optdepends=('python-simplejson: alternative JSON backend for irkerhook.py')
+backup=("etc/${pkgname}/irkerd.env")
+source=("https://gitlab.com/esr/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+"${pkgname}d.service"
+"${pkgname}d.env"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles"
+
"${pkgname}-2.18-makefile.patch::https://gitlab.com/esr/irker/-/commit/c75d52af5c5c040a84dadf229f950457a9e37c4e.patch;
+
"${pkgname}-2.18-exception_irkerhook.patch::https://gitlab.com/esr/irker/-/commit/7b5019b8bdba49e24ca1cbc8b81f665e19f50ce1.patch;
+
"${pkgname}-2.18-py3_irkerhook.patch::https://gitlab.com/esr/irker/-/commit/5a157b60e74045504cdbda30759a3f26e17712d9.patch;
+)
+sha512sums=('b60d5468515ee065d28f8215757fa2d6108d66afb5f28c807461854924196cc8cbbc8f6726102675b087e8c5a14d88e9e641b0522e32b53468b140cbf2e0eced'
+
'f6a5c291258e0c341e3a5ba5fa2f6a43013be5c8faa5a372188854876cfe7f0dcd0bd979fa5627388216957103bfe1d002aefb74d51a620d05c16be87b639821'
+
'734b98a72073f9b8168b141a4ebd2819eb5173a7e56b3ff3e843edc1db1107249764dcb4e3b5d95860e6d119d7b4abb8bfbe8b8a9c1398011d19dfd6dacd9d2d'
+
'957a40e603783170fca8a4a4983cfdffa9b92918eb413b436341235685d59a1f05c49befa57239c0f5d5f72655b91b6f0dbe3cec07278f61c0e1ae9d7460e199'
+
'5eb944a3f18dd23321d7ef31f0079c55be9af4f82e981a9071f21080e1bfbcb428ed6245dad8095ac2e3118d964d9b26b73d6786b8141354182b1b9cc3dcee2d'
+
'3b9202bca3fd91933ce2fa76a55742f0d54cacd52dd468002fe6039e60e102b2c648691c137f8c5a72fa15d5cff945bc788c1b9b2a3516504327a51c2d5ddcd5'
+
'8d6785647af1b5caa31fec8743e99bcfc4714a90b5b2de8c152b580204bf818721245eb8eb9d72b277c596ba9d9df39cc8b56ad5fe34d0b0a0e2014eb10da8ed'
+
'bfbe4aff99a3faa7e62126a8017cc31b24200cc1236728b22bb47f36cfa9bd9bb3abfe6ee55a0b431714ee759b1fee2c13004b7c7e99d8a2b3b54fe6ae752edf')
+b2sums=('f7ac24bb96ef04962da3769efd2730e9d6b25109459a8dfb9f8f150bacc78a9f22c98f75ce8332b070f41929e4b3c23da6c62bd7caa439d57cc1d5b2d13f1f52'
+
'8f239dd9f03e7377572fb2f2f8a77004ddcf1ed423d93965b689296758214aa5e1913ff87bc889456f7ea248ee0a7d8edd18cbc8890814ef2b54c79b126eb80b'
+
'7196806c47ba34a89aed6c27657767f444fdf5dd21ae309d5ab1617ee4f75f7f35f0fc7bb205cb339367e083debe74f54ddfb1c633d32d2106aa02e312cfbe0d'
+
'e7bd8d0599588ab86650abc3ad731c106c4f0ac8afcc9963e343d18126589fe185438e4590c7dc93cbe5f60a40123100766145b9db6d73895853ebd9a3b66724'
+
'91eb92bbf64ba92b461a637df8ed84a978950f439e4161b7a3a7486e87a64a0156790b11c621f4770adbdac33f82b2b284a9ac44222dc2140c162247c4164cb0'
+
'0acc560d05a8ff84381e7f37817752b4fd93deffcd756046f046206e9b33140b0e6b84e9df09ebae2825c21f3f91883254861177e4c747a05d5054416b592be5'
+
'b78a5736a15a36eafe04e689a3295d5c7530f05e0f6feefd5c029a6015f4558a20e6920f4a074aed4bee4b8963f94d565f4503d5e498eaa1057ead32457858f5'
+
'bfa87ab00503d939c65274afdc58989b55be5277a3032b64de5c04fb7fb144602c1e2207bba818f1b98d27eb72f8b9cb40dcb2f4a14f75b15ff4fa556ba21d5a')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i "../${pkgname}-2.18-makefile.patch"
+  patch -Np1 -i "../${pkgname}-2.18-exception_irkerhook.patch"
+  patch -Np1 -i "../${pkgname}-2.18-py3_irkerhook.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  install -vDm 755 {irk,irkerhook.py} -t "${pkgdir}/usr/bin"
+  install -vDm 644 "../${pkgname}d.service" -t 
"${pkgdir}/usr/lib/systemd/system"
+  install -vDm 640 "../${pkgname}d.env" -t "${pkgdir}/etc/${pkgname}"
+  install -vDm 644 "../${pkgname}.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "../${pkgname}.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+  install -vDm 644 COPYING \
+-t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 

[arch-commits] Commit in (8 files)

2020-05-26 Thread Antonio Rojas via arch-commits
Date: Tuesday, May 26, 2020 @ 10:36:21
  Author: arojas
Revision: 387580

Qt 5.15 rebuild

Modified:
  akonadi/trunk/PKGBUILD
  kwin/trunk/PKGBUILD
  plasma-framework/trunk/PKGBUILD
  plasma-integration/trunk/PKGBUILD
  pyqt5/trunk/PKGBUILD
  qqc2-desktop-style/trunk/PKGBUILD
  qt5-webkit/trunk/PKGBUILD
  qtcreator/trunk/PKGBUILD

---+
 akonadi/trunk/PKGBUILD|2 +-
 kwin/trunk/PKGBUILD   |2 +-
 plasma-framework/trunk/PKGBUILD   |2 +-
 plasma-integration/trunk/PKGBUILD |2 +-
 pyqt5/trunk/PKGBUILD  |2 +-
 qqc2-desktop-style/trunk/PKGBUILD |2 +-
 qt5-webkit/trunk/PKGBUILD |2 +-
 qtcreator/trunk/PKGBUILD  |2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

Modified: akonadi/trunk/PKGBUILD
===
--- akonadi/trunk/PKGBUILD  2020-05-26 08:47:16 UTC (rev 387579)
+++ akonadi/trunk/PKGBUILD  2020-05-26 10:36:21 UTC (rev 387580)
@@ -6,7 +6,7 @@
 pkgbase=akonadi
 pkgname=(akonadi libakonadi)
 pkgver=20.04.1
-pkgrel=1
+pkgrel=2
 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
 arch=(x86_64)
 url='https://kontact.kde.org'

Modified: kwin/trunk/PKGBUILD
===
--- kwin/trunk/PKGBUILD 2020-05-26 08:47:16 UTC (rev 387579)
+++ kwin/trunk/PKGBUILD 2020-05-26 10:36:21 UTC (rev 387580)
@@ -4,7 +4,7 @@
 
 pkgname=kwin
 pkgver=5.18.5
-pkgrel=2
+pkgrel=3
 pkgdesc='An easy to use, but flexible, composited Window Manager'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'

Modified: plasma-framework/trunk/PKGBUILD
===
--- plasma-framework/trunk/PKGBUILD 2020-05-26 08:47:16 UTC (rev 387579)
+++ plasma-framework/trunk/PKGBUILD 2020-05-26 10:36:21 UTC (rev 387580)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.70.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'

Modified: plasma-integration/trunk/PKGBUILD
===
--- plasma-integration/trunk/PKGBUILD   2020-05-26 08:47:16 UTC (rev 387579)
+++ plasma-integration/trunk/PKGBUILD   2020-05-26 10:36:21 UTC (rev 387580)
@@ -3,7 +3,7 @@
 
 pkgname=plasma-integration
 pkgver=5.18.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'

Modified: pyqt5/trunk/PKGBUILD
===
--- pyqt5/trunk/PKGBUILD2020-05-26 08:47:16 UTC (rev 387579)
+++ pyqt5/trunk/PKGBUILD2020-05-26 10:36:21 UTC (rev 387580)
@@ -8,7 +8,7 @@
 pkgbase=pyqt5
 pkgname=('python-pyqt5' 'python2-pyqt5')
 pkgver=5.14.2
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://riverbankcomputing.com/software/pyqt/intro;
 license=('GPL')

Modified: qqc2-desktop-style/trunk/PKGBUILD
===
--- qqc2-desktop-style/trunk/PKGBUILD   2020-05-26 08:47:16 UTC (rev 387579)
+++ qqc2-desktop-style/trunk/PKGBUILD   2020-05-26 10:36:21 UTC (rev 387580)
@@ -2,7 +2,7 @@
 
 pkgname=qqc2-desktop-style
 pkgver=5.70.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'

Modified: qt5-webkit/trunk/PKGBUILD
===
--- qt5-webkit/trunk/PKGBUILD   2020-05-26 08:47:16 UTC (rev 387579)
+++ qt5-webkit/trunk/PKGBUILD   2020-05-26 10:36:21 UTC (rev 387580)
@@ -5,7 +5,7 @@
 pkgname=qt5-webkit
 _pkgver=5.212.0-alpha4
 pkgver=${_pkgver/-/}
-pkgrel=5
+pkgrel=6
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)

Modified: qtcreator/trunk/PKGBUILD
===
--- qtcreator/trunk/PKGBUILD2020-05-26 08:47:16 UTC (rev 387579)
+++ qtcreator/trunk/PKGBUILD2020-05-26 10:36:21 UTC (rev 387580)
@@ -9,7 +9,7 @@
 pkgname=qtcreator
 pkgver=4.12.1
 _clangver=10.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=(x86_64)
 url='https://www.qt.io'


[arch-commits] Commit in (8 files)

2020-04-19 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 19, 2020 @ 10:52:59
  Author: jelle
Revision: 616476

initial commit

Added:
  meilisearch/
  meilisearch/repos/
  meilisearch/trunk/
  meilisearch/trunk/PKGBUILD
  meilisearch/trunk/meilisearch.conf
  meilisearch/trunk/meilisearch.service
  meilisearch/trunk/meilisearch.sysusers
  meilisearch/trunk/meilisearch.tmpfiles

--+
 PKGBUILD |   41 +
 meilisearch.conf |5 +
 meilisearch.service  |   31 +++
 meilisearch.sysusers |2 ++
 meilisearch.tmpfiles |1 +
 5 files changed, 80 insertions(+)

Added: meilisearch/trunk/PKGBUILD
===
--- meilisearch/trunk/PKGBUILD  (rev 0)
+++ meilisearch/trunk/PKGBUILD  2020-04-19 10:52:59 UTC (rev 616476)
@@ -0,0 +1,41 @@
+# Maintainer: Jelle van der Waa 
+
+_pkgname=MeiliSearch
+pkgname=meilisearch
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Lightning Fast, Ultra Relevant, and Typo-Tolerant Search Engine"
+arch=(x86_64)
+url="https://docs.meilisearch.com/;
+license=('MIT')
+depends=(gcc-libs)
+makedepends=(rust)
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/meilisearch/MeiliSearch/archive/v${pkgver}.tar.gz
+${pkgname}.service ${pkgname}.tmpfiles ${pkgname}.sysusers 
${pkgname}.conf)
+sha512sums=('f07622a25b1a7ba97b6a8139b5fa3b61e16ddf4176f9adb870339a4c33fbd1dfb6b41230b8cf220c50f65ca3add7679c160765ce1fd020abb5a45665b5af2eaf'
+
'88c5cf90aca1cc058dffdb19a8fcef2f9232a6458f18190704ede5a165bdedaf7f7ea8a1365cfb34c42f917bbc2354c3fb1f397fc966aaebdce8b5f30040df20'
+
'76284bf4c436a6b3365edd6bd12ffcb186b721d284b29933e77ddc841d333be9eeb2701c89fba1567a8eedda52787be8d3c5f55809a051488b7295fbb6842bce'
+
'b83518bd61cb587baac784b1b9bbe4a6a12be91c0a5b6cc0b3b631dde9cee1d59d6e43800a0d32b909fb2d90fe3f64e1ab63c3c8028428bed39f6c05d60c'
+
'9d63a9cca6cafb248fffcd4a6e5bac0905d4b87f3eb9793576003d3965e35e217c4c1d6b3206b25ef47143e7d538e71c746bc0352bcdf248ed19e12f58aedc12')
+validpgpkeys=()
+
+build() {
+  cd "$_pkgname-$pkgver"
+  cargo build --release --locked --all-features
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  install -Dm 755 target/release/${pkgname} -t "${pkgdir}/usr/bin"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -D -m644 "${srcdir}/meilisearch.service"  
"${pkgdir}/usr/lib/systemd/system/meilisearch.service"
+  install -D -m644 "${srcdir}/meilisearch.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/meilisearch.conf"
+  install -D -m644 "${srcdir}/meilisearch.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/meilisearch.conf"
+  install -D -m644 "${srcdir}/meilisearch.conf" 
"${pkgdir}/etc//meilisearch.conf"
+}

Added: meilisearch/trunk/meilisearch.conf
===
--- meilisearch/trunk/meilisearch.conf  (rev 0)
+++ meilisearch/trunk/meilisearch.conf  2020-04-19 10:52:59 UTC (rev 616476)
@@ -0,0 +1,5 @@
+# Meilisearch configuration
+#MEILI_ENV=
+#MEILI_HTTP_ADDR=
+#MEILI_MASTER_KEY=
+#MEILI_NO_ANALYTICS=no

Added: meilisearch/trunk/meilisearch.service
===
--- meilisearch/trunk/meilisearch.service   (rev 0)
+++ meilisearch/trunk/meilisearch.service   2020-04-19 10:52:59 UTC (rev 
616476)
@@ -0,0 +1,31 @@
+[Unit]
+Description=MeiliSearch is a RESTful search API
+Documentation=https://docs.meilisearch.com/
+Requires=network-online.target
+After=network-online.target
+
+[Service]
+User=meilisearch
+Group=meilisearch
+Restart=on-failure
+WorkingDirectory=/var/lib/meilisearch
+ExecStart=/usr/bin/meilisearch --no-analytics true
+EnvironmentFile=/etc/meilisearch.conf
+NoNewPrivileges=true
+ProtectHome=true
+ProtectSystem=full
+ProtectHostname=true
+ProtectControlGroups=true
+ProtectKernelModules=true
+ProtectKernelTunables=true
+ProtectKernelLogs=true
+LockPersonality=true
+RestrictRealtime=yes
+RestrictNamespaces=yes
+MemoryDenyWriteExecute=yes
+PrivateDevices=yes
+PrivateTmp=true
+CapabilityBoundingSet=
+
+[Install]
+WantedBy=multi-user.target

Added: meilisearch/trunk/meilisearch.sysusers
===
--- meilisearch/trunk/meilisearch.sysusers  (rev 0)
+++ meilisearch/trunk/meilisearch.sysusers  2020-04-19 10:52:59 UTC (rev 
616476)
@@ -0,0 +1,2 @@
+u meilisearch - "Meilisearch dedicated user" /var/lib/meilisearch
+

Added: meilisearch/trunk/meilisearch.tmpfiles
===
--- meilisearch/trunk/meilisearch.tmpfiles  (rev 0)
+++ meilisearch/trunk/meilisearch.tmpfiles  2020-04-19 10:52:59 UTC (rev 
616476)
@@ -0,0 +1 @@
+d /var/lib/meilisearch 0750 meilisearch 

[arch-commits] Commit in (8 files)

2020-01-31 Thread David Runge via arch-commits
Date: Friday, January 31, 2020 @ 21:45:16
  Author: dvzrv
Revision: 560851

Adding hyperkitty as optdepends for mailman3.

Added:
  hyperkitty/
  hyperkitty/repos/
  hyperkitty/trunk/
  hyperkitty/trunk/PKGBUILD
  hyperkitty/trunk/hyperkitty-qcluster.service
  hyperkitty/trunk/hyperkitty.sysusers
  hyperkitty/trunk/hyperkitty.tmpfiles
  hyperkitty/trunk/hyperkitty.uwsgi

-+
 PKGBUILD|   89 ++
 hyperkitty-qcluster.service |   35 
 hyperkitty.sysusers |1 
 hyperkitty.tmpfiles |4 +
 hyperkitty.uwsgi|   24 +++
 5 files changed, 153 insertions(+)

Added: hyperkitty/trunk/PKGBUILD
===
--- hyperkitty/trunk/PKGBUILD   (rev 0)
+++ hyperkitty/trunk/PKGBUILD   2020-01-31 21:45:16 UTC (rev 560851)
@@ -0,0 +1,89 @@
+# Maintainer: David Runge 
+
+_name=HyperKitty
+pkgname=hyperkitty
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="A web interface to access GNU Mailman v3 archives"
+arch=('any')
+url="https://gitlab.com/mailman/hyperkitty;
+license=('GPL3')
+depends=('python-dateutil' 'python-django' 'python-django-compressor'
+'python-django-extensions' 'python-django-gravatar' 'python-django-haystack'
+'python-django-mailman3' 'python-django-q' 'python-django-rest-framework'
+'python-flufl-lock' 'python-mailmanclient' 'python-networkx' 'python-pytz'
+'python-robot-detection' 'sassc')
+makedepends=('python-isort' 'python-setuptools')
+checkdepends=('python-beautifulsoup4' 'python-coverage' 'python-elasticsearch'
+'python-mock' 'python-pytest' 'python-whoosh')
+optdepends=('uwsgi-plugin-python: for running inside uwsgi'
+'ruby-sassc: alternative to sassc')
+backup=("etc/uwsgi/${pkgname}.ini"
+"etc/webapps/${pkgname}/settings.py")
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc}
+
"${pkgname}-1.3.2-django3.patch::https://gitlab.com/mailman/hyperkitty/-/merge_requests/228.patch;
+"${pkgname}-qcluster.service"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles"
+"${pkgname}.uwsgi")
+sha512sums=('c0c20f0a0d999e08be32f9db52f43660179b2277e80385bb4ef58f2a652b8271e03690282aa3174a3408c48bd7e5ee18c5a8adcee736a45165647cb124cd6293'
+'SKIP'
+
'04b593949c80362324103726f54a73d5904f053efb5ef90cd3fbdefd90e93c707052bcb8cddf5b64efc1f053f5c51ad76285833448f6fcdff4bdfbf640f6b8c2'
+
'f3ff31e0a725dab5c55692f0da27dfe3625123e48e65b08f3198e790551ba4f2530719f36373eccf8c28a5ebac94ab546a0ca4e51b4fcb5f0bcaf0b356c0a03e'
+
'3267427109b08b8c9336b187381ed14357a07370bdcdfc24da94555020ad0424c5bbebc09e131e981e0540c51db443ffe558209e1bca7c2a1b7b1f602ed0805b'
+
'c7f564f0415721711535d3901f5d893a8456f5593ef562dad81faf7bfab2ae402058768cbbe443c014b76c968efbfe03cf7fc9d0e2bf699b14c07736e1e8d813'
+
'58bbd8c3d7338204b70611630c428e65cdf29c7c134ed291491a3484c565c4dd4a9cd286dfd23d54ec0c973d313ff4d9d7d037c5ce1ec223be0f63d3bb401b55')
+validpgpkeys=('541EA0448453394FF77A0ECC9D9B2BA061D0A67C') # Abhilash Raj 

+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # removing legacy stuff to be compatible with django3:
+  # https://gitlab.com/mailman/hyperkitty/issues/278
+  patch -Np1 -i "../${pkgname}-1.3.2-django3.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  coverage run example_project/manage.py test 
--settings=hyperkitty.tests.settings_test hyperkitty
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  local python_stdlib_basepath="$(python -c "from sysconfig import get_path; 
print(get_path('stdlib'))")"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  # django project
+  install -vDm 644 example_project/{__init__,manage,urls,wsgi}.py \
+-t "${pkgdir}/usr/share/webapps/${pkgname}"
+  # symlink locale and static files (instead of generating them)
+  ln -svf "$python_stdlib_basepath/site-packages/${pkgname}/locale/" \
+"${pkgdir}/usr/share/webapps/${pkgname}"
+  ln -svf "$python_stdlib_basepath/site-packages/${pkgname}/static/" \
+"${pkgdir}/usr/share/webapps/${pkgname}"
+  # config
+  install -vDm 640 example_project/settings.py \
+-t "${pkgdir}/etc/webapps/${pkgname}"
+  ln -svf "/etc/webapps/${pkgname}/settings.py" \
+"${pkgdir}/usr/share/webapps/${pkgname}/settings.py"
+  # systemd service
+  install -vDm 644 "../${pkgname}-qcluster.service" \
+-t "${pkgdir}/usr/lib/systemd/system"
+  # uwsgi
+  install -vDm 644 "../${pkgname}.uwsgi" "${pkgdir}/etc/uwsgi/${pkgname}.ini"
+  # tmpfiles.d
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+

[arch-commits] Commit in (8 files)

2020-01-22 Thread Felix Yan via arch-commits
Date: Wednesday, January 22, 2020 @ 08:43:09
  Author: felixonmars
Revision: 553418

addpkg: haskell-lens-action 0.2.4-1

Added:
  haskell-lens-action/
  haskell-lens-action/repos/
  haskell-lens-action/repos/community-staging-x86_64/
  haskell-lens-action/repos/community-staging-x86_64/PKGBUILD
  haskell-lens-action/repos/community-x86_64/
  haskell-lens-action/repos/community-x86_64/PKGBUILD
  haskell-lens-action/trunk/
  haskell-lens-action/trunk/PKGBUILD

-+
 repos/community-staging-x86_64/PKGBUILD |   49 ++
 repos/community-x86_64/PKGBUILD |   49 ++
 trunk/PKGBUILD  |   48 +
 3 files changed, 146 insertions(+)

Added: haskell-lens-action/repos/community-staging-x86_64/PKGBUILD
===
--- haskell-lens-action/repos/community-staging-x86_64/PKGBUILD 
(rev 0)
+++ haskell-lens-action/repos/community-staging-x86_64/PKGBUILD 2020-01-22 
08:43:09 UTC (rev 553418)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=rio
+pkgname=haskell-rio
+pkgver=0.1.12.0
+pkgrel=9
+pkgdesc="A standard library for Haskell"
+url="https://github.com/commercialhaskell/rio;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-exceptions' 'haskell-hashable' 'haskell-microlens'
+ 'haskell-primitive' 'haskell-typed-process' 'haskell-unliftio' 
'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ee168bb16080500ecc71bff42a74ebc2a16ac76985ec1a9ac2503680be5cc4dc9d265fd37f443781fb918f8c4c6bc87d0497dfec1d076a805a2ed7886ee9501a')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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"
+}

Added: haskell-lens-action/repos/community-x86_64/PKGBUILD
===
--- haskell-lens-action/repos/community-x86_64/PKGBUILD 
(rev 0)
+++ haskell-lens-action/repos/community-x86_64/PKGBUILD 2020-01-22 08:43:09 UTC 
(rev 553418)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=rio
+pkgname=haskell-rio
+pkgver=0.1.12.0
+pkgrel=8
+pkgdesc="A standard library for Haskell"
+url="https://github.com/commercialhaskell/rio;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-exceptions' 'haskell-hashable' 'haskell-microlens'
+ 'haskell-primitive' 'haskell-typed-process' 'haskell-unliftio' 
'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ee168bb16080500ecc71bff42a74ebc2a16ac76985ec1a9ac2503680be5cc4dc9d265fd37f443781fb918f8c4c6bc87d0497dfec1d076a805a2ed7886ee9501a')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+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 

[arch-commits] Commit in (8 files)

2020-01-21 Thread Eli Schwartz via arch-commits
Date: Wednesday, January 22, 2020 @ 05:41:49
  Author: eschwartz
Revision: 553358

mass fix for fish completion install dir

vendor_completions.d is the correct location for completions not installed as
part of the fish source code.

Modified:
  alacritty/trunk/PKGBUILD
  docker-compose/trunk/PKGBUILD
  dub/trunk/PKGBUILD
  lastpass-cli/trunk/PKGBUILD
  pyenv/trunk/PKGBUILD
  task/trunk/PKGBUILD
  you-get/trunk/PKGBUILD
  youtube-dl/trunk/PKGBUILD

---+
 alacritty/trunk/PKGBUILD  |   10 +-
 docker-compose/trunk/PKGBUILD |2 +-
 dub/trunk/PKGBUILD|2 +-
 lastpass-cli/trunk/PKGBUILD   |2 +-
 pyenv/trunk/PKGBUILD  |2 +-
 task/trunk/PKGBUILD   |2 +-
 you-get/trunk/PKGBUILD|2 +-
 youtube-dl/trunk/PKGBUILD |2 +-
 8 files changed, 12 insertions(+), 12 deletions(-)

Modified: alacritty/trunk/PKGBUILD
===
--- alacritty/trunk/PKGBUILD2020-01-22 05:10:34 UTC (rev 553357)
+++ alacritty/trunk/PKGBUILD2020-01-22 05:41:49 UTC (rev 553358)
@@ -29,10 +29,10 @@
 package_alacritty() {
   depends=('freetype2' 'fontconfig' 'libxi' 'libxcursor' 'libxrandr')
   optdepends=('alacritty-terminfo: terminfo for alacritty')
-  
+
   cd "$pkgbase-$_pkgver"
   desktop-file-install -m 644 --dir "$pkgdir/usr/share/applications/" 
"extra/linux/alacritty.desktop"
-  
+
   install -D -m755 "target/release/alacritty" "$pkgdir/usr/bin/alacritty"
   install -D -m644 "extra/alacritty.man" 
"$pkgdir/usr/share/man/man1/alacritty.1"
   install -D -m644 "extra/linux/io.alacritty.Alacritty.appdata.xml" 
"$pkgdir/usr/share/appdata/io.alacritty.Alacritty.appdata.xml"
@@ -39,7 +39,7 @@
   install -D -m644 "alacritty.yml" 
"$pkgdir/usr/share/doc/alacritty/example/alacritty.yml"
   install -D -m644 "extra/completions/alacritty.bash" 
"$pkgdir/usr/share/bash-completion/completions/alacritty"
   install -D -m644 "extra/completions/_alacritty" 
"$pkgdir/usr/share/zsh/site-functions/_alacritty"
-  install -D -m644 "extra/completions/alacritty.fish" 
"$pkgdir/usr/share/fish/completions/alacritty.fish"
+  install -D -m644 "extra/completions/alacritty.fish" 
"$pkgdir/usr/share/fish/vendor_completions.d/alacritty.fish"
   install -D -m644 "extra/logo/alacritty-term.svg" 
"$pkgdir/usr/share/pixmaps/Alacritty.svg"
 }
 
@@ -46,9 +46,9 @@
 package_alacritty-terminfo() {
   pkgdesc="Terminfo files for the alacritty terminal emulator"
   depends=('ncurses')
-  
+
   cd "$pkgbase-$_pkgver"
-  
+
   install -dm 755 "$pkgdir/usr/share/terminfo/a/"
   tic -o "$pkgdir/usr/share/terminfo" -xe alacritty,alacritty-direct 
extra/alacritty.info
 }

Modified: docker-compose/trunk/PKGBUILD
===
--- docker-compose/trunk/PKGBUILD   2020-01-22 05:10:34 UTC (rev 553357)
+++ docker-compose/trunk/PKGBUILD   2020-01-22 05:41:49 UTC (rev 553358)
@@ -47,6 +47,6 @@
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
   install -Dm644 contrib/completion/bash/docker-compose  
"$pkgdir"/usr/share/bash-completion/completions/docker-compose
-  install -Dm644 contrib/completion/fish/docker-compose.fish 
"$pkgdir"/usr/share/fish/completions/docker-compose.fish
+  install -Dm644 contrib/completion/fish/docker-compose.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/docker-compose.fish
   install -Dm644 contrib/completion/zsh/_docker-compose  
"$pkgdir"/usr/share/zsh/site-functions/_docker-compose
 }

Modified: dub/trunk/PKGBUILD
===
--- dub/trunk/PKGBUILD  2020-01-22 05:10:34 UTC (rev 553357)
+++ dub/trunk/PKGBUILD  2020-01-22 05:41:49 UTC (rev 553358)
@@ -35,5 +35,5 @@
 
# bash and fish completion
install -Dm644 "$pkgname-$pkgver/scripts/bash-completion/dub.bash" 
"$pkgdir/usr/share/bash-completion/completions/dub"
-   install -Dm644 "$pkgname-$pkgver/scripts/fish-completion/dub.fish" 
"$pkgdir/usr/share/fish/completions/dub.fish"
+   install -Dm644 "$pkgname-$pkgver/scripts/fish-completion/dub.fish" 
"$pkgdir/usr/share/fish/vendor_completions.d/dub.fish"
 }

Modified: lastpass-cli/trunk/PKGBUILD
===
--- lastpass-cli/trunk/PKGBUILD 2020-01-22 05:10:34 UTC (rev 553357)
+++ lastpass-cli/trunk/PKGBUILD 2020-01-22 05:41:49 UTC (rev 553358)
@@ -26,7 +26,7 @@
   cd "$srcdir"/$pkgname-$pkgver
   make DESTDIR="$pkgdir" install install-doc
   install -Dm0644 contrib/lpass_zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_lpass
-  install -Dm0644 contrib/completions-lpass.fish 
"$pkgdir"/usr/share/fish/completions/lpass.fish
+  install -Dm0644 contrib/completions-lpass.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/lpass.fish
 }
 
 # vim:set ts=2 sw=2 et:

Modified: pyenv/trunk/PKGBUILD

[arch-commits] Commit in (8 files)

2020-01-14 Thread David Runge via arch-commits
Date: Tuesday, January 14, 2020 @ 11:48:07
  Author: dvzrv
Revision: 552486

Adding postorius (optdepends for mailman3).

Added:
  postorius/
  postorius/repos/
  postorius/trunk/
  postorius/trunk/PKGBUILD
  postorius/trunk/postorius-1.3.2-settings.patch
  postorius/trunk/postorius.sysusers
  postorius/trunk/postorius.tmpfiles
  postorius/trunk/postorius.uwsgi

+
 PKGBUILD   |   81 +++
 postorius-1.3.2-settings.patch |   39 ++
 postorius.sysusers |1 
 postorius.tmpfiles |4 +
 postorius.uwsgi|   17 
 5 files changed, 142 insertions(+)

Added: postorius/trunk/PKGBUILD
===
--- postorius/trunk/PKGBUILD(rev 0)
+++ postorius/trunk/PKGBUILD2020-01-14 11:48:07 UTC (rev 552486)
@@ -0,0 +1,81 @@
+# Maintainer: David Runge 
+
+pkgname=postorius
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="The New Mailman Web UI"
+arch=('any')
+url="https://gitlab.com/mailman/postorius;
+license=('GPL3')
+depends=('python-cmarkgfm' 'python-django' 'python-django-mailman3'
+'python-mailmanclient' 'python-readme-renderer')
+makedepends=('python-setuptools')
+checkdepends=('mailman3' 'python-beautifulsoup4' 'python-isort' 'python-mock'
+'python-pytest' 'python-pytest-django' 'python-vcrpy')
+optdepends=('uwsgi-plugin-python: for running inside uwsgi')
+replaces=('python-django-postorius')
+backup=("etc/uwsgi/${pkgname}.ini"
+"etc/webapps/${pkgname}/settings.py")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles"
+"${pkgname}.uwsgi"
+"${pkgname}-1.3.2-settings.patch")
+sha512sums=('41ff225fa574dd4bd0ac88419a10a55a71c52a64df01a1a593963fdfa62baf16a0df735364688ea24680c8e88093841892474279d40c1428948375db7eb6333b'
+'SKIP'
+
'3884b818da2deb148279e50316f720c95f0aaa529777b1b3662d8ab253cda823a90682a9eb47e941ca5ba80eefcb9a2d4afacd29f0340d7f9828b36ebcee23b3'
+
'0be8c2bac3feb69519a8d7039002b43b7a705db638d7385b925a4c9fd6ba70d4707954872cabbe5fab2176f48d48fabd8f31338064bb630d02ad1380536915c4'
+
'f7ec287cac22679166398f53b6db440f0defa022554dd8997092b99eab972bb8ba8d158e7415da939645d2e5ff298e496eb46011c6391b9857e6405c9f0c2c47'
+
'811d52a246d55c900ee07cdb7572410aebc7eff05261166287c196ae9994079ee3e925bbf5e539155ecf452328316ae8dac2176dfb4398df1acb519a2accf0b8')
+validpgpkeys=('541EA0448453394FF77A0ECC9D9B2BA061D0A67C') # Abhilash Raj 

+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # patch global paths into settings.py
+  patch -Np1 -i "../${pkgname}-1.3.2-settings.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  local python_stdlib_basepath="$(python -c "from sysconfig import get_path; 
print(get_path('stdlib'))")"
+  # install to temporary location, so that tests can run
+  python setup.py install --root="${PWD}/tmp_install" --optimize=1
+  export 
PYTHONPATH="${PWD}/tmp_install/${python_stdlib_basepath/\//}/site-packages:${PYTHONPATH}"
+  cd example_project/
+  pytest -v 
"../tmp_install/${python_stdlib_basepath/\//}/site-packages/${pkgname}"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  local python_stdlib_basepath="$(python -c "from sysconfig import get_path; 
print(get_path('stdlib'))")"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  # django project
+  install -vDm 644 example_project/{__init__,manage,urls,wsgi}.py \
+-t "${pkgdir}/usr/share/webapps/${pkgname}"
+  # symlink locale and static files (instead of generating them)
+  ln -svf "$python_stdlib_basepath/site-packages/${pkgname}/locale/" \
+"${pkgdir}/usr/share/webapps/${pkgname}"
+  ln -svf "$python_stdlib_basepath/site-packages/${pkgname}/static/" \
+"${pkgdir}/usr/share/webapps/${pkgname}"
+  # config
+  install -vDm 640 example_project/settings.py \
+-t "${pkgdir}/etc/webapps/${pkgname}"
+  ln -svf "/etc/webapps/${pkgname}/settings.py" \
+"${pkgdir}/usr/share/webapps/${pkgname}/settings.py"
+  # uwsgi
+  install -vDm 644 "../${pkgname}.uwsgi" "${pkgdir}/etc/uwsgi/${pkgname}.ini"
+  # tmpfiles.d
+  install -vDm 644 "../${pkgname}.tmpfiles" \
+"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+  # sysusers.d
+  install -vDm 644 "../${pkgname}.sysusers" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+}

Added: postorius/trunk/postorius-1.3.2-settings.patch
===
--- postorius/trunk/postorius-1.3.2-settings.patch  
(rev 0)
+++ postorius/trunk/postorius-1.3.2-settings.patch  2020-01-14 11:48:07 UTC 
(rev 552486)
@@ -0,0 +1,39 @@
+diff -ruN a/example_project/settings.py b/example_project/settings.py

[arch-commits] Commit in (8 files)

2019-12-26 Thread Christian Hesse via arch-commits
Date: Thursday, December 26, 2019 @ 20:34:33
  Author: eworm
Revision: 542822

initial import of split wireguard packages

Added:
  wireguard-dkms/
  wireguard-dkms/repos/
  wireguard-dkms/trunk/
  wireguard-dkms/trunk/PKGBUILD
  wireguard-tools/
  wireguard-tools/repos/
  wireguard-tools/trunk/
  wireguard-tools/trunk/PKGBUILD

+
 wireguard-dkms/trunk/PKGBUILD  |   25 +
 wireguard-tools/trunk/PKGBUILD |   45 +++
 2 files changed, 70 insertions(+)

Added: wireguard-dkms/trunk/PKGBUILD
===
--- wireguard-dkms/trunk/PKGBUILD   (rev 0)
+++ wireguard-dkms/trunk/PKGBUILD   2019-12-26 20:34:33 UTC (rev 542822)
@@ -0,0 +1,25 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgname=wireguard-dkms
+pkgver=0.0.20191226
+pkgrel=0
+pkgdesc='next generation secure network tunnel - module sources'
+arch=('x86_64')
+url='http://www.wireguard.com/'
+license=('GPL')
+depends=('dkms')
+provides=('WIREGUARD-MODULE')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${pkgver}.tar"{.xz,.asc})
+sha256sums=('7c0e576459c6337bcdea692bdbec561719a15da207dc739e0e3e60ff821a5491'
+'SKIP')
+
+package_wireguard-dkms() {
+   cd wireguard-linux-compat-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   DKMSDIR="/usr/src/wireguard-${pkgver}/" \
+   dkms-install
+}

Added: wireguard-tools/trunk/PKGBUILD
===
--- wireguard-tools/trunk/PKGBUILD  (rev 0)
+++ wireguard-tools/trunk/PKGBUILD  2019-12-26 20:34:33 UTC (rev 542822)
@@ -0,0 +1,45 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgname=wireguard-tools
+pkgver=1.0.20191226
+pkgrel=0
+pkgdesc='next generation secure network tunnel - tools for configuration'
+arch=('x86_64')
+url='http://www.wireguard.com/'
+license=('GPL')
+depends=('libmnl' 'bash')
+optdepends=('openresolv: for DNS functionality'
+'wireguard-dkms: wireguard module, built by dkms'
+'wireguard-arch: wireguard module for linux'
+'wireguard-lts: wireguard module for linux-lts')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
+sha256sums=('aa8af0fdc9872d369d8c890a84dbc2a2466b55795dccd5b47721b2d97644b04f'
+'SKIP')
+
+prepare() {
+   cd ${pkgname}-${pkgver}/
+
+   find contrib/ -name '.gitignore' -delete
+}
+
+build() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/
+}
+
+package() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   WITH_BASHCOMPLETION=yes \
+WITH_WGQUICK=yes \
+WITH_SYSTEMDUNITS=yes \
+install
+
+   install -d -m0755 "${pkgdir}"/usr/share/${pkgname}/
+   cp -r contrib/ "${pkgdir}"/usr/share/${pkgname}/examples/
+}


[arch-commits] Commit in (8 files)

2019-12-24 Thread Levente Polyak via arch-commits
Date: Tuesday, December 24, 2019 @ 12:58:14
  Author: anthraxx
Revision: 539909

addpkg: caddy 1.0.4-2

Added:
  caddy/
  caddy/repos/
  caddy/trunk/
  caddy/trunk/Caddyfile
  caddy/trunk/PKGBUILD
  caddy/trunk/caddy.service
  caddy/trunk/caddy.tmpfiles
  caddy/trunk/plugins.go

+
 Caddyfile  |6 ++
 PKGBUILD   |  150 +++
 caddy.service  |   44 
 caddy.tmpfiles |2 
 plugins.go |   61 ++
 5 files changed, 263 insertions(+)

Added: caddy/trunk/Caddyfile
===
--- caddy/trunk/Caddyfile   (rev 0)
+++ caddy/trunk/Caddyfile   2019-12-24 12:58:14 UTC (rev 539909)
@@ -0,0 +1,6 @@
+*:80 {
+   gzip
+   root /usr/share/caddy
+}
+
+import conf.d/*.conf

Added: caddy/trunk/PKGBUILD
===
--- caddy/trunk/PKGBUILD(rev 0)
+++ caddy/trunk/PKGBUILD2019-12-24 12:58:14 UTC (rev 539909)
@@ -0,0 +1,150 @@
+# Maintainer: Levente Polyak 
+# Contributor: Wei Congrui < crvv.mail at gmail dot com >
+# Contributor: Carl George < arch at cgtx dot us >
+# Contributor: Eric Engeström 
+# Contributor: Andreas Linz 
+# Contributor: Akshay S Dinesh 
+
+pkgname=caddy
+pkgver=1.0.4
+_gitcommit=aadda6e34e5b85b04670ecf3bb096dead3da61fc
+_distcommit=9e93bfd85c97d71ab842a4a4b555d358295c914e
+pkgrel=2
+pkgdesc='HTTP/2 Web Server with Automatic HTTPS'
+url='https://caddyserver.com'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+backup=('etc/caddy/caddy.conf')
+source=("git+https://github.com/caddyserver/caddy#commit=${_gitcommit}?signed;
+
caddy-${_distcommit}-index.html::https://raw.githubusercontent.com/caddyserver/dist/${_distcommit}/welcome/index.html
+caddy.service
+caddy.tmpfiles
+Caddyfile
+plugins.go)
+sha256sums=('SKIP'
+'7668022a48b0cbf459190f0bbfbfb32ae066449a95e006367cac9e1befa80c5f'
+'c14ac8681e0434caf2c68e4a18dc59f8796fdffe9039f2e3c799ca64d37aa1ea'
+'c8f002f5ba59985a643600dc3c871e18e110903aa945ef3f2da7c9edd39fbd7a'
+'fb998b6de7bfe58f65c62eab37a4885e70833d19902da089766ad627a5f5a305'
+'f5a0fbb961e7c9ecf99e88d0959a3164cbea54660c1c08c3ba3cdf1d45563929')
+validpgpkeys=(
+  29D0817A67156E4F25DC24782A349DD577D586A5 # Matthew Holt 

+)
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+cd ${pkgname}/caddy
+sed 's|/var/www/html|/srv/http|g' -i 
"${srcdir}/caddy-${_distcommit}-index.html"
+sed 's|Version: "unknown"|Version: "v'${pkgver}'"|' -i caddymain/run.go
+
+cat > main.go <> main.go
+fi
+cat >> main.go 

[arch-commits] Commit in (8 files)

2019-12-23 Thread Levente Polyak via arch-commits
Date: Monday, December 23, 2019 @ 16:19:23
  Author: anthraxx
Revision: 372161

initial msbuild wip version

Added:
  msbuild/
  msbuild/repos/
  msbuild/trunk/
  msbuild/trunk/PKGBUILD
  msbuild/trunk/case_sensitive_dotnetbits.patch
  msbuild/trunk/copy_hostfxr.patch
  msbuild/trunk/fix_bashisms.patch
  msbuild/trunk/license_check_is_case_sensitive.diff

--+
 PKGBUILD |   57 
 case_sensitive_dotnetbits.patch  |   23 +
 copy_hostfxr.patch   |   11 ++
 fix_bashisms.patch   |   42 +++
 license_check_is_case_sensitive.diff |   58 +
 5 files changed, 191 insertions(+)

Added: msbuild/trunk/PKGBUILD
===
--- msbuild/trunk/PKGBUILD  (rev 0)
+++ msbuild/trunk/PKGBUILD  2019-12-23 16:19:23 UTC (rev 372161)
@@ -0,0 +1,57 @@
+# Maintainer: Florian Maunier 
+# Contributor: jtmb 
+
+pkgname=msbuild
+pkgver=16.4+xamarinxplat.2019.09.09.15.03
+pkgrel=2
+pkgdesc="Xamarin implementation of the Microsoft build system"
+url="https://github.com/mono/msbuild;
+arch=('x86_64')
+license=('MIT')
+depends=('mono>=6.4.0')
+makedepends=('unzip' 'dotnet-host>=3.0.0' 'dotnet-sdk>=3.0.0')
+source=(https://download.mono-project.com/sources/msbuild/msbuild-${pkgver}.tar.xz
+copy_hostfxr.patch
+fix_bashisms.patch
+license_check_is_case_sensitive.diff
+case_sensitive_dotnetbits.patch)
+sha256sums=('84c2e6021c43ba9dacc530d3d1bd6ed38e4f6b088a5e014f0ac4225843895d28'
+'041f536fbe5a36ba5bf7164460f07bd2becf4ecf2935594bf92676198b7becc2'
+'a13ecb4125c673372d87a3b7d957fc8716a3c3e74cd08e9e354b5dcf170ed453'
+'3a12a9c33ad5938e8af24d2985241053602f4efc94a4818a00a17da32ce4aba5'
+'aaa827b13abfb150572915d3daaa6b7140a7b4c12cda48aa76fed0f830a8bee1')
+
+prepare() {
+cd ${pkgname}-${pkgver%+*}
+patch -Np1 < "${srcdir}/fix_bashisms.patch"
+patch -Np1 < "${srcdir}/copy_hostfxr.patch"
+patch -Np1 < "${srcdir}/case_sensitive_dotnetbits.patch"
+#patch --forward --strip=1 
--input="${srcdir}/license_check_is_case_sensitive.diff"
+   # dotnet RepositoryValidation requires lowercased
+   ln -sf LICENSE license
+}
+
+build() {
+cd ${pkgname}-${pkgver%+*}
+DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR=/usr/share/dotnet \
+   ./eng/cibuild_bootstrapped_msbuild.sh \
+   --host_type mono \
+   --configuration Release \
+   --skip_tests /p:DisableNerdbankVersioning=true
+
+./stage1/mono-msbuild/msbuild mono/build/install.proj \
+   /p:MonoInstallPrefix="$srcdir/target/usr" \
+   /p:Configuration=Release-MONO \
+   /p:IgnoreDiffFailure=true
+
+sed "s|${srcdir}/target||g" -i "$srcdir/target/usr/bin/msbuild"
+   #find "$srcdir/target/usr/lib/mono/" -name 
Microsoft.DiaSymReader.Native.*dll -delete
+#find "$srcdir/target/usr/lib/mono/" -name *.dylib -delete
+   #find "$srcdir/target/usr/lib/mono/" -name *.so -delete
+}
+
+package_msbuild() {
+cd ${pkgname}-${pkgver%+*}
+cp -dr --no-preserve=ownership "$srcdir/target/usr" "${pkgdir}"
+   install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}

Added: msbuild/trunk/case_sensitive_dotnetbits.patch
===
--- msbuild/trunk/case_sensitive_dotnetbits.patch   
(rev 0)
+++ msbuild/trunk/case_sensitive_dotnetbits.patch   2019-12-23 16:19:23 UTC 
(rev 372161)
@@ -0,0 +1,23 @@
+Index: 
xamarin-pkg-msbuild/mono/build/sdks_and_nugets/update_sdks_and_nugets.proj
+===
+--- 
xamarin-pkg-msbuild.orig/mono/build/sdks_and_nugets/update_sdks_and_nugets.proj
 xamarin-pkg-msbuild/mono/build/sdks_and_nugets/update_sdks_and_nugets.proj
+@@ -1,6 +1,6 @@
+ 
+ 
+-
++
+ 
+ 
+ osx
+Index: xamarin-pkg-msbuild/mono/build/update_bundled_bits.proj
+===
+--- xamarin-pkg-msbuild.orig/mono/build/update_bundled_bits.proj
 xamarin-pkg-msbuild/mono/build/update_bundled_bits.proj
+@@ -1,5 +1,5 @@
+ 
+-
++
+ 
+ 
+ 

Added: msbuild/trunk/copy_hostfxr.patch
===
--- msbuild/trunk/copy_hostfxr.patch(rev 0)
+++ msbuild/trunk/copy_hostfxr.patch2019-12-23 16:19:23 UTC (rev 372161)
@@ -0,0 +1,11 @@
+Index: 
xamarin-pkg-msbuild/mono/build/sdks_and_nugets/update_sdks_and_nugets.proj
+===
+--- 
xamarin-pkg-msbuild.orig/mono/build/sdks_and_nugets/update_sdks_and_nugets.proj
 

[arch-commits] Commit in (8 files)

2019-12-12 Thread Antonio Rojas via arch-commits
Date: Thursday, December 12, 2019 @ 12:34:59
  Author: arojas
Revision: 370758

Qt 5.14 rebuild

Modified:
  akonadi/trunk/PKGBUILD
  kwin/trunk/PKGBUILD
  plasma-framework/trunk/PKGBUILD
  plasma-integration/trunk/PKGBUILD
  pyqt5/trunk/PKGBUILD
  qqc2-desktop-style/trunk/PKGBUILD
  qt5-webkit/trunk/PKGBUILD
  qtcreator/trunk/PKGBUILD

---+
 akonadi/trunk/PKGBUILD|2 +-
 kwin/trunk/PKGBUILD   |2 +-
 plasma-framework/trunk/PKGBUILD   |2 +-
 plasma-integration/trunk/PKGBUILD |2 +-
 pyqt5/trunk/PKGBUILD  |2 +-
 qqc2-desktop-style/trunk/PKGBUILD |2 +-
 qt5-webkit/trunk/PKGBUILD |2 +-
 qtcreator/trunk/PKGBUILD  |2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

Modified: akonadi/trunk/PKGBUILD
===
--- akonadi/trunk/PKGBUILD  2019-12-12 11:43:51 UTC (rev 370757)
+++ akonadi/trunk/PKGBUILD  2019-12-12 12:34:59 UTC (rev 370758)
@@ -6,7 +6,7 @@
 pkgbase=akonadi
 pkgname=(akonadi libakonadi)
 pkgver=19.08.3
-pkgrel=1
+pkgrel=2
 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
 arch=(x86_64)
 url='https://kontact.kde.org'

Modified: kwin/trunk/PKGBUILD
===
--- kwin/trunk/PKGBUILD 2019-12-12 11:43:51 UTC (rev 370757)
+++ kwin/trunk/PKGBUILD 2019-12-12 12:34:59 UTC (rev 370758)
@@ -4,7 +4,7 @@
 
 pkgname=kwin
 pkgver=5.17.4
-pkgrel=2
+pkgrel=3
 pkgdesc='An easy to use, but flexible, composited Window Manager'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'

Modified: plasma-framework/trunk/PKGBUILD
===
--- plasma-framework/trunk/PKGBUILD 2019-12-12 11:43:51 UTC (rev 370757)
+++ plasma-framework/trunk/PKGBUILD 2019-12-12 12:34:59 UTC (rev 370758)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.64.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'

Modified: plasma-integration/trunk/PKGBUILD
===
--- plasma-integration/trunk/PKGBUILD   2019-12-12 11:43:51 UTC (rev 370757)
+++ plasma-integration/trunk/PKGBUILD   2019-12-12 12:34:59 UTC (rev 370758)
@@ -3,7 +3,7 @@
 
 pkgname=plasma-integration
 pkgver=5.17.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'

Modified: pyqt5/trunk/PKGBUILD
===
--- pyqt5/trunk/PKGBUILD2019-12-12 11:43:51 UTC (rev 370757)
+++ pyqt5/trunk/PKGBUILD2019-12-12 12:34:59 UTC (rev 370758)
@@ -7,7 +7,7 @@
 pkgbase=pyqt5
 pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
 pkgver=5.13.2
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 url="https://riverbankcomputing.com/software/pyqt/intro;
 license=('GPL')

Modified: qqc2-desktop-style/trunk/PKGBUILD
===
--- qqc2-desktop-style/trunk/PKGBUILD   2019-12-12 11:43:51 UTC (rev 370757)
+++ qqc2-desktop-style/trunk/PKGBUILD   2019-12-12 12:34:59 UTC (rev 370758)
@@ -2,7 +2,7 @@
 
 pkgname=qqc2-desktop-style
 pkgver=5.64.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'

Modified: qt5-webkit/trunk/PKGBUILD
===
--- qt5-webkit/trunk/PKGBUILD   2019-12-12 11:43:51 UTC (rev 370757)
+++ qt5-webkit/trunk/PKGBUILD   2019-12-12 12:34:59 UTC (rev 370758)
@@ -5,7 +5,7 @@
 pkgname=qt5-webkit
 _pkgver=5.212.0-alpha3
 pkgver=${_pkgver/-/}
-pkgrel=7
+pkgrel=8
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)

Modified: qtcreator/trunk/PKGBUILD
===
--- qtcreator/trunk/PKGBUILD2019-12-12 11:43:51 UTC (rev 370757)
+++ qtcreator/trunk/PKGBUILD2019-12-12 12:34:59 UTC (rev 370758)
@@ -9,7 +9,7 @@
 pkgname=qtcreator
 pkgver=4.11.0
 _clangver=9.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=(x86_64)
 url='https://www.qt.io'


[arch-commits] Commit in (8 files)

2019-09-30 Thread Ike Devolder via arch-commits
Date: Monday, September 30, 2019 @ 18:22:13
  Author: idevolder
Revision: 512246

add kodi inputstream addons

Added:
  kodi-addon-inputstream-adaptive/
  kodi-addon-inputstream-adaptive/repos/
  kodi-addon-inputstream-adaptive/trunk/
  kodi-addon-inputstream-adaptive/trunk/PKGBUILD
  kodi-addon-inputstream-rtmp/
  kodi-addon-inputstream-rtmp/repos/
  kodi-addon-inputstream-rtmp/trunk/
  kodi-addon-inputstream-rtmp/trunk/PKGBUILD

+
 kodi-addon-inputstream-adaptive/trunk/PKGBUILD |   34 +++
 kodi-addon-inputstream-rtmp/trunk/PKGBUILD |   32 +
 2 files changed, 66 insertions(+)

Added: kodi-addon-inputstream-adaptive/trunk/PKGBUILD
===
--- kodi-addon-inputstream-adaptive/trunk/PKGBUILD  
(rev 0)
+++ kodi-addon-inputstream-adaptive/trunk/PKGBUILD  2019-09-30 18:22:13 UTC 
(rev 512246)
@@ -0,0 +1,34 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: Cedric Girard 
+# Contributor: kevku 
+
+pkgname=kodi-addon-inputstream-adaptive
+pkgver=2.4.2
+_codename=Leia
+pkgrel=2
+pkgdesc="InputStream client for adaptive streams for Kodi 18+"
+arch=('x86_64')
+url="https://github.com/peak3d/inputstream.adaptive;
+license=('GPL2')
+groups=('kodi-addons' 'kodi-addons-inputstream')
+depends=('kodi' 'kodi-platform')
+makedepends=('cmake' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/peak3d/inputstream.adaptive/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('218be820b4e7f05d9a3ffd330db785997afe225a994ed4187a1aaa13b28189453d4a82e3553210613aa644f9f98b30bfc7bc048a1ad9674521053ef21e2e26e0')
+
+build() {
+cd "inputstream.adaptive-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "inputstream.adaptive-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+#sed -i 
's|special://home/cdm|/usr/lib/kodi/addons/inputstream.adaptive/lib|g' 
"$pkgdir/usr/share/kodi/addons/inputstream.adaptive/resources/settings.xml"
+}

Added: kodi-addon-inputstream-rtmp/trunk/PKGBUILD
===
--- kodi-addon-inputstream-rtmp/trunk/PKGBUILD  (rev 0)
+++ kodi-addon-inputstream-rtmp/trunk/PKGBUILD  2019-09-30 18:22:13 UTC (rev 
512246)
@@ -0,0 +1,32 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: kevku 
+
+pkgname=kodi-addon-inputstream-rtmp
+pkgver=2.0.5
+_codename=Leia
+pkgrel=2
+pkgdesc="RTMP input stream add-on for Kodi"
+arch=('x86_64')
+url="https://github.com/xbmc/inputstream.rtmp;
+license=('GPL2')
+groups=('kodi-addons' 'kodi-addons-inputstream')
+depends=('kodi' 'rtmpdump' 'p8-platform')
+makedepends=('cmake' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/inputstream.rtmp/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('178ecfedae24b2ca0b13de997861e89063eff929a6a1a2b0b6b3e32a45bddd238304466a9f1f52b6213db3faee93144ae77fc9c4045c3783780a50bc1ae11166')
+
+build() {
+cd "inputstream.rtmp-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "inputstream.rtmp-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in (8 files)

2019-07-12 Thread Sergej Pupykin via arch-commits
Date: Friday, July 12, 2019 @ 14:41:38
  Author: spupykin
Revision: 489136

add perl-json-parse and perl-string-util

Added:
  perl-json-parse/
  perl-json-parse/repos/
  perl-json-parse/trunk/
  perl-json-parse/trunk/PKGBUILD
  perl-string-util/
  perl-string-util/repos/
  perl-string-util/trunk/
  perl-string-util/trunk/PKGBUILD

-+
 perl-json-parse/trunk/PKGBUILD  |   27 +++
 perl-string-util/trunk/PKGBUILD |   43 ++
 2 files changed, 70 insertions(+)

Added: perl-json-parse/trunk/PKGBUILD
===
--- perl-json-parse/trunk/PKGBUILD  (rev 0)
+++ perl-json-parse/trunk/PKGBUILD  2019-07-12 14:41:38 UTC (rev 489136)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=perl-json-parse
+pkgver=0.55
+pkgrel=1
+pkgdesc="JSON::Parse - Read JSON into a Perl variable"
+arch=('any')
+url="https://metacpan.org/release/JSON-Parse;
+license=('GPL' 'PerlArtistic')
+depends=('perl>=5.10.0')
+options=('!emptydirs')
+source=(https://cpan.metacpan.org/authors/id/B/BK/BKB/JSON-Parse-$pkgver.tar.gz)
+sha256sums=('dc9856dbc355114bcb0dc036bb632976b19b88d3a7ad59726f1fa917e7f5d256')
+
+build() {
+  cd  "$srcdir"/JSON-Parse-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/JSON-Parse-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}


Property changes on: perl-json-parse/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: perl-string-util/trunk/PKGBUILD
===
--- perl-string-util/trunk/PKGBUILD (rev 0)
+++ perl-string-util/trunk/PKGBUILD 2019-07-12 14:41:38 UTC (rev 489136)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Previous Maintainer: Dirk Langer 
+
+pkgname='perl-string-util'
+pkgver='1.26'
+pkgrel='1'
+pkgdesc="String processing utilities"
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl-number-misc')
+makedepends=()
+checkdepends=('perl-test-toolbox')
+url='https://metacpan.org/release/String-Util'
+source=("https://cpan.metacpan.org/authors/id/M/MI/MIKO/String-Util-$pkgver.tar.gz;)
+md5sums=('d0f13f8688bedef7174634bb57f7fbe4')
+sha512sums=('27f4d9a36814695ca2123473f073577cc4ab31c0c1f9feccff8b9af0324c697df45efde981d638ed407521bb8348cf5512ebe1c9a5bfd5149df17b12014ed808')
+_distdir="String-Util-$pkgver"
+
+build() {
+  export PERL_MM_USE_DEFAULT=1 PERL5LIB=""   \
+  PERL_AUTOINSTALL=--skipdeps\
+  PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+  PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+  MODULEBUILDRC=/dev/null
+
+  cd "$srcdir/$_distdir"
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  cd "$srcdir/$_distdir"
+  make test
+}
+
+package() {
+  cd "$srcdir/$_distdir"
+  make install
+
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+}


Property changes on: perl-string-util/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2019-06-19 Thread Antonio Rojas via arch-commits
Date: Wednesday, June 19, 2019 @ 12:36:48
  Author: arojas
Revision: 356542

Qt 5.13 rebuild

Modified:
  akonadi/trunk/PKGBUILD
  kwin/trunk/PKGBUILD
  plasma-framework/trunk/PKGBUILD
  plasma-integration/trunk/PKGBUILD
  pyqt5/trunk/PKGBUILD
  qqc2-desktop-style/trunk/PKGBUILD
  qt5-webkit/trunk/PKGBUILD
  qtcreator/trunk/PKGBUILD

---+
 akonadi/trunk/PKGBUILD|2 +-
 kwin/trunk/PKGBUILD   |2 +-
 plasma-framework/trunk/PKGBUILD   |2 +-
 plasma-integration/trunk/PKGBUILD |2 +-
 pyqt5/trunk/PKGBUILD  |2 +-
 qqc2-desktop-style/trunk/PKGBUILD |2 +-
 qt5-webkit/trunk/PKGBUILD |2 +-
 qtcreator/trunk/PKGBUILD  |2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

Modified: akonadi/trunk/PKGBUILD
===
--- akonadi/trunk/PKGBUILD  2019-06-19 12:01:30 UTC (rev 356541)
+++ akonadi/trunk/PKGBUILD  2019-06-19 12:36:48 UTC (rev 356542)
@@ -6,7 +6,7 @@
 pkgbase=akonadi
 pkgname=(akonadi libakonadi)
 pkgver=19.04.2
-pkgrel=2
+pkgrel=3
 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
 arch=(x86_64)
 url='https://kontact.kde.org'

Modified: kwin/trunk/PKGBUILD
===
--- kwin/trunk/PKGBUILD 2019-06-19 12:01:30 UTC (rev 356541)
+++ kwin/trunk/PKGBUILD 2019-06-19 12:36:48 UTC (rev 356542)
@@ -4,7 +4,7 @@
 
 pkgname=kwin
 pkgver=5.16.1
-pkgrel=2
+pkgrel=3
 pkgdesc='An easy to use, but flexible, composited Window Manager'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'

Modified: plasma-framework/trunk/PKGBUILD
===
--- plasma-framework/trunk/PKGBUILD 2019-06-19 12:01:30 UTC (rev 356541)
+++ plasma-framework/trunk/PKGBUILD 2019-06-19 12:36:48 UTC (rev 356542)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.59.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'

Modified: plasma-integration/trunk/PKGBUILD
===
--- plasma-integration/trunk/PKGBUILD   2019-06-19 12:01:30 UTC (rev 356541)
+++ plasma-integration/trunk/PKGBUILD   2019-06-19 12:36:48 UTC (rev 356542)
@@ -3,7 +3,7 @@
 
 pkgname=plasma-integration
 pkgver=5.16.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'

Modified: pyqt5/trunk/PKGBUILD
===
--- pyqt5/trunk/PKGBUILD2019-06-19 12:01:30 UTC (rev 356541)
+++ pyqt5/trunk/PKGBUILD2019-06-19 12:36:48 UTC (rev 356542)
@@ -7,7 +7,7 @@
 pkgbase=pyqt5
 pkgname=('pyqt5-common' 'python-pyqt5' 'python2-pyqt5')
 pkgver=5.12.2
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://riverbankcomputing.com/software/pyqt/intro;
 license=('GPL')

Modified: qqc2-desktop-style/trunk/PKGBUILD
===
--- qqc2-desktop-style/trunk/PKGBUILD   2019-06-19 12:01:30 UTC (rev 356541)
+++ qqc2-desktop-style/trunk/PKGBUILD   2019-06-19 12:36:48 UTC (rev 356542)
@@ -2,7 +2,7 @@
 
 pkgname=qqc2-desktop-style
 pkgver=5.59.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'

Modified: qt5-webkit/trunk/PKGBUILD
===
--- qt5-webkit/trunk/PKGBUILD   2019-06-19 12:01:30 UTC (rev 356541)
+++ qt5-webkit/trunk/PKGBUILD   2019-06-19 12:36:48 UTC (rev 356542)
@@ -5,7 +5,7 @@
 pkgname=qt5-webkit
 _commit=95401fe3908e0b4eebc9447e678298d768617bc7
 pkgver=5.212.0alpha2+156+g95401fe3908
-pkgrel=3
+pkgrel=5
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)

Modified: qtcreator/trunk/PKGBUILD
===
--- qtcreator/trunk/PKGBUILD2019-06-19 12:01:30 UTC (rev 356541)
+++ qtcreator/trunk/PKGBUILD2019-06-19 12:36:48 UTC (rev 356542)
@@ -9,7 +9,7 @@
 pkgname=qtcreator
 pkgver=4.9.1
 _clangver=8.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight, cross-platform integrated development environment'
 arch=(x86_64)
 url='https://www.qt.io'


[arch-commits] Commit in (8 files)

2019-06-01 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 07:37:04
  Author: felixonmars
Revision: 476258

add python2-tornado

Added:
  python2-tornado/
  python2-tornado/repos/
  python2-tornado/repos/community-testing-x86_64/
  python2-tornado/repos/community-testing-x86_64/PKGBUILD
  python2-tornado/repos/community-x86_64/
  python2-tornado/repos/community-x86_64/PKGBUILD
  python2-tornado/trunk/
  python2-tornado/trunk/PKGBUILD

-+
 repos/community-testing-x86_64/PKGBUILD |   87 ++
 repos/community-x86_64/PKGBUILD |   87 ++
 trunk/PKGBUILD  |   54 ++
 3 files changed, 228 insertions(+)

Added: python2-tornado/repos/community-testing-x86_64/PKGBUILD
===
--- python2-tornado/repos/community-testing-x86_64/PKGBUILD 
(rev 0)
+++ python2-tornado/repos/community-testing-x86_64/PKGBUILD 2019-06-01 
07:37:04 UTC (rev 476258)
@@ -0,0 +1,87 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+
+pkgbase=python-tornado
+pkgname=('python-tornado' 'python2-tornado')
+pkgver=6.0.2
+pkgrel=1
+pkgdesc='open source version of the scalable, non-blocking web server and 
tools'
+arch=('x86_64')
+url='http://www.tornadoweb.org/'
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-futures' 
'python2-singledispatch'
+ 'python2-backports-abc')
+checkdepends=('python-pycurl' 'python2-pycurl' 'python-mock' 'python2-mock' 
'python-twisted'
+  'python2-twisted'  'python2-trollius' 'python2-monotonic')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/tornadoweb/tornado/archive/v$pkgver.tar.gz;)
+sha512sums=('5f0678f00776034a6775d2d50206161028bf3798f97a6a40af7ff3f3552eb367bd694ceb578afdec96f60282f851d5bf5091839c25f1b569965017aa418de983')
+
+prepare() {
+  cd "$srcdir"
+  cp -a tornado-$pkgver{,-py2}
+
+  # python -> python2 rename
+  find tornado-$pkgver-py2 -name '*py' -exec sed -e 's_#!/usr/bin/env 
python_&2_' -i {} \;
+
+  export TORNADO_EXTENSION=1
+}
+
+build() {
+  cd tornado-$pkgver
+  python setup.py build
+
+  cd ../tornado-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # As of 4.5.3, ignoring test failures about resolving "localhost"
+  (
+cd tornado-$pkgver
+python setup.py install --root="$PWD/tmp_install" --optimize=1
+export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH"
+cd tmp_install
+python -m tornado.test.runtests
+python -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
+python -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
+python -m tornado.test.runtests --ioloop_time_monotonic
+python -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
+python -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
+python -m tornado.test.runtests --resolver=tornado.netutil.ThreadedResolver
+  ) || warning "Tests failed"
+
+  (
+cd tornado-$pkgver-py2
+python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+export 
PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH"
+cd tmp_install
+python2 -m tornado.test.runtests
+python2 -m tornado.test.runtests 
--ioloop=tornado.platform.select.SelectIOLoop
+python2 -m tornado.test.runtests 
--httpclient=tornado.curl_httpclient.CurlAsyncHTTPClient
+python2 -m tornado.test.runtests --ioloop_time_monotonic
+python2 -m tornado.test.runtests 
--ioloop=tornado.platform.twisted.TwistedIOLoop
+python2 -m tornado.test.runtests 
--ioloop=tornado.platform.asyncio.AsyncIOLoop
+python2 -m tornado.test.runtests 
--resolver=tornado.netutil.ThreadedResolver
+  ) || warning "Tests failed"
+}
+
+package_python-tornado() {
+  depends=('python')
+  optdepends=('python-pycurl: for tornado.curl_httpclient'
+  'python-twisted: for tornado.platform.twisted')
+  # 'python-pycares: an alternative non-blocking DNS resolver'
+
+  cd tornado-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-tornado() {
+  depends=('python2-futures' 'python2-singledispatch' 'python2-backports-abc')
+  optdepends=('python2-monotonic: enable support for a monotonic clock'
+  'python2-pycurl: for tornado.curl_httpclient'
+  'python2-twisted: for tornado.platform.twisted')
+  # 'python2-pycares: an alternative non-blocking DNS resolver'
+
+  cd tornado-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}

Added: python2-tornado/repos/community-x86_64/PKGBUILD
===
--- python2-tornado/repos/community-x86_64/PKGBUILD 
(rev 0)
+++ python2-tornado/repos/community-x86_64/PKGBUILD 

[arch-commits] Commit in (8 files)

2019-05-04 Thread Maxime Gauduin via arch-commits
Date: Saturday, May 4, 2019 @ 16:06:11
  Author: alucryd
Revision: 458979

add rspamd

Added:
  rspamd/
  rspamd/trunk/
  rspamd/trunk/PKGBUILD
  rspamd/trunk/rspamd.install
  rspamd/trunk/rspamd.logrotate
  rspamd/trunk/rspamd.sysusers
  rspamd/trunk/rspamd.tmpfiles
Modified:
  lib32-glib-networking/trunk/PKGBUILD

--+
 lib32-glib-networking/trunk/PKGBUILD |4 
 rspamd/trunk/PKGBUILD|  165 +
 rspamd/trunk/rspamd.install  |6 +
 rspamd/trunk/rspamd.logrotate|7 +
 rspamd/trunk/rspamd.sysusers |1 
 rspamd/trunk/rspamd.tmpfiles |5 +
 6 files changed, 186 insertions(+), 2 deletions(-)

Modified: lib32-glib-networking/trunk/PKGBUILD
===
--- lib32-glib-networking/trunk/PKGBUILD2019-05-04 16:03:20 UTC (rev 
458978)
+++ lib32-glib-networking/trunk/PKGBUILD2019-05-04 16:06:11 UTC (rev 
458979)
@@ -2,7 +2,7 @@
 # Contributor: josephgbr 
 
 pkgname=lib32-glib-networking
-pkgver=2.60.1
+pkgver=2.60.2
 pkgrel=1
 pkgdesc='Network-related giomodules for glib'
 arch=(x86_64)
@@ -21,7 +21,7 @@
   meson
 )
 source=(git+https://gitlab.gnome.org/GNOME/glib-networking.git#tag=${pkgver})
-sha256sums=(SKIP)
+sha256sums=('SKIP')
 
 build() {
   export CC='gcc -m32'

Added: rspamd/trunk/PKGBUILD
===
--- rspamd/trunk/PKGBUILD   (rev 0)
+++ rspamd/trunk/PKGBUILD   2019-05-04 16:06:11 UTC (rev 458979)
@@ -0,0 +1,165 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Oleksandr Natalenko 
+# Contributor: Andrew Lewis 
+# Contributor: mezcal
+
+pkgname=rspamd
+pkgver=1.9.2
+pkgrel=2
+epoch=
+pkgdesc='Fast, free and open-source spam filtering system'
+arch=(x86_64)
+url=https://rspamd.com
+license=(BSD)
+depends=(
+  file
+  glib2
+  icu
+  libevent
+  luajit
+  openblas
+  openssl
+  pcre
+  sqlite
+  zlib
+)
+makedepends=(
+  cmake
+  git
+  ninja
+  ragel
+)
+backup=(
+  etc/logrotate.d/rspamd
+  etc/rspamd/2tld.inc
+  etc/rspamd/actions.conf
+  etc/rspamd/cgp.inc
+  etc/rspamd/common.conf
+  etc/rspamd/composites.conf
+  etc/rspamd/dmarc_whitelist.inc
+  etc/rspamd/groups.conf
+  etc/rspamd/logging.inc
+  etc/rspamd/maillist.inc
+  etc/rspamd/metrics.conf
+  etc/rspamd/mid.inc
+  etc/rspamd/mime_types.inc
+  etc/rspamd/modules.conf
+  etc/rspamd/modules.d/antivirus.conf
+  etc/rspamd/modules.d/arc.conf
+  etc/rspamd/modules.d/asn.conf
+  etc/rspamd/modules.d/chartable.conf
+  etc/rspamd/modules.d/clickhouse.conf
+  etc/rspamd/modules.d/dcc.conf
+  etc/rspamd/modules.d/dkim.conf
+  etc/rspamd/modules.d/dkim_signing.conf
+  etc/rspamd/modules.d/dmarc.conf
+  etc/rspamd/modules.d/elastic.conf
+  etc/rspamd/modules.d/emails.conf
+  etc/rspamd/modules.d/external_services.conf
+  etc/rspamd/modules.d/force_actions.conf
+  etc/rspamd/modules.d/forged_recipients.conf
+  etc/rspamd/modules.d/fuzzy_check.conf
+  etc/rspamd/modules.d/greylist.conf
+  etc/rspamd/modules.d/hfilter.conf
+  etc/rspamd/modules.d/history_redis.conf
+  etc/rspamd/modules.d/ip_score.conf
+  etc/rspamd/modules.d/maillist.conf
+  etc/rspamd/modules.d/metadata_exporter.conf
+  etc/rspamd/modules.d/metric_exporter.conf
+  etc/rspamd/modules.d/mid.conf
+  etc/rspamd/modules.d/milter_headers.conf
+  etc/rspamd/modules.d/mime_types.conf
+  etc/rspamd/modules.d/multimap.conf
+  etc/rspamd/modules.d/mx_check.conf
+  etc/rspamd/modules.d/neural.conf
+  etc/rspamd/modules.d/once_received.conf
+  etc/rspamd/modules.d/phishing.conf
+  etc/rspamd/modules.d/ratelimit.conf
+  etc/rspamd/modules.d/rbl.conf
+  etc/rspamd/modules.d/redis.conf
+  etc/rspamd/modules.d/regexp.conf
+  etc/rspamd/modules.d/replies.conf
+  etc/rspamd/modules.d/reputation.conf
+  etc/rspamd/modules.d/rspamd_update.conf
+  etc/rspamd/modules.d/spamassassin.conf
+  etc/rspamd/modules.d/spamtrap.conf
+  etc/rspamd/modules.d/spf.conf
+  etc/rspamd/modules.d/surbl.conf
+  etc/rspamd/modules.d/trie.conf
+  etc/rspamd/modules.d/url_redirector.conf
+  etc/rspamd/modules.d/url_reputation.conf
+  etc/rspamd/modules.d/url_tags.conf
+  etc/rspamd/modules.d/whitelist.conf
+  etc/rspamd/options.inc
+  etc/rspamd/redirectors.inc
+  etc/rspamd/rspamd.conf
+  etc/rspamd/scores.d/fuzzy_group.conf
+  etc/rspamd/scores.d/headers_group.conf
+  etc/rspamd/scores.d/hfilter_group.conf
+  etc/rspamd/scores.d/mime_types_group.conf
+  etc/rspamd/scores.d/mua_group.conf
+  etc/rspamd/scores.d/phishing_group.conf
+  etc/rspamd/scores.d/policies_group.conf
+  etc/rspamd/scores.d/rbl_group.conf
+  etc/rspamd/scores.d/statistics_group.conf
+  etc/rspamd/scores.d/subject_group.conf
+  etc/rspamd/scores.d/surbl_group.conf
+  etc/rspamd/scores.d/whitelist_group.conf
+  etc/rspamd/settings.conf
+  etc/rspamd/spf_dkim_whitelist.inc
+  etc/rspamd/statistic.conf
+  etc/rspamd/surbl-whitelist.inc
+  etc/rspamd/worker-controller.inc
+  

[arch-commits] Commit in (8 files)

2019-03-30 Thread Florian Pritz via arch-commits
Date: Saturday, March 30, 2019 @ 21:29:23
  Author: bluewind
Revision: 446417

Add python-internetarchive for Arch Linux Archive (ALA)

Added:
  python-internetarchive/
  python-internetarchive/repos/
  python-internetarchive/trunk/
  python-internetarchive/trunk/PKGBUILD
  python-schema/
  python-schema/repos/
  python-schema/trunk/
  python-schema/trunk/PKGBUILD

---+
 python-internetarchive/trunk/PKGBUILD |   54 
 python-schema/trunk/PKGBUILD  |   31 ++
 2 files changed, 85 insertions(+)

Added: python-internetarchive/trunk/PKGBUILD
===
--- python-internetarchive/trunk/PKGBUILD   (rev 0)
+++ python-internetarchive/trunk/PKGBUILD   2019-03-30 21:29:23 UTC (rev 
446417)
@@ -0,0 +1,54 @@
+# Maintainer: Florian Pritz 
+# Contributor: David McInnis 
+# Contributor:  jyantis 
+
+pkgname=python-internetarchive
+pkgver=1.8.1
+pkgrel=1
+pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
+arch=('any')
+url='https://github.com/jjjake/ia-wrapper'
+license=('AGPL3')
+depends=('python'
+ 'python-setuptools'
+ 'python-clint'
+ 'python-six'
+ 'python-yaml'
+ 'python-requests'
+ 'python-jsonpatch'
+ 'python-pytest'
+ 'python-docopt'
+ 'python-jsonpointer'
+ 'python-args'
+ # seem unnecessary?
+ #'python-backports.csv'
+ 'python-schema'
+)
+optdepends=('python-ujson: faster json parsing'
+'python-gevent: concurrent downloads'
+'cython: speedups')
+checkdepends=(python-responses)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz;)
+sha256sums=('9db8b179434521345a93a01e73669b9fd9a8949f8a75b52fcf22f3de865229c7')
+
+build() {
+  cd internetarchive-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd internetarchive-${pkgver}
+
+  python setup.py test
+}
+
+package() {
+  cd internetarchive-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
+}
+
+# vim:set ts=2 sw=2 et:
+

Added: python-schema/trunk/PKGBUILD
===
--- python-schema/trunk/PKGBUILD(rev 0)
+++ python-schema/trunk/PKGBUILD2019-03-30 21:29:23 UTC (rev 446417)
@@ -0,0 +1,31 @@
+# Maintainer: Florian Pritz 
+
+_name=schema
+pkgname="python-$_name"
+pkgver=0.7.0
+pkgrel=2
+pkgdesc='Python module to validate and convert data structures.'
+arch=(any)
+url="https://github.com/keleshev/$_name;
+depends=(python)
+makedepends=(python-setuptools)
+checkdepends=(python-mock python-pytest)
+license=(MIT)
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+sha256sums=('44add3ef9016c85ac4b0291b45286a657d0df309b31528ca8d0a9c6d0aa68186')
+
+build() {
+   cd "$srcdir/$_name-$pkgver"
+python setup.py build
+}
+
+check() {
+   cd "$srcdir/$_name-$pkgver"
+   python setup.py test
+}
+
+package() {
+   cd "$srcdir/$_name-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+   install -D -m644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (8 files)

2019-02-12 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, February 12, 2019 @ 17:31:36
  Author: kgizdov
Revision: 431978

initial release

Added:
  pythia8/
  pythia8/repos/
  pythia8/trunk/
  pythia8/trunk/PKGBUILD
  pythia8/trunk/change_to_python2.patch
  pythia8/trunk/fix_lhapdf_build.patch
  pythia8/trunk/pythia8.sh
  pythia8/trunk/respect_lib_suffix.patch

--+
 PKGBUILD |  195 +
 change_to_python2.patch  |   12 ++
 fix_lhapdf_build.patch   |   12 ++
 pythia8.sh   |3 
 respect_lib_suffix.patch |  141 
 5 files changed, 363 insertions(+)

Added: pythia8/trunk/PKGBUILD
===
--- pythia8/trunk/PKGBUILD  (rev 0)
+++ pythia8/trunk/PKGBUILD  2019-02-12 17:31:36 UTC (rev 431978)
@@ -0,0 +1,195 @@
+# Maintainer: Konstantin Gizdov < arch at kge dot pw >
+# Contributor: Joshua Ellis < josh at jpellis dot me >
+# Contributor: Stefano Campanella < stefanocampanella1729 at gmail dot com >
+
+pkgbase=pythia8
+pkgname=('pythia8' 'python-pythia8' 'python2-pythia8')
+pkgver=8.2.40
+_pkgid="${pkgbase:0:-1}${pkgver//./}"
+pkgrel=7
+pkgdesc="High-energy physics events generator."
+arch=('x86_64')
+url="http://home.thep.lu.se/Pythia/;
+license=('GPL')
+depends=('python')
+makedepends=('python' 'python2' 'fastjet' 'hepmc' 'lhapdf>=6.2' 'root')
+source=("http://home.thep.lu.se/~torbjorn/pythia8/${_pkgid}.tgz;
+'pythia8.sh'
+'change_to_python2.patch'
+'fix_lhapdf_build.patch'
+'respect_lib_suffix.patch')
+sha256sums=('d27495d8ca7707d846f8c026ab695123c7c78c7860f04e2c002e483080418d8d'
+'4e373b685960e410024b4e33e22c2dea360dfedd7962837087332f428c974ae5'
+'bae1a65399cd2ee599db1758d60da2a1c93335ec4dbd30e323250c156f491086'
+'f7c70b069b350005ac7e9028617713dece9b82c1e8b0dc5fb1f2870abec1d94c'
+'4eb15725cfb5e287fdd9520cb4211b88ebc38a690b7522690ba0664d50bc8669')
+get_pyver () {
+python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+get_py2ver () {
+python2 -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+prepare() {
+cd "${srcdir}/${_pkgid}"
+patch -p1 -i "${srcdir}/respect_lib_suffix.patch"
+patch -p1 -i "${srcdir}/fix_lhapdf_build.patch"
+
+cd "${srcdir}"
+cp -r "${_pkgid}" "${_pkgid}-py2"
+
+cd "${srcdir}/${_pkgid}-py2"
+patch -p1 -i "${srcdir}/change_to_python2.patch"
+}
+
+build() {
+_inc=/usr/include
+_lib=/usr/lib
+_share=/usr/share/${pkgbase}
+
+# with Python3
+cd "${srcdir}/${_pkgid}"
+# # no such package yet
+# --with-evtgen \
+# --with-evtgen-include=${_inc} \
+# --with-evtgen-lib=${_lib} \
+# # no such package yet
+# --with-hepmc3 \
+# --with-hepmc3-include=${_inc} \
+# --with-hepmc3-lib=${_lib} \
+# # no such package yet
+# --with-powheg \
+# --with-powheg-include=${_inc} \
+# --with-powheg-lib=${_lib} \
+# # no such package yet
+# --with-promc \
+# --with-promc-include=${_inc} \
+# --with-promc-lib=${_lib} \
+./configure --prefix=/usr \
+--prefix-include=${_inc} \
+--prefix-lib=${_lib} \
+--prefix-share=${_share} \
+--cxx-common="${CXXFLAGS} -fPIC" \
+--cxx-shared="-shared ${LDFLAGS} -ldl" \
+--enable-shared \
+--with-fastjet3 \
+--with-fastjet3-include=${_inc} \
+--with-fastjet3-lib=${_lib} \
+--with-gzip \
+--with-gzip-include=${_inc} \
+--with-gzip-lib=${_lib} \
+--with-hepmc2 \
+--with-hepmc2-include=${_inc} \
+--with-hepmc2-lib=${_lib} \
+--with-lhapdf5 \
+--with-lhapdf5-include=${_inc} \
+--with-lhapdf5-lib=${_lib} \
+--with-lhapdf6 \
+--with-lhapdf6-include=${_inc} \
+--with-lhapdf6-lib=${_lib} \
+--with-python \
+--with-python-include="/usr/include/python$(get_pyver)m" \
+--with-python-lib="/usr/lib/python$(get_pyver)" \
+--with-root \
+--with-root-include=/usr/include/root \
+--with-root-lib=/usr/lib/root
+cd "${srcdir}/${_pkgid}"
+make
+
+# with Python2
+cd "${srcdir}/${_pkgid}-py2"
+# # no such package yet
+# --with-evtgen \
+# --with-evtgen-include=${_inc} \
+# --with-evtgen-lib=${_lib} \
+# # no such package yet
+# --with-hepmc3 \
+# --with-hepmc3-include=${_inc} \
+# --with-hepmc3-lib=${_lib} \
+# # no such package yet
+# --with-powheg \
+# --with-powheg-include=${_inc} \
+# --with-powheg-lib=${_lib} \
+# # no such package yet
+# --with-promc \
+

[arch-commits] Commit in (8 files)

2019-01-11 Thread Evangelos Foutras via arch-commits
Date: Friday, January 11, 2019 @ 18:59:36
  Author: foutrelis
Revision: 422673

Remove unmaintained/unused ruby-celluloid* packages

Deleted:
  ruby-celluloid-dns/
  ruby-celluloid-essentials/
  ruby-celluloid-extras/
  ruby-celluloid-fsm/
  ruby-celluloid-io/
  ruby-celluloid-pool/
  ruby-celluloid-supervision/
  ruby-celluloid/


[arch-commits] Commit in (8 files)

2018-10-15 Thread Levente Polyak via arch-commits
Date: Monday, October 15, 2018 @ 21:34:49
  Author: anthraxx
Revision: 394375

teamspeak3-server 3.4.0-2

Added:
  teamspeak3-server/
  teamspeak3-server/repos/
  teamspeak3-server/trunk/
  teamspeak3-server/trunk/PERMISSION.eml
  teamspeak3-server/trunk/PKGBUILD
  teamspeak3-server/trunk/teamspeak3-server.ini
  teamspeak3-server/trunk/teamspeak3-server.install
  teamspeak3-server/trunk/teamspeak3-server.service

---+
 PERMISSION.eml|1 
 PKGBUILD  |   57 
 teamspeak3-server.ini |   20 +++
 teamspeak3-server.install |6 
 teamspeak3-server.service |   31 +++
 5 files changed, 115 insertions(+)

Added: teamspeak3-server/trunk/PERMISSION.eml
===
(Binary files differ)

Index: teamspeak3-server/trunk/PERMISSION.eml
===
--- teamspeak3-server/trunk/PERMISSION.eml  2018-10-15 21:18:15 UTC (rev 
394374)
+++ teamspeak3-server/trunk/PERMISSION.eml  2018-10-15 21:34:49 UTC (rev 
394375)

Property changes on: teamspeak3-server/trunk/PERMISSION.eml
___
Added: svn:mime-type
## -0,0 +1 ##
+message/rfc822
\ No newline at end of property
Added: teamspeak3-server/trunk/PKGBUILD
===
--- teamspeak3-server/trunk/PKGBUILD(rev 0)
+++ teamspeak3-server/trunk/PKGBUILD2018-10-15 21:34:49 UTC (rev 394375)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak 
+# Contributor: nyyu 
+# Contributor: Malte Rabenseifner 
+# Contributor: EnteEnteEnte 
+
+pkgname=teamspeak3-server
+pkgver=3.4.0
+pkgrel=2
+pkgdesc='TeamSpeak is software for quality voice communication via the 
Internet (server)'
+url='https://www.teamspeak.com/en/'
+arch=('x86_64')
+license=('custom')
+depends=('glibc')
+optdepends=('mariadb-connector-c: for MariaDB backend')
+backup=(etc/teamspeak3-server.ini
+etc/tsdns_settings.ini)
+install=teamspeak3-server.install
+source=(teamspeak3-server.ini
+teamspeak3-server.service
+PERMISSION.eml)
+source_i686=(http://dl.4players.de/ts/releases/${pkgver}/teamspeak3-server_linux_x86-${pkgver}.tar.bz2)
+source_x86_64=(http://dl.4players.de/ts/releases/${pkgver}/teamspeak3-server_linux_amd64-${pkgver}.tar.bz2)
+sha256sums=('c678f5d657772920260c4ea4718677e6b00ef28ad74c317e05632a01d33b3ca5'
+'73c38a5e70caf042a5997ae831e33be7ba83e5c31ccca01c257c929569149acd'
+'98e3331a803ce0ff85500a3908a61fe105d47ea3c31affc2f605d8385315ca5b')
+sha256sums_x86_64=('7d6ec8e97d4a9e9913a7e01f2e7f5f9fddfdc41b11e668d013a0f4b574d1918b')
+
+if [ "${CARCH}" == "x86_64" ]; then
+  _TSARCH='amd64'
+elif [ "${CARCH}" == "i686" ]; then
+  _TSARCH='x86'
+fi
+
+package() {
+  install -Dm 644 teamspeak3-server.ini -t "${pkgdir}/etc"
+  install -Dm 644 
teamspeak3-server_linux_${_TSARCH}/tsdns/tsdns_settings.ini.sample 
"${pkgdir}/etc/tsdns_settings.ini"
+  install -Dm 644 teamspeak3-server.service -t 
"${pkgdir}/usr/lib/systemd/system"
+
+  install -Dm 755 teamspeak3-server_linux_${_TSARCH}/ts3server -t 
"${pkgdir}/usr/bin"
+  install -Dm 755 teamspeak3-server_linux_${_TSARCH}/tsdns/tsdnsserver -t 
"${pkgdir}/usr/bin"
+  install -Dm 644 teamspeak3-server_linux_${_TSARCH}/*.so -t 
"${pkgdir}/usr/lib"
+  install -Dm 644 teamspeak3-server_linux_${_TSARCH}/LICENSE -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+
+  install -d "${pkgdir}/usr/share/doc/teamspeak3-server" \
+"${pkgdir}/usr/share/teamspeak3-server"
+
+  cp -a teamspeak3-server_linux_${_TSARCH}/doc 
"${pkgdir}/usr/share/doc/teamspeak3-server"
+  cp -a teamspeak3-server_linux_${_TSARCH}/serverquerydocs 
"${pkgdir}/usr/share/doc/teamspeak3-server"
+  cp -a teamspeak3-server_linux_${_TSARCH}/sql 
"${pkgdir}/usr/share/teamspeak3-server"
+
+  find "${pkgdir}/usr/share/teamspeak3-server" -type d -exec chmod 755 {} \;
+  find "${pkgdir}/usr/share/teamspeak3-server" -type f -exec chmod 644 {} \;
+  find "${pkgdir}/usr/share/doc/teamspeak3-server" -type d -exec chmod 755 {} 
\;
+  find "${pkgdir}/usr/share/doc/teamspeak3-server" -type f -exec chmod 644 {} 
\;
+}
+
+# vim: ts=2 sw=2 et:

Added: teamspeak3-server/trunk/teamspeak3-server.ini
===
--- teamspeak3-server/trunk/teamspeak3-server.ini   
(rev 0)
+++ teamspeak3-server/trunk/teamspeak3-server.ini   2018-10-15 21:34:49 UTC 
(rev 394375)
@@ -0,0 +1,20 @@
+machine_id=
+default_voice_port=9987
+voice_ip=
+licensepath=
+filetransfer_port=30033
+filetransfer_ip=
+query_port=10011
+query_ip=0.0.0.0, ::
+query_ip_whitelist=query_ip_whitelist.txt
+query_ip_blacklist=query_ip_blacklist.txt
+dbplugin=ts3db_sqlite3
+dbpluginparameter=
+dbsqlpath=/usr/share/teamspeak3-server/sql/

[arch-commits] Commit in (8 files)

2018-10-07 Thread Antonio Rojas via arch-commits
Date: Sunday, October 7, 2018 @ 21:28:28
  Author: arojas
Revision: 391045

extra2community: Moving pathological from extra to community

Added:
  pathological/
  pathological/repos/
  pathological/trunk/
  pathological/trunk/PKGBUILD
  pathological/trunk/encoding.patch
  pathological/trunk/pathological.desktop
  pathological/trunk/pathological.install
  pathological/trunk/pygame_181.patch

--+
 PKGBUILD |   41 +
 encoding.patch   |8 
 pathological.desktop |9 +
 pathological.install |   29 +
 pygame_181.patch |   10 ++
 5 files changed, 97 insertions(+)

Added: pathological/trunk/PKGBUILD
===
--- pathological/trunk/PKGBUILD (rev 0)
+++ pathological/trunk/PKGBUILD 2018-10-07 21:28:28 UTC (rev 391045)
@@ -0,0 +1,41 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=pathological
+pkgver=1.1.3
+pkgrel=10
+pkgdesc="A puzzle game with the same feel as frozen bubble"
+arch=('x86_64')
+url="http://pathological.sourceforge.net/;
+license=('GPL')
+depends=('python2-pygame')
+makedepends=('netpbm')
+install=pathological.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz
+pathological.desktop pygame_181.patch encoding.patch)
+sha512sums=('a64e0ca9a3bf86ade4a1abdd4f471c341838f690b2471f21c488471b7800da55f89f42c62a51c9be380cb9f265432db904a5de6f6bb3a9a7dde835da94baf566'
+
'a2e65a8f005f5575e99305e71cbed2e5955b4564fa9377d228c4f54fccbda6aa148b7b506b21b4b04be0ee66754e9c8f2c2d6e37495da9f15dcc7664584fe669'
+
'0ee715036f1264a1e552396b874899d93eb8b44ddf5bbc898f5fa38588cc58ce1da134904afb8c58c799422d7be151cad397f85cb4960cf5c7a9eaa5590ea429'
+
'343282b22ecbb42243cf59492527336acd39eee584e19c1c53e9b9be5e0f75a8546548efb2d5a5fb70b32d8cb9d393f986d4ec07ed7fe584c144e2ab51e360a6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p0 < ../encoding.patch
+  patch -p1 < ../pygame_181.patch
+  sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' pathological.py
+  sed -i 's|X11R6/include/X11|share|' Makefile
+  sed -i 's|usr/games|usr/bin|' Makefile
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 "${srcdir}/pathological.desktop" 
"${pkgdir}/usr/share/applications/pathological.desktop"
+  chown root:games "${pkgdir}/var/games"
+  chmod 775 "${pkgdir}/var/games"
+  rm "${pkgdir}/var/games/pathological_scores"
+}


Property changes on: pathological/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: pathological/trunk/encoding.patch
===
--- pathological/trunk/encoding.patch   (rev 0)
+++ pathological/trunk/encoding.patch   2018-10-07 21:28:28 UTC (rev 391045)
@@ -0,0 +1,8 @@
+--- pathological.py.orig   2009-07-10 01:49:39.0 -0400
 pathological.py2009-07-10 01:49:53.0 -0400
+@@ -1,4 +1,5 @@
+ #!/usr/bin/python
++# -*- coding: utf-8 -*-
+ """
+ Copyright (C) 2003  John-Paul Gignac
+ 

Added: pathological/trunk/pathological.desktop
===
--- pathological/trunk/pathological.desktop (rev 0)
+++ pathological/trunk/pathological.desktop 2018-10-07 21:28:28 UTC (rev 
391045)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Pathological
+Comment=A puzzle game involving paths and marbles
+Exec=pathological
+Icon=pathological.xpm
+Terminal=false
+Type=Application
+Categories=Application;Game;

Added: pathological/trunk/pathological.install
===
--- pathological/trunk/pathological.install (rev 0)
+++ pathological/trunk/pathological.install 2018-10-07 21:28:28 UTC (rev 
391045)
@@ -0,0 +1,29 @@
+post_install() {
+if [ ! -e var/games/pathological_scores ]; then
+cat << _EOF > var/games/pathological_scores
+0 all-boards 1 John-Paul
+0 all-boards 1 Kim
+0 all-boards 1 Matths
+0 all-boards 1 Carrie
+0 all-boards 1 Mike
+0 all-boards 1 Dale
+0 all-boards 1 Alesh
+0 all-boards 1 Thanks to
+0 all-boards 1 everyone who
+0 all-boards 1 contributed!
+_EOF
+fi
+  chown root:games var/games/pathological_scores
+  chmod 664 var/games/pathological_scores
+}
+
+pre_upgrade() {
+  if [ -e usr/share/games/pathological/pathological_scores ]; then
+mv usr/share/games/pathological/pathological_scores var/games/
+  fi
+}
+
+post_upgrade() {
+  chown root:games var/games/pathological_scores
+  chmod 664 var/games/pathological_scores
+}

Added: pathological/trunk/pygame_181.patch
===
--- 

[arch-commits] Commit in (8 files)

2018-08-19 Thread Bruno Pagani via arch-commits
Date: Sunday, August 19, 2018 @ 15:53:27
  Author: archange
Revision: 372791

Initial addition of kresus to [community]

Added:
  kresus/
  kresus/repos/
  kresus/trunk/
  kresus/trunk/PKGBUILD
  kresus/trunk/config.ini
  kresus/trunk/kresus.service
  kresus/trunk/kresus.sysusers
  kresus/trunk/kresus.tmpfiles

-+
 PKGBUILD|   45 +++
 config.ini  |  125 ++
 kresus.service  |   22 +
 kresus.sysusers |1 
 kresus.tmpfiles |2 
 5 files changed, 195 insertions(+)

Added: kresus/trunk/PKGBUILD
===
--- kresus/trunk/PKGBUILD   (rev 0)
+++ kresus/trunk/PKGBUILD   2018-08-19 15:53:27 UTC (rev 372791)
@@ -0,0 +1,45 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+pkgname=kresus
+pkgver=0.13.2
+_commit=0c2bb82d76d8cfa1c0d183576bd8bddd8ab14a90
+pkgrel=1
+pkgdesc="Self-hosted personal finance manager"
+arch=('x86_64')
+url="https://kresus.org;
+license=('MIT')
+backup=('etc/webapps/kresus/config.ini')
+depends=('nodejs' 'weboob-headless')
+makedepends=('npm' 'libpng' 'python2')
+optdepends=('python2-pdfminer: For IBAN extraction from PDF RIB')
+source=(${pkgname}-${pkgver}.tar.bz2::"https://framagit.org/bnjbvr/kresus/repository/${pkgver}/archive.tar.bz2;
+'config.ini'
+"${pkgname}.service"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles")
+sha256sums=('2594837ddb656c230e439db3c86a05743b14df1fd819ad53738e03118e61263e'
+'adc91cd0cef6b546d482ebe1e9de85a451105166c15c190caa8c6a86c023b07a'
+'9d1e05cb232fd511de31f09c93ea346b256f63b9435bff86826323d93281ef20'
+'d9d30f5470c7165e4917487b69d7ab82e463da4e1355056e1035ee501d3f1adc'
+'e58284777bb3750f52973dd021da6ba9837652975f53e383960b1c23c317edb8')
+
+build() {
+cd ${pkgname}-${pkgver}-${_commit}
+npm install && npm run build:prod
+}
+
+package() {
+cd ${pkgname}-${pkgver}-${_commit}
+make DESTDIR="${pkgdir}" install
+# Fix python2 name
+sed -i 's:#!/usr/bin/env python:#!/usr/bin/env python2:' 
"${pkgdir}"/usr/lib/node_modules/kresus/server/weboob/main.py
+# Fix npm crazyness
+chmod -R o-w "${pkgdir}"/usr
+install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+
+cd ..
+install -Dm600 config.ini -t "${pkgdir}"/etc/webapps/kresus/
+install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+}

Added: kresus/trunk/config.ini
===
--- kresus/trunk/config.ini (rev 0)
+++ kresus/trunk/config.ini 2018-08-19 15:53:27 UTC (rev 372791)
@@ -0,0 +1,125 @@
+; Hi there! This is the configuration file for Kresus. Please make sure to
+; read all the options before setting up Kresus for the first time.
+[kresus]
+
+; This is where Kresus stores additional data, as the latest bank scrapping
+; modules. It should be writeable by the user which launches the Kresus
+; executable.
+; Can be removed; defaults to HOME_DIR/.kresus.
+; Overridden by the KRESUS_DIR environment variable, if it's set.
+; Example:
+; dataDir=/home/ben/.kresus
+datadir=/var/lib/kresus
+
+; The host on which the Kresus server will listen to.
+; Can be removed; defaults to "127.0.0.1".
+; Overridden by the HOST environment variable, if it's set.
+host=127.0.0.1
+
+; This is the port that Kresus will run on. It is recommended not to
+; expose it on port 80 directly but to use a reverse-proxy configuration
+; like Nginx, Caddy or Apache.
+; Can be removed; defaults to 9876.
+; Overridden by the PORT environment variable, if it's set.
+port=9876
+
+; The directory prefix in the URL, if Kresus is to be served from a
+; subdirectory. For instance, if your website is hosted at example.com and
+; the url prefix is "money", then Kresus will be reachable at
+; example.com/money.
+; Can be removed; defaults to "", i.e. Kresus has its own (sub)domain.
+; Overridden by the KRESUS_URL_PREFIX environment variable, if it's set.
+; Example:
+; url_prefix=/money
+url_prefix=
+
+; The executable version of Python that is going to get used when interacting
+; with Python scripts. This can be python, python2 or python3.
+; Can be removed; defaults to "python2".
+; Overridden by the KRESUS_PYTHON_EXEC environment variable, if it's set.
+; Example:
+; python_exec=python3
+python_exec=
+
+[weboob]
+; The directory in which Weboob core is stored.
+; Can be removed; defaults to "", indicating that weboob is already in the
+; PYTHON_PATH (e.g. installed at the global level).
+; Overridden by the KRESUS_WEBOOB_DIR environment variable, if it's set.
+; Example:
+; srcdir=/home/ben/code/weboob
+srcdir=
+
+; Path to a file 

[arch-commits] Commit in (8 files)

2018-07-30 Thread Jan Steffens via arch-commits
Date: Monday, July 30, 2018 @ 14:09:48
  Author: heftig
Revision: 329675

js60

Added:
  js60/
  js60/repos/
  js60/trunk/
  js60/trunk/mozjs60-fix-soname.patch
(from rev 329672, js52/trunk/mozjs52-fix-soname.patch)
Modified:
  js60/trunk/PKGBUILD
Deleted:
  js60/trunk/mozjs52-copy-headers.patch
  js60/trunk/mozjs52-disable-mozglue.patch
  js60/trunk/mozjs52-fix-soname.patch

-+
 js60/trunk/mozjs60-fix-soname.patch |   25 
 trunk/PKGBUILD  |   33 +++--
 trunk/mozjs52-copy-headers.patch|   30 ---
 trunk/mozjs52-disable-mozglue.patch |   66 --
 trunk/mozjs52-fix-soname.patch  |   34 -
 5 files changed, 40 insertions(+), 148 deletions(-)

Modified: js60/trunk/PKGBUILD
===
--- js52/trunk/PKGBUILD 2018-07-30 13:51:55 UTC (rev 329672)
+++ js60/trunk/PKGBUILD 2018-07-30 14:09:48 UTC (rev 329675)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Jan Alexander Steffens (heftig) 
 
-pkgname=js52
-pkgver=52.9.0
+pkgname=js60
+pkgver=60.1.0
 pkgrel=1
 _ffver=${pkgver%%.*}
 pkgdesc="JavaScript interpreter and libraries - Version $_ffver"
@@ -13,14 +13,10 @@
 makedepends=(python2 zip autoconf2.13 mercurial)
 _repo=https://hg.mozilla.org/mozilla-unified
 source=("hg+$_repo#tag=FIREFOX_${pkgver//./_}esr_RELEASE"
-mozjs52-copy-headers.patch
-mozjs52-disable-mozglue.patch
-mozjs52-fix-soname.patch
+mozjs60-fix-soname.patch
 mozjs52-include-configure-script.patch)
 sha256sums=('SKIP'
-'c5b3a88e4d10ef149aba6fc48d431db54ff266323fa22a5d549028fd794423cc'
-'5a84f02521f37de873991dd360a4c4bfdbdd2fb4a218e11be73f9cbbf02050e8'
-'728456fd9e66b69d6e0688c75e50091dc56735004ecf5f649212a83fe3087df1'
+'c792837930defe27355941080e9b80ec1d45003c097e4707860acc13d43bc519'
 'd91a89acd88bfc747a255050757a0c17139bf5c3508c2e1c3c6bb2056786a344')
 
 prepare() {
@@ -28,9 +24,7 @@
   mkdir obj
 
   # 
https://salsa.debian.org/gnome-team/mozjs52/tree/debian/master/debian/patches
-  patch -Np1 -i ../mozjs52-fix-soname.patch
-  patch -Np1 -i ../mozjs52-copy-headers.patch
-  patch -Np1 -i ../mozjs52-disable-mozglue.patch
+  patch -Np1 -i ../mozjs60-fix-soname.patch
   patch -Np1 -i ../mozjs52-include-configure-script.patch
 }
 
@@ -39,10 +33,11 @@
 --prefix=/usr
 --disable-debug
 --disable-debug-symbols
+--disable-jemalloc
 --disable-strip
---enable-gold
---enable-optimize="-O2"
---enable-pie
+--enable-hardening
+--enable-linker=gold
+--enable-optimize
 --enable-posix-nspr-emulation
 --enable-readline
 --enable-release
@@ -55,10 +50,7 @@
 
   cd mozilla-unified/obj
 
-  unset CPPFLAGS
-  CFLAGS+=' -fno-delete-null-pointer-checks -fno-strict-aliasing -fno-tree-vrp'
-  CXXFLAGS+=' -fno-delete-null-pointer-checks -fno-strict-aliasing 
-fno-tree-vrp'
-  export CC=gcc CXX=g++ PYTHON=/usr/bin/python2
+  export PYTHON=/usr/bin/python2
 
   sh ../js/src/configure "${configure_args[@]}"
   make
@@ -68,6 +60,11 @@
   local jstests_extra_args=(
 --format=none
 --exclude-random
+
+# non262/Date/time-zone-2038-pst.js:43:5 Error: Assertion failed:
+# got "Sat Mar 31 2040 00:00:00 GMT-0700 (PST)",
+# expected "Sat Mar 31 2040 00:00:00 GMT-0700 (PDT)"
+--exclude non262/Date/time-zone-2038-pst.js
   ) jittest_extra_args=(
 --format=none
 --timeout 300

Deleted: js60/trunk/mozjs52-copy-headers.patch
===
--- js52/trunk/mozjs52-copy-headers.patch   2018-07-30 13:51:55 UTC (rev 
329672)
+++ js60/trunk/mozjs52-copy-headers.patch   2018-07-30 14:09:48 UTC (rev 
329675)
@@ -1,30 +0,0 @@
-From 8b2d7a77bfb4dbd513763501ed7e9722058ee9af Mon Sep 17 00:00:00 2001
-From: Rico Tzschichholz 
-Date: Wed, 5 Jul 2017 22:45:59 -0700
-Subject: [PATCH] build: Copy headers on install instead of symlinking
-
-Patch ported forward to mozjs52 by Philip Chimento
-.

- python/mozbuild/mozbuild/backend/recursivemake.py | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/python/mozbuild/mozbuild/backend/recursivemake.py 
b/python/mozbuild/mozbuild/backend/recursivemake.py
-index 132dcf94..33d489a6 100644
 a/python/mozbuild/mozbuild/backend/recursivemake.py
-+++ b/python/mozbuild/mozbuild/backend/recursivemake.py
-@@ -1307,11 +1307,11 @@ def _process_final_target_files(self, obj, files, 
backend_file):
- raise Exception("Wildcards are only supported 
in the filename part of "
- "srcdir-relative or absolute 
paths.")
- 
--install_manifest.add_pattern_symlink(basepath, 
wild, path)
-+install_manifest.add_pattern_copy(basepath, wild, 
path)
- else:
-- 

[arch-commits] Commit in (8 files)

2018-04-19 Thread Bruno Pagani via arch-commits
Date: Thursday, April 19, 2018 @ 17:09:29
  Author: archange
Revision: 317049

Initial addition of cozy-stack to [community]

Added:
  cozy-stack/
  cozy-stack/repos/
  cozy-stack/trunk/
  cozy-stack/trunk/PKGBUILD
  cozy-stack/trunk/cozy-stack.service
  cozy-stack/trunk/cozy-stack.sysusers
  cozy-stack/trunk/cozy-stack.tmpfiles
  cozy-stack/trunk/cozy.yml

-+
 PKGBUILD|   44 
 cozy-stack.service  |   14 ++
 cozy-stack.sysusers |1 +
 cozy-stack.tmpfiles |5 +
 cozy.yml|   23 +++
 5 files changed, 87 insertions(+)

Added: cozy-stack/trunk/PKGBUILD
===
--- cozy-stack/trunk/PKGBUILD   (rev 0)
+++ cozy-stack/trunk/PKGBUILD   2018-04-19 17:09:29 UTC (rev 317049)
@@ -0,0 +1,44 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=cozy-stack
+pkgver=2018M2S1
+pkgrel=1
+pkgdesc="Digital home: brings all your web services in the same private space 
– Stack component"
+arch=('x86_64')
+url="https://cozy.io;
+license=('AGPL3')
+backup=('etc/cozy/cozy.yml')
+depends=('couchdb' 'imagemagick' 'git')
+makedepends=('go-pie')
+optdepends=('nodejs: konnectors without isolation'
+'nsjail: isolated konnectors'
+'smtp-forwarder: to allow sending mail to users')
+source=("https://apt.cozy.io/debian/pool/testing/c/${pkgname}/${pkgname}_${pkgver}.orig.tar.xz;
+"cozy.yml"
+"${pkgname}.service"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles")
+sha256sums=('eb0eb9591e8faf236468a72243261fb174825e0fbe540e2b2fc00591e963958a'
+'66b2c6be56f70896308974de35d94cedf0124736acd2bdd0b64f0f46d26fd034'
+'f0a8cc43c51daeba92b36b449537eb6fa5d3fb84ef1428dc586266749ed742e0'
+'a6bea52350e85163c3141509a52903223fa0f6e7390b1b1f9336c326a8fff984'
+'2851ae1dbe60d83a2ee919b783be8c6bd39516c0290f43270605bebe7c9b22f2')
+
+build() {
+cd cozy-stack/src/github.com/cozy/cozy-stack
+GOPATH="${srcdir}"/cozy-stack go build -o "${srcdir}"/bin/cozy-stack 
-ldflags "\
+   -X github.com/cozy/cozy-stack/pkg/config.Version=${pkgver}) \
+   -X github.com/cozy/cozy-stack/pkg/config.BuildTime=$(date -u 
+"%Y-%m-%dT%H:%M:%SZ") \
+-X github.com/cozy/cozy-stack/pkg/config.BuildMode=production"
+}
+
+package() {
+install -Dm755 bin/cozy-stack -t "${pkgdir}"/usr/bin/
+install -Dm644 cozy.yml -t "${pkgdir}"/etc/cozy/
+install -Dm644 cozy-stack/src/github.com/cozy/cozy-stack/cozy.example.yaml 
-t "${pkgdir}"/usr/share/cozy/
+install -Dm755 
cozy-stack/src/github.com/cozy/cozy-stack/scripts/konnector-node-run.sh -t 
"${pkgdir}"/usr/share/cozy/
+install -Dm755 
cozy-stack/src/github.com/cozy/cozy-stack/scripts/konnector-nsjail-run.sh -t 
"${pkgdir}"/usr/share/cozy/
+install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+}

Added: cozy-stack/trunk/cozy-stack.service
===
--- cozy-stack/trunk/cozy-stack.service (rev 0)
+++ cozy-stack/trunk/cozy-stack.service 2018-04-19 17:09:29 UTC (rev 317049)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Cozy service
+Wants=couchdb.service
+After=network.target couchdb.service
+
+[Service]
+User=cozy
+Group=cozy
+PermissionsStartOnly=true
+ExecStart=/usr/bin/cozy-stack serve
+Restart=always
+
+[Install]
+WantedBy=multi-user.target

Added: cozy-stack/trunk/cozy-stack.sysusers
===
--- cozy-stack/trunk/cozy-stack.sysusers(rev 0)
+++ cozy-stack/trunk/cozy-stack.sysusers2018-04-19 17:09:29 UTC (rev 
317049)
@@ -0,0 +1 @@
+u cozy - "Cozy Cloud" /var/lib/cozy

Added: cozy-stack/trunk/cozy-stack.tmpfiles
===
--- cozy-stack/trunk/cozy-stack.tmpfiles(rev 0)
+++ cozy-stack/trunk/cozy-stack.tmpfiles2018-04-19 17:09:29 UTC (rev 
317049)
@@ -0,0 +1,5 @@
+d /var/lib/cozy 0755 cozy cozy
+d /var/log/cozy 0755 cozy cozy
+x /var/lib/cozy
+x /var/log/cozy
+Z /etc/cozy - cozy cozy

Added: cozy-stack/trunk/cozy.yml
===
--- cozy-stack/trunk/cozy.yml   (rev 0)
+++ cozy-stack/trunk/cozy.yml   2018-04-19 17:09:29 UTC (rev 317049)
@@ -0,0 +1,23 @@
+host: 127.0.0.1
+port: 8080
+
+subdomains: nested
+
+admin:
+  host: 127.0.0.1
+  port: 6060
+  secret_filename: cozy-admin-passphrase
+
+fs:
+  url: file:///var/lib/cozy
+
+couchdb:
+  url: http://localhost:5984/
+
+konnectors:
+  cmd: /usr/share/cozy/konnector-node-run.sh
+  

[arch-commits] Commit in (8 files)

2018-04-07 Thread Balló György via arch-commits
Date: Saturday, April 7, 2018 @ 14:39:43
  Author: bgyorgy
Revision: 314848

Replace wxpython with new packages (FS#47448)

- python2-wxpython3: it provides the classic wxPython 3 for a long time 
for the existing applications.

- python-wxpython: it provides the new wxPython 4 for applications which 
want to port to Python 3.

Added:
  python-wxpython/
  python-wxpython/trunk/
  python-wxpython/trunk/PKGBUILD
  python-wxpython/trunk/unbundle-sip.patch
  python2-wxpython3/
  python2-wxpython3/trunk/
  python2-wxpython3/trunk/PKGBUILD
  python2-wxpython3/trunk/fix-plot.patch

--+
 python-wxpython/trunk/PKGBUILD   |   35 +++
 python-wxpython/trunk/unbundle-sip.patch |   58 
 python2-wxpython3/trunk/PKGBUILD |   55 
 python2-wxpython3/trunk/fix-plot.patch   |  131 +
 4 files changed, 279 insertions(+)

Added: python-wxpython/trunk/PKGBUILD
===
--- python-wxpython/trunk/PKGBUILD  (rev 0)
+++ python-wxpython/trunk/PKGBUILD  2018-04-07 14:39:43 UTC (rev 314848)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=python-wxpython
+pkgver=4.0.1
+pkgrel=1
+pkgdesc="Phoenix wxWidgets GUI toolkit for Python"
+arch=('x86_64')
+license=('custom:wxWindows')
+url="https://www.wxpython.org;
+depends=('wxgtk3' 'python-setuptools' 'python-sip' 'python-six')
+makedepends=('mesa' 'glu')
+source=("https://github.com/wxWidgets/Phoenix/releases/download/wxPython-${pkgver}/wxPython-${pkgver}.tar.gz;
+"unbundle-sip.patch")
+sha256sums=('f8f2ac1a75368b9b103259addc77f4e3dfe729c6d70aa1fd0b7e9c5b6075c710'
+'060badc5667993cd4120c8779f812d892d9a46816287b622af02756bb330cc9f')
+
+prepare() {
+cd wxPython-${pkgver}
+patch -Np1 -i ../unbundle-sip.patch
+find -name '*.py' | xargs sed -i 's/wx.siplib/sip/'
+rm -rf sip
+}
+
+build() {
+cd wxPython-${pkgver}
+python3 setup.py build
+}
+
+package() {
+cd wxPython-${pkgver}
+python3 setup.py install --root="${pkgdir}" --optimize=1
+install -Dm644 LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+find "$pkgdir/usr/lib" -type f | xargs chmod 644
+}


Property changes on: python-wxpython/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python-wxpython/trunk/unbundle-sip.patch
===
--- python-wxpython/trunk/unbundle-sip.patch(rev 0)
+++ python-wxpython/trunk/unbundle-sip.patch2018-04-07 14:39:43 UTC (rev 
314848)
@@ -0,0 +1,58 @@
+diff --git a/wscript b/wscript
+--- a/wscript
 b/wscript
+@@ -95,8 +95,8 @@
+ conf.env.debug = conf.options.debug
+ conf.env.msvc_relwithdebug = conf.options.msvc_relwithdebug
+ 
+-# Ensure that the headers in siplib and Phoenix's src dir can be found
+-conf.env.INCLUDES_WXPY = ['sip/siplib', 'src']
++# Ensure that the headers in Phoenix's src dir can be found
++conf.env.INCLUDES_WXPY = ['src']
+ 
+ if isWindows:
+ # Windows/MSVC specific stuff
+@@ -505,26 +505,6 @@
+ copy_file(name, cfg.PKGDIR, update=1, verbose=1)
+ 
+ 
+-# Create the build tasks for each of our extension modules.
+-addRelwithdebugFlags(bld, 'siplib')
+-siplib = bld(
+-features = 'c cxx cshlib cxxshlib pyext',
+-target   = makeTargetName(bld, 'siplib'),
+-source   = ['sip/siplib/apiversions.c',
+-'sip/siplib/array.c',
+-'sip/siplib/bool.cpp',
+-'sip/siplib/descriptors.c',
+-'sip/siplib/int_convertors.c',
+-'sip/siplib/objmap.c',
+-'sip/siplib/qtlib.c',
+-'sip/siplib/siplib.c',
+-'sip/siplib/threads.c',
+-'sip/siplib/voidptr.c',
+-],
+-uselib   = 'siplib WX WXPY',
+-)
+-makeExtCopyRule(bld, 'siplib')
+-
+ # Add build rules for each of our ETG generated extension modules
+ makeETGRule(bld, 'etg/_core.py',   '_core',  'WX')
+ makeETGRule(bld, 'etg/_adv.py','_adv',   'WXADV')
+@@ -613,14 +593,14 @@
+ 
+ # Make extension module build rules using info gleaned from an ETG script
+ def makeETGRule(bld, etgScript, moduleName, libFlags):
+-from buildtools.config   import loadETG, getEtgSipCppFiles
++from buildtools.config   import loadETG
+ 
+ addRelwithdebugFlags(bld, moduleName)
+ rc = ['src/wxc.rc'] if isWindows else []
+ etg = loadETG(etgScript)
+ bld(features='c cxx cxxshlib pyext',
+ target=makeTargetName(bld, moduleName),
+-source=getEtgSipCppFiles(etg) + rc,
++source=rc,
+ uselib='{} {} 

[arch-commits] Commit in (8 files)

2018-02-04 Thread David Runge via arch-commits
Date: Sunday, February 4, 2018 @ 13:29:26
  Author: dvzrv
Revision: 289004

Adding radicale 2.1.8 from AUR (as dependency to vdirsyncer).

Added:
  radicale/
  radicale/repos/
  radicale/trunk/
  radicale/trunk/PKGBUILD
  radicale/trunk/fix-flake8-test.diff
  radicale/trunk/radicale-sysusers.conf
  radicale/trunk/radicale-tmpfiles.conf
  radicale/trunk/radicale.service

+
 PKGBUILD   |   59 +++
 fix-flake8-test.diff   |   24 +++
 radicale-sysusers.conf |2 +
 radicale-tmpfiles.conf |3 ++
 radicale.service   |   25 +++
 5 files changed, 113 insertions(+)

Added: radicale/trunk/PKGBUILD
===
--- radicale/trunk/PKGBUILD (rev 0)
+++ radicale/trunk/PKGBUILD 2018-02-04 13:29:26 UTC (rev 289004)
@@ -0,0 +1,59 @@
+# Maintainer: Moritz Lipp 
+# Co-Maintainer: fordprefect 
+# Contributor: Thor77 
+
+pkgname=radicale
+_name=Radicale
+pkgver=2.1.8
+pkgrel=3
+pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
+arch=('any')
+url='http://www.radicale.org/'
+license=('GPL3')
+depends=('python-bcrypt' 'python-passlib' 'python-vobject')
+makedepends=('python-setuptools')
+checkdepends=('python-bcrypt' 'python-pytest-cov' 'python-pytest-flake8' 
'python-pytest-isort' 'python-pytest-runner')
+backup=('etc/radicale/config')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz;
+'fix-flake8-test.diff'
+"${pkgname}-sysusers.conf"
+"${pkgname}-tmpfiles.conf"
+"${pkgname}.service")
+sha512sums=('70d7c890a733fb27d007fa593d0140bfd3bde1ff46235252a2cdd3ceaf3bc9f998acb62e131f9bc71aa1c55f51c297e4f494cb22f8cba3c5d8d90069e4957c87'
+
'f951fff9187448ea3052395b6999f19cfc48dbf5cfb24359f646e1fba8a3556b40c7174f91deee4a18f5794c5fd8e45ee555a569e4320d758712ee581df6feb1'
+
'89ba929680490884e338acc311fb61d81f9d9f0282c92c40a80317af9e61123e4764e803d1698876417170efd40bfe7f56408570891c4e426de3be17c302'
+
'4570ed393b73bc5a3fd571947acae78b96b5e17f659e3169f542b9c481635680c724d5c6c0952661fae063caf04c786afe7043c5052945e7a00bb66326dec016'
+
'a8e1dce1c920a63c7f6b2fc0c6d88d06fae0df8dd588dbbe0cd4ec5e39265f8e70abe1e1d646b16460629922e459c1b88d4457a356b703fff7452e9beb3a2179')
+
+prepare() {
+  mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/fix-flake8-test.diff"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+
+install -vDm644 config "${pkgdir}/etc/${pkgname}/config"
+install -vDm644 "${pkgname}.fcgi" 
"${pkgdir}/usr/share/${pkgname}/${pkgname}.fcgi"
+install -vDm644 "${pkgname}.wsgi" 
"${pkgdir}/usr/share/${pkgname}/${pkgname}.wsgi"
+install -t "${pkgdir}/usr/share/${pkgname}/" -vDm644 {NEWS,README}.md
+install -vDm644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+install -vDm644 "${srcdir}/${pkgname}-sysusers.conf" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+install -vDm644 "${srcdir}/${pkgname}-tmpfiles.conf" 
"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}
+


Property changes on: radicale/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: radicale/trunk/fix-flake8-test.diff
===
--- radicale/trunk/fix-flake8-test.diff (rev 0)
+++ radicale/trunk/fix-flake8-test.diff 2018-02-04 13:29:26 UTC (rev 289004)
@@ -0,0 +1,24 @@
+diff -ruN Radicale-2.1.8-a/radicale/__init__.py 
Radicale-2.1.8-b/radicale/__init__.py
+--- Radicale-2.1.8-a/radicale/__init__.py  2017-09-24 02:01:14.0 
+0200
 Radicale-2.1.8-b/radicale/__init__.py  2018-02-04 14:08:39.257626655 
+0100
+@@ -120,7 +120,7 @@
+ try:
+ self.server_bind()
+ self.server_activate()
+-except:
++except Exception:
+ self.server_close()
+ raise
+ 
+diff -ruN Radicale-2.1.8-a/radicale/storage.py 
Radicale-2.1.8-b/radicale/storage.py
+--- Radicale-2.1.8-a/radicale/storage.py   2017-09-24 02:01:14.0 
+0200
 Radicale-2.1.8-b/radicale/storage.py   2018-02-04 14:09:06.850699075 
+0100
+@@ -779,7 +779,7 @@
+(path, e)) from e
+ tmp.close()
+ os.replace(tmp.name, path)
+-except:
++except Exception:
+ tmp.close()
+ 

[arch-commits] Commit in (8 files)

2018-01-24 Thread Anatol Pomozov via arch-commits
Date: Thursday, January 25, 2018 @ 05:09:59
  Author: anatolik
Revision: 286751

Add separate rake and rdoc packages

Added:
  ruby-rake/
  ruby-rake/repos/
  ruby-rake/trunk/
  ruby-rake/trunk/PKGBUILD
  ruby-rdoc/
  ruby-rdoc/repos/
  ruby-rdoc/trunk/
  ruby-rdoc/trunk/PKGBUILD

--+
 ruby-rake/trunk/PKGBUILD |   22 ++
 ruby-rdoc/trunk/PKGBUILD |   21 +
 2 files changed, 43 insertions(+)

Added: ruby-rake/trunk/PKGBUILD
===
--- ruby-rake/trunk/PKGBUILD(rev 0)
+++ ruby-rake/trunk/PKGBUILD2018-01-25 05:09:59 UTC (rev 286751)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=rake
+pkgname=ruby-$_gemname
+pkgver=12.3.0
+pkgrel=1
+pkgdesc='Make-like build tool implemented in Ruby'
+provides=(rake)
+arch=(any)
+url='https://ruby.github.io/rake/'
+license=(MIT)
+depends=(ruby)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('8f9e0c0a5fc64bb5d5d4343224ea11497fc1e653')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install --no-document -i 
"$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}


Property changes on: ruby-rake/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: ruby-rdoc/trunk/PKGBUILD
===
--- ruby-rdoc/trunk/PKGBUILD(rev 0)
+++ ruby-rdoc/trunk/PKGBUILD2018-01-25 05:09:59 UTC (rev 286751)
@@ -0,0 +1,21 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=rdoc
+pkgname=ruby-$_gemname
+pkgver=4.2.2
+pkgrel=1
+pkgdesc='Command-line documentation generator for Ruby projects'
+arch=(any)
+url='https://ruby.github.io/rdoc/'
+license=(MIT)
+depends=(ruby)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('1b1d47bb203a3cecf53e8cd4d363405227419076')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install --no-document -i 
"$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}


Property changes on: ruby-rdoc/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2017-12-24 Thread Ike Devolder via arch-commits
Date: Sunday, December 24, 2017 @ 09:02:34
  Author: idevolder
Revision: 275713

add opera-ffmpeg-codecs so opera no longer has out of repository dependency

Added:
  opera-ffmpeg-codecs/
  opera-ffmpeg-codecs/repos/
  opera-ffmpeg-codecs/trunk/
  opera-ffmpeg-codecs/trunk/PKGBUILD
  opera-ffmpeg-codecs/trunk/chromium-FORTIFY_SOURCE-r2.patch
  opera-ffmpeg-codecs/trunk/chromium-gcc5-r2.patch
  opera-ffmpeg-codecs/trunk/chromium-gn-bootstrap-r17.patch
  opera-ffmpeg-codecs/trunk/chromium-last-commit-position-r1.patch

+
 PKGBUILD   |   70 +++
 chromium-FORTIFY_SOURCE-r2.patch   |   30 +
 chromium-gcc5-r2.patch |   36 +++
 chromium-gn-bootstrap-r17.patch|   68 ++
 chromium-last-commit-position-r1.patch |   26 +++
 5 files changed, 230 insertions(+)

Added: opera-ffmpeg-codecs/trunk/PKGBUILD
===
--- opera-ffmpeg-codecs/trunk/PKGBUILD  (rev 0)
+++ opera-ffmpeg-codecs/trunk/PKGBUILD  2017-12-24 09:02:34 UTC (rev 275713)
@@ -0,0 +1,70 @@
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+
+pkgname=opera-ffmpeg-codecs
+pkgver=62.0.3202.94
+pkgrel=2
+pkgdesc="additional support for proprietary codecs for opera"
+arch=('x86_64')
+url="https://ffmpeg.org/;
+license=('LGPL2.1')
+depends=('glibc')
+makedepends=(
+  'gtk3' 'libexif' 'libxss' 'ninja' 'nss' 'pciutils' 'python2'
+  'xdg-utils'
+)
+options=('!strip')
+source=(
+  
"https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz;
+  'chromium-last-commit-position-r1.patch'
+  'chromium-FORTIFY_SOURCE-r2.patch'
+  'chromium-gn-bootstrap-r17.patch'
+  'chromium-gcc5-r2.patch'
+)
+sha512sums=('09e05aec663de94633fb7b658154a5b0146159dea0f434ef412405530274daefc5e554be8120653b840d2b55f5e35202be1a653ece7796d00956df58bc7608ad'
+
'8f63366ca998e3ee06a79c6df5b4454707bd9865913ecde2f79fcb49fdd86d291f678b9f21807e4eb61d15497cdbe4a4bdc06637882e708f34f6804453bdfd41'
+
'2d78092a700788c74b86db636af303fdb63a28ce5b7b0431dd81f6b7ce501e5d0234a6327a1b49bc23e1c1d00ba98fd5334dd07d9a20bb0d81d1a4ca4487a26c'
+
'28812a8bd6d591831a3bbd749f1d7c6dd434eb0237970d4e8ea8cfd48fa8efb4d98906eca3d175218fe62c50bcb0b6472b2d7dfdde73d5641cd3fde1d9dc5f3b'
+
'55723ffe9c34b5336450e75db8354c1ce5d6429b7296cbf575941eef5f3de3cdc40836e8f9b6905b4153913b10136a12d4c6d37f6a9f447677aa40588bfac182')
+
+prepare() {
+  cd "$srcdir/chromium-$pkgver"
+
+  # Use Python 2
+  find . -name '*.py' -exec sed -r 's|/usr/bin/python$|&2|g' -i {} +
+  find . -name '*.py' -exec sed -r 's|/usr/bin/env python$|&2|g' -i {} +
+  # There are still a lot of relative calls which need a workaround
+  [[ -d "$srcdir/python2-path" ]] && rm -rf "$srcdir/python2-path"
+  mkdir "$srcdir/python2-path"
+  ln -s /usr/bin/python2 "$srcdir/python2-path/python"
+
+  # chromium 46 gives an error about a missing file
+  # workaround create empty
+  touch chrome/test/data/webui/i18n_process_css_test.html
+
+  patch -p1 -i "$srcdir/chromium-last-commit-position-r1.patch"
+  patch -p1 -i "$srcdir/chromium-FORTIFY_SOURCE-r2.patch"
+  patch -p1 -i "$srcdir/chromium-gn-bootstrap-r17.patch"
+  patch -p1 -i "$srcdir/chromium-gcc5-r2.patch"
+}
+
+build() {
+  cd "$srcdir/chromium-$pkgver"
+
+  export PATH="$srcdir/python2-path:$PATH"
+
+  local args="ffmpeg_branding=\"ChromeOS\" proprietary_codecs=true 
enable_hevc_demuxing=true use_gconf=false use_gio=false use_gnome_keyring=false 
use_pulseaudio=false link_pulseaudio=false use_kerberos=false use_cups=false 
use_sysroot=false use_gold=false use_allocator=\"none\" 
linux_use_bundled_binutils=false fatal_linker_warnings=false 
treat_warnings_as_errors=false enable_nacl=false enable_nacl_nonsfi=false 
is_clang=false clang_use_chrome_plugins=false is_component_build=true 
is_debug=false symbol_level=0 use_custom_libcxx=false"
+
+  python2 tools/gn/bootstrap/bootstrap.py -v -s
+  out/Release/gn gen out/Release -v --args="$args" 
--script-executable=/usr/bin/python2
+
+  ninja -C out/Release -v media/ffmpeg
+}
+
+package() {
+  cd "$srcdir/chromium-$pkgver"
+
+  install -Dm644 out/Release/libffmpeg.so \
+"$pkgdir/usr/lib/opera/lib_extra/libffmpeg.so"
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: opera-ffmpeg-codecs/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: opera-ffmpeg-codecs/trunk/chromium-FORTIFY_SOURCE-r2.patch
===
--- opera-ffmpeg-codecs/trunk/chromium-FORTIFY_SOURCE-r2.patch  
(rev 0)
+++ opera-ffmpeg-codecs/trunk/chromium-FORTIFY_SOURCE-r2.patch  2017-12-24 
09:02:34 UTC (rev 275713)
@@ -0,0 +1,30 @@
+Drop _FORTIFY_SOURCE=2 from defines

[arch-commits] Commit in (8 files)

2017-12-20 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, December 20, 2017 @ 13:30:08
  Author: svenstaro
Revision: 275003

Push telegram-desktop from AUR (based on telegram-desktop-systemdqt

Added:
  telegram-desktop/
  telegram-desktop/repos/
  telegram-desktop/trunk/
  telegram-desktop/trunk/CMakeLists.inj
  telegram-desktop/trunk/PKGBUILD
  telegram-desktop/trunk/libtgvoip.patch
  telegram-desktop/trunk/tdesktop.patch
  telegram-desktop/trunk/tg.protocol

-+
 CMakeLists.inj  |   14 +
 PKGBUILD|   92 
 libtgvoip.patch |   18 +
 tdesktop.patch  |  575 ++
 tg.protocol |   11 +
 5 files changed, 710 insertions(+)

Added: telegram-desktop/trunk/CMakeLists.inj
===
--- telegram-desktop/trunk/CMakeLists.inj   (rev 0)
+++ telegram-desktop/trunk/CMakeLists.inj   2017-12-20 13:30:08 UTC (rev 
275003)
@@ -0,0 +1,14 @@
+# - debian/CMakeLists.inj begin -
+# The text will be putted into the appropriate CMakeLists by debian/rules 
script
+
+# Avoid rpath compiler parameter
+set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
+
+# This makes up for patch of gyp utility, supporting precompiled headers. If
+# Telegram/Patches/gyp.diff file will be changed in future, please check these
+# lines.
+include(../../Telegram/gyp/PrecompiledHeader.cmake)
+add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
+
+# vim: ft=cmake
+# -- debian/CMakeLists.inj end --

Added: telegram-desktop/trunk/PKGBUILD
===
--- telegram-desktop/trunk/PKGBUILD (rev 0)
+++ telegram-desktop/trunk/PKGBUILD 2017-12-20 13:30:08 UTC (rev 275003)
@@ -0,0 +1,92 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: hexchain 
+
+# Thanks Nicholas Guriev  for the patches!
+# https://github.com/mymedia2/tdesktop
+
+pkgname=telegram-desktop
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='Official Telegram Desktop client'
+arch=('x86_64')
+url="https://desktop.telegram.org/;
+license=('GPL3')
+depends=('ffmpeg' 'hicolor-icon-theme' 'minizip' 'openal' 'qt5-base' 
'qt5-imageformats' 'openssl-1.0')
+makedepends=('cmake' 'git' 'gyp' 'libexif' 'libva' 'libwebp' 'mtdev' 
'range-v3' 'python' 'python2' 'gtk3' 'libappindicator-gtk3' 'dee')
+optdepends=('libappindicator-gtk3: AppIndicator tray icon')
+conflicts=('telegram-desktop')
+provides=('telegram-desktop')
+install="telegram-desktop.install"
+source=(
+
"tdesktop::git+https://github.com/telegramdesktop/tdesktop.git#tag=v$pkgver;
+"GSL::git+https://github.com/Microsoft/GSL.git;
+"libtgvoip::git+https://github.com/telegramdesktop/libtgvoip.git;
+"variant::git+https://github.com/mapbox/variant.git;
+"Catch::git+https://github.com/philsquared/Catch;
+"telegram-desktop.desktop"
+"tg.protocol"
+"CMakeLists.inj"
+"tdesktop.patch"
+"libtgvoip.patch"
+)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'e9f0cf7553e0700285ed38f342c4d5e8ec436d3f5d11b10abe4f1f3f432fb86c'
+'d4cdad0d091c7e47811d8a26d55bbee492e7845e968c522e86f120815477e9eb'
+'7a06af83609168a8eaec59a65252caa41dcd0ecc805225886435eb65073e9c82'
+'35ca9d917254ee71141ebfbae1b8447b8d3a5601f8d3a78db2cceedfe83c54f2'
+'0e55b150b91aeeddcb813fb242a62fe4d1977bcac457eb9d65997faef643f075')
+
+prepare() {
+cd "$srcdir/tdesktop"
+git submodule init
+git config submodule.Telegram/ThirdParty/GSL.url "$srcdir/GSL"
+git config submodule.Telegram/ThirdParty/variant.url "$srcdir/variant"
+git config submodule.Telegram/ThirdParty/libtgvoip.url "$srcdir/libtgvoip"
+git config submodule.Telegram/ThirdParty/Catch.url "$srcdir/Catch"
+git submodule update
+patch -Np1 -i "$srcdir/tdesktop.patch"
+
+cd "Telegram/ThirdParty/libtgvoip"
+patch -Np1 -i "$srcdir/libtgvoip.patch"
+}
+
+build() {
+cd "$srcdir/tdesktop"
+export LANG=en_US.UTF-8
+export 
GYP_DEFINES="TDESKTOP_DISABLE_CRASH_REPORTS,TDESKTOP_DISABLE_AUTOUPDATE,TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME,TDESKTOP_DISABLE_UNITY_INTEGRATION"
+export EXTRA_FLAGS="-Winvalid-pch"
+export CPPFLAGS="$CPPFLAGS $EXTRA_FLAGS"
+export CXXFLAGS="$CXXFLAGS $EXTRA_FLAGS"
+gyp \
+-Dbuild_defines=${GYP_DEFINES} \
+-Gconfig=Release \
+--depth=Telegram/gyp --generator-output=../.. -Goutput_dir=out 
Telegram/gyp/Telegram.gyp --format=cmake
+NUM=$((`wc -l < out/Release/CMakeLists.txt` - 2))
+sed -i "$NUM r ../CMakeLists.inj" out/Release/CMakeLists.txt
+cd "$srcdir/tdesktop/out/Release"
+cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+make
+}
+
+package() {
+install -dm755 "$pkgdir/usr/bin"
+install -m755 

[arch-commits] Commit in (8 files)

2017-12-14 Thread Andrew Crerar via arch-commits
Date: Thursday, December 14, 2017 @ 14:08:56
  Author: andrewsc
Revision: 274415

Adding firefox-developer-edition to community

Added:
  firefox-developer-edition/
  firefox-developer-edition/repos/
  firefox-developer-edition/trunk/
  firefox-developer-edition/trunk/PKGBUILD
  firefox-developer-edition/trunk/firefox-developer-edition.desktop
  firefox-developer-edition/trunk/firefox-install-dir.patch
  firefox-developer-edition/trunk/firefox-symbolic.svg
  firefox-developer-edition/trunk/no-plt.diff

---+
 PKGBUILD  |  186 +
 firefox-developer-edition.desktop |  311 
 firefox-install-dir.patch |   48 +
 firefox-symbolic.svg  |   30 +++
 no-plt.diff   |   48 +
 5 files changed, 623 insertions(+)

Added: firefox-developer-edition/trunk/PKGBUILD
===
--- firefox-developer-edition/trunk/PKGBUILD(rev 0)
+++ firefox-developer-edition/trunk/PKGBUILD2017-12-14 14:08:56 UTC (rev 
274415)
@@ -0,0 +1,186 @@
+# Maintainer: Andrew Crerar 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=firefox-developer-edition
+pkgver=58.0b11
+pkgrel=2
+pkgdesc="Developer Edition of the popular Firefox web browser"
+arch=('x86_64')
+license=('MPL' 'GPL' 'LGPL')
+url="https://www.mozilla.org/firefox/channel/#developer;
+depends=('gtk3' 'gtk2' 'mozilla-common' 'libxt' 'startup-notification' 
'mime-types'
+ 'dbus-glib' 'ffmpeg' 'nss' 'hunspell' 'sqlite' 'ttf-font' 'libpulse')
+makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake' 'gconf' 
'inetutils'
+ 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack')
+optdepends=('networkmanager: Location detection via available WiFi networks'
+'libnotify: Notification integration'
+'pulseaudio: Audio support'
+'speech-dispatcher: Text-to-Speech')
+replaces=('firefox-developer')
+options=(!emptydirs !makeflags !strip)
+_repo=https://hg.mozilla.org/mozilla-unified
+source=("hg+$_repo#tag=FIREFOX_${pkgver//./_}_RELEASE"
+"$pkgname".desktop
+firefox-symbolic.svg
+firefox-install-dir.patch
+no-plt.diff)
+sha512sums=('SKIP'
+
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
+
'84e741b6a4c7675c846c16a0e0280d00e7be5477b07b693ccddac597987e8979a35d07a9ac8a3a28338b458ebdf41754ceb2119b8e41d2ec41f95b551232c64c'
+
'ce764de6deae65ae5c888b12d163419c7828cf8b31f73d7c3bc8dc3dafbca0005ea377b5b1fcea0d1f5c613459fa393690d5bc9d8e5c3e46db940b151082fbd6'
+
'4c2ef8ebedc1184c3967c123cafd63ba1abf2a274993aea8475c434f91a40b86e7c5d3c78c3b2809cd15310af4c613d5841a9114315f861338c36f498a782fd0')
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
+# Mozilla API keys (see https://location.services.mozilla.com/api)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact hef...@archlinux.org for
+# more information.
+_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd mozilla-unified
+  patch -Np1 -i ../firefox-install-dir.patch
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np1 -i ../no-plt.diff
+
+  echo -n "$_google_api_key" > google-api-key
+  echo -n "$_mozilla_api_key" > mozilla-api-key
+
+  cat > .mozconfig << END
+ac_add_options --enable-application=browser
+
+ac_add_options --prefix=/usr
+ac_add_options --enable-release
+ac_add_options --enable-gold
+ac_add_options --enable-pie
+ac_add_options --enable-optimize="-O2"
+
+# Branding
+ac_add_options --with-branding=browser/branding/aurora
+ac_add_options --enable-update-channel=aurora
+ac_add_options --with-distribution-id=org.archlinux
+export MOZILLA_OFFICIAL=1
+export MOZ_TELEMETRY_REPORTING=1
+export MOZ_ADDON_SIGNING=1
+export MOZ_REQUIRE_SIGNING=0
+ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
+
+# Keys
+ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key
+ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
+
+# System libraries
+ac_add_options --with-system-zlib
+ac_add_options --with-system-bz2
+ac_add_options --enable-system-hunspell
+ac_add_options --enable-system-sqlite
+ac_add_options --enable-system-ffi
+
+# Features
+ac_add_options --enable-alsa
+ac_add_options --enable-jack
+ac_add_options --enable-startup-notification
+ac_add_options 

[arch-commits] Commit in (8 files)

2017-11-18 Thread Antonio Rojas
Date: Saturday, November 18, 2017 @ 09:25:48
  Author: arojas
Revision: 310368

Dependency cleanup

Modified:
  akonadiconsole/kde-unstable/PKGBUILD
  grantlee-editor/kde-unstable/PKGBUILD
  gwenview/kde-unstable/PKGBUILD
  kaddressbook/kde-unstable/PKGBUILD
  kmail-account-wizard/kde-unstable/PKGBUILD
  kmail/kde-unstable/PKGBUILD
  knotes/kde-unstable/PKGBUILD
  korganizer/kde-unstable/PKGBUILD

+
 akonadiconsole/kde-unstable/PKGBUILD   |4 ++--
 grantlee-editor/kde-unstable/PKGBUILD  |2 +-
 gwenview/kde-unstable/PKGBUILD |2 +-
 kaddressbook/kde-unstable/PKGBUILD |2 +-
 kmail-account-wizard/kde-unstable/PKGBUILD |2 +-
 kmail/kde-unstable/PKGBUILD|2 +-
 knotes/kde-unstable/PKGBUILD   |2 +-
 korganizer/kde-unstable/PKGBUILD   |2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

Modified: akonadiconsole/kde-unstable/PKGBUILD
===
--- akonadiconsole/kde-unstable/PKGBUILD2017-11-18 09:24:58 UTC (rev 
310367)
+++ akonadiconsole/kde-unstable/PKGBUILD2017-11-18 09:25:48 UTC (rev 
310368)
@@ -8,8 +8,8 @@
 arch=(x86_64)
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
-depends=(hicolor-icon-theme calendarsupport messagelib)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin boost python)
+depends=(calendarsupport messagelib)
+makedepends=(extra-cmake-modules kdoctools boost python)
 groups=(kde-applications kdepim)
 
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('13b733b22b08efcc1afc110f64241d2480003b8d28b0b6b812c7cc31c5a80d4d'

Modified: grantlee-editor/kde-unstable/PKGBUILD
===
--- grantlee-editor/kde-unstable/PKGBUILD   2017-11-18 09:24:58 UTC (rev 
310367)
+++ grantlee-editor/kde-unstable/PKGBUILD   2017-11-18 09:25:48 UTC (rev 
310368)
@@ -8,7 +8,7 @@
 arch=(x86_64)
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
-depends=(hicolor-icon-theme messagelib ktexteditor)
+depends=(messagelib ktexteditor)
 makedepends=(extra-cmake-modules python kdoctools boost)
 conflicts=('kmail<16.11')
 groups=(kde-applications kdepim)

Modified: gwenview/kde-unstable/PKGBUILD
===
--- gwenview/kde-unstable/PKGBUILD  2017-11-18 09:24:58 UTC (rev 310367)
+++ gwenview/kde-unstable/PKGBUILD  2017-11-18 09:25:48 UTC (rev 310368)
@@ -15,7 +15,7 @@
 optdepends=('qt5-imageformats: support for tiff, webp, and more image formats'
 'kimageformats: support for dds, xcf, exr, psd, and more image 
formats'
 'kipi-plugins: export to various online services')
-makedepends=(extra-cmake-modules kdoctools python cfitsio)
+makedepends=(extra-cmake-modules kdoctools python)
 
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('ea898522b3b35e27967b7b1528f72f39dcf69d4c67fdc0f990e5a4d01881791d'
 'SKIP')

Modified: kaddressbook/kde-unstable/PKGBUILD
===
--- kaddressbook/kde-unstable/PKGBUILD  2017-11-18 09:24:58 UTC (rev 310367)
+++ kaddressbook/kde-unstable/PKGBUILD  2017-11-18 09:25:48 UTC (rev 310368)
@@ -9,7 +9,7 @@
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
 depends=(kontactinterface kdepim-runtime kdepim-apps-libs)
-makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin)
+makedepends=(extra-cmake-modules kdoctools boost python)
 groups=(kde-applications kdepim)
 
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('fb4f50be71f80dd71ed2d34dbfcf39130531d8f5498d3a7910686b73b28a1ed4'

Modified: kmail/kde-unstable/PKGBUILD
===
--- kmail/kde-unstable/PKGBUILD 2017-11-18 09:24:58 UTC (rev 310367)
+++ kmail/kde-unstable/PKGBUILD 2017-11-18 09:25:48 UTC (rev 310368)
@@ -9,7 +9,7 @@
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
 depends=(kdepim-runtime kmail-account-wizard akonadi-import-wizard 
mbox-importer pim-sieve-editor kontactinterface libktnef)
-makedepends=(extra-cmake-modules kdoctools kdesignerplugin boost python)
+makedepends=(extra-cmake-modules kdoctools boost python)
 optdepends=('kleopatra: mail encryption support' 'kdepim-addons: additional 
plugins')
 conflicts=(ktnef)
 replaces=(ktnef)

Modified: kmail-account-wizard/kde-unstable/PKGBUILD
===
--- kmail-account-wizard/kde-unstable/PKGBUILD  2017-11-18 09:24:58 UTC (rev 
310367)
+++ kmail-account-wizard/kde-unstable/PKGBUILD  2017-11-18 09:25:48 UTC (rev 
310368)
@@ -9,7 +9,7 @@
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
 

[arch-commits] Commit in (8 files)

2017-03-01 Thread Sergej Pupykin
Date: Wednesday, March 1, 2017 @ 12:13:21
  Author: spupykin
Revision: 214348

Added:
  nextcloud-app-mail/
  nextcloud-app-mail/repos/
  nextcloud-app-mail/trunk/
  nextcloud-app-mail/trunk/PKGBUILD
  nextcloud-app-notes/
  nextcloud-app-notes/repos/
  nextcloud-app-notes/trunk/
  nextcloud-app-notes/trunk/PKGBUILD

+
 nextcloud-app-mail/trunk/PKGBUILD  |   25 +
 nextcloud-app-notes/trunk/PKGBUILD |   22 ++
 2 files changed, 47 insertions(+)

Added: nextcloud-app-mail/trunk/PKGBUILD
===
--- nextcloud-app-mail/trunk/PKGBUILD   (rev 0)
+++ nextcloud-app-mail/trunk/PKGBUILD   2017-03-01 12:13:21 UTC (rev 214348)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonas Heinrich 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-mail
+pkgver=0.6.2
+pkgrel=1
+pkgdesc="An email app for NextCloud"
+arch=('any')
+url="https://github.com/nextcloud/mail;
+license=('AGPL')
+depends=('nextcloud')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz;)
+sha512sums=("fdb2e769be3369b541fc680edff5411efef3478c08fd706aaf2b544f8838cab295b9dcd5c58a085aa30d4223dc9d806b5b3272adc57f3d2d2eb4607afbc17686")
+
+prepare() {
+  sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"
+}
+
+package() {
+  install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -a "${srcdir}/mail" "${pkgdir}/usr/share/webapps/nextcloud/apps/mail"
+}


Property changes on: nextcloud-app-mail/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: nextcloud-app-notes/trunk/PKGBUILD
===
--- nextcloud-app-notes/trunk/PKGBUILD  (rev 0)
+++ nextcloud-app-notes/trunk/PKGBUILD  2017-03-01 12:13:21 UTC (rev 214348)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: David Runge 
+# Contributor: David Runge 
+
+pkgname=nextcloud-app-notes
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Simple Notes app for Nextcloud"
+arch=('any')
+url="https://github.com/nextcloud/notes;
+license=('AGPL3')
+depends=('nextcloud')
+makedepends=()
+options=('!strip')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/nextcloud/notes/releases/download/v${pkgver}/notes.tar.gz;)
+sha512sums=('c4329123623aa1018237376eec46b6bb4f2705554df8a4b7d4109591749db952dd4c21b6a612df1a7f26e32cd0668331569196782229c0d7fcb0af714d41c482')
+
+package() {
+  install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -R "${srcdir}/notes" "${pkgdir}/usr/share/webapps/nextcloud/apps/notes"
+}


Property changes on: nextcloud-app-notes/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2017-01-03 Thread Antonio Rojas
Date: Tuesday, January 3, 2017 @ 11:14:52
  Author: arojas
Revision: 285229

kdevelop 5.1 beta

Added:
  kdevelop-php/kde-unstable/
  kdevelop-python/kde-unstable/
  kdevelop/kde-unstable/
  kdevplatform/kde-unstable/
Modified:
  kdevelop-php/kde-unstable/PKGBUILD
  kdevelop-python/kde-unstable/PKGBUILD
  kdevelop/kde-unstable/PKGBUILD
  kdevplatform/kde-unstable/PKGBUILD

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

Modified: kdevelop/kde-unstable/PKGBUILD
===
--- kdevelop/trunk/PKGBUILD 2017-01-03 09:52:17 UTC (rev 285228)
+++ kdevelop/kde-unstable/PKGBUILD  2017-01-03 11:14:52 UTC (rev 285229)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=kdevelop
-pkgver=5.0.3
+pkgver=5.0.80
 pkgrel=1
 pkgdesc='A C/C++ development environment for KDE'
 arch=(i686 x86_64)
@@ -24,8 +24,8 @@
'plasma-framework: for the plasma addons')
 conflicts=(kdevelop-qmljs)
 replaces=(kdevelop-qmljs)
-source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('c642fe91620840c0de655b5a5aebff6bdf4b4912'
+source=("http://download.kde.org/unstable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.asc})
+sha1sums=('ceed877fb181f10231973093e00b760d9cd31368'
   'SKIP')
 validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6') # Sven Brauch 

 

Modified: kdevelop-php/kde-unstable/PKGBUILD
===
--- kdevelop-php/trunk/PKGBUILD 2017-01-03 09:52:17 UTC (rev 285228)
+++ kdevelop-php/kde-unstable/PKGBUILD  2017-01-03 11:14:52 UTC (rev 285229)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdevelop-php
-pkgver=5.0.3
+pkgver=5.0.80
 pkgrel=1
 pkgdesc="PHP language and documentation plugin for KDevelop"
 arch=(i686 x86_64)
@@ -11,8 +11,8 @@
 license=(GPL)
 depends=(kdevelop)
 makedepends=(extra-cmake-modules kdoctools kdevelop-pg-qt python)
-source=("http://download.kde.org/stable/kdevelop/$pkgver/src/kdev-php-$pkgver.tar.xz"{,.sig})
-sha1sums=('b670d0fd8a55d0691063400fc17d2232fa3cc44a'
+source=("http://download.kde.org/unstable/kdevelop/$pkgver/src/kdev-php-$pkgver.tar.xz"{,.asc})
+sha1sums=('638a4c228ea74d921a26a5a3eefe94ca7c2d8d4a'
   'SKIP')
 validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6') # Sven Brauch 

 

Modified: kdevelop-python/kde-unstable/PKGBUILD
===
--- kdevelop-python/trunk/PKGBUILD  2017-01-03 09:52:17 UTC (rev 285228)
+++ kdevelop-python/kde-unstable/PKGBUILD   2017-01-03 11:14:52 UTC (rev 
285229)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kdevelop-python
-pkgver=5.0.3
-pkgrel=2
+pkgver=5.0.80
+pkgrel=1
 pkgdesc="Python language and documentation plugin for KDevelop"
 arch=(i686 x86_64)
 url="http://www.kdevelop.org/;
@@ -11,19 +11,13 @@
 license=(GPL)
 depends=(kdevelop python)
 makedepends=(extra-cmake-modules)
-source=("http://download.kde.org/stable/kdevelop/$pkgver/src/kdev-python-$pkgver.tar.xz"{,.sig}
-
kdev-python3.6.patch::"https://cgit.kde.org/kdev-python.git/patch/?h=5.0-python36=e79ea8fa=72f97de7;)
-sha1sums=('26ff325e2ae1cff4ded3fa4396a6b4dbff5706d6'
-  'SKIP'
-  '019f837b94fa41cb18e55018ad151554e16d7c5a')
+source=("http://download.kde.org/unstable/kdevelop/$pkgver/src/kdev-python-$pkgver.tar.xz"{,.asc})
+sha1sums=('f05b6e41fa3a7532e28dae6061e63f868a1d73fc'
+  'SKIP')
 validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6') # Sven Brauch 

 
 prepare() {
   mkdir -p build
-
-# Support Python 3.6
-  cd kdev-python-$pkgver
-  patch -p1 -i ../kdev-python3.6.patch
 }
 
 build() {

Modified: kdevplatform/kde-unstable/PKGBUILD
===
--- kdevplatform/trunk/PKGBUILD 2017-01-03 09:52:17 UTC (rev 285228)
+++ kdevplatform/kde-unstable/PKGBUILD  2017-01-03 11:14:52 UTC (rev 285229)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=kdevplatform
-pkgver=5.0.3
+pkgver=5.0.80
 pkgrel=1
 pkgdesc='A C/C++ development platform for KDE'
 arch=(i686 x86_64)
@@ -13,8 +13,8 @@
 depends=(grantlee hicolor-icon-theme kcmutils threadweaver kitemmodels 
ktexteditor knotifyconfig knewstuff libkomparediff2 qt5-webkit)
 makedepends=(extra-cmake-modules boost subversion python)
 optdepends=('subversion: Subversion plugin')
-source=("http://download.kde.org/stable/kdevelop/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha1sums=('9c8900deb39d2627f6d861e238935ad543de045b'
+source=("http://download.kde.org/unstable/kdevelop/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.asc})
+sha1sums=('2c8fea60bca929c93771e407abfe22aa297110f7'
   'SKIP')
 validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6') # 

[arch-commits] Commit in (8 files)

2017-01-01 Thread Alexander Rødseth
Date: Sunday, January 1, 2017 @ 20:51:39
  Author: arodseth
Revision: 204130

Move from AUR

Added:
  smlnj/
  smlnj/repos/
  smlnj/repos/community-i686/
  smlnj/repos/community-x86_64/
  smlnj/trunk/
  smlnj/trunk/PKGBUILD
  smlnj/trunk/profile.d-smlnj.sh
  smlnj/trunk/urlgetter.sh

+
 PKGBUILD   |   90 +++
 profile.d-smlnj.sh |2 +
 urlgetter.sh   |   31 +
 3 files changed, 123 insertions(+)

Added: smlnj/trunk/PKGBUILD
===
--- smlnj/trunk/PKGBUILD(rev 0)
+++ smlnj/trunk/PKGBUILD2017-01-01 20:51:39 UTC (rev 204130)
@@ -0,0 +1,90 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Thomas Weißschuh 
+
+pkgname=smlnj
+pkgver=110.80
+pkgrel=2
+pkgdesc='Compiler for Standard ML, from New Jersey'
+url='http://www.smlnj.org/'
+license=('BSD')
+arch=('x86_64' 'i686')
+provides=('sml')
+depends=('bash')
+depends_x86_64+=('lib32-glibc')
+makedepends_x86_64+=('gcc-multilib')
+_url="http://smlnj.cs.uchicago.edu/dist/working/$pkgver/;
+source=(
+  "urlgetter.sh"
+  "profile.d-smlnj.sh"
+  "smlnj-$pkgver-boot.x86-unix.tgz::${_url}boot.x86-unix.tgz"
+  "smlnj-$pkgver-config.tgz::${_url}config.tgz"
+  "smlnj-$pkgver-cm.tgz::${_url}cm.tgz"
+  "smlnj-$pkgver-compiler.tgz::${_url}compiler.tgz"
+  "smlnj-$pkgver-runtime.tgz::${_url}runtime.tgz"
+  "smlnj-$pkgver-system.tgz::${_url}system.tgz"
+  "smlnj-$pkgver-MLRISC.tgz::${_url}MLRISC.tgz"
+  "smlnj-$pkgver-smlnj-lib.tgz::${_url}smlnj-lib.tgz"
+  "smlnj-$pkgver-ckit.tgz::${_url}ckit.tgz"
+  "smlnj-$pkgver-nlffi.tgz::${_url}nlffi.tgz"
+  "smlnj-$pkgver-cml.tgz::${_url}cml.tgz"
+  "smlnj-$pkgver-ml-lpt.tgz::${_url}ml-lpt.tgz"
+  "smlnj-$pkgver-ml-lex.tgz::${_url}ml-lex.tgz"
+  "smlnj-$pkgver-ml-yacc.tgz::${_url}ml-yacc.tgz"
+  "smlnj-$pkgver-ml-burg.tgz::${_url}ml-burg.tgz"
+  "smlnj-$pkgver-trace-debug-profile.tgz::${_url}trace-debug-profile.tgz"
+)
+sha256sums=('4da78effe7d3644c28c731c8e4003a9cecec9f8f61d2fa4553981a729f2d200b'
+'dd20a81a5d2899f60183215ab6a412d522d2c6801d454c142225716899e089f3'
+'e4e0def3d38816eab5ce3d50b0c6d732779ff83ef65d2aef34b7c69d780a3488'
+'fd2120ebae607b71778914700385a70b38596e13c350e489c483058693217b03'
+'ae892f431c6c570e52603c3297b829a81cd0e126c3793a484eaf37966c52820c'
+'f1855a1070793cd4474af2752a816d72227994233a000877c27b2c4269a60d6e'
+'6e13a544bd346e6b4103d51300290eb2f056983c903aa658db3b1489a8ab9d45'
+'dc2198c9c423af9c5f3d65da7166ba690e1672291a247cd1e6ba9e8419eaf1a8'
+'425a4b648e0f5d0cf660e5a325756cf6f373daacf8261d8c424d163d277fd9f0'
+'a8c3aca6a638fff540055791236f5bc30e7d8044782d220beddd711eaa7ea352'
+'7fe672bbdb917aca5825246658b692b63f7f66a15afefeb707baf914263187ba'
+'4d1b048b4bced62820dba17b92e0276d34336f98f298aa77240da6d8fed5a128'
+'23ae9fcf214636301941119b46b044f61f1d2f4b6f337b2fe72213e18a7a489a'
+'3d73a4c0d68694adeec6111f10a94386204db51fc86814669c364802776b0c79'
+'441c2895b0cf592a207a5bc13ec5625f3463b32c7b7f7cd717f16ce587073102'
+'64c7acaa07e664f7751e46da1d6c9c1d3a080f70b28fcf611e05fd96e1382ca1'
+'fcade4c8518621099022bc28d4795e6ae972f8b3b64b01fb14778a714bfe44db'
+'d1148cddbff76e38a96d2db95edb33b5b81e603ce8e2d4e8d3b4b54040db934a')
+
+build() {
+  # The build system uses this env variable
+  URLGETTER="$srcdir/urlgetter.sh"
+
+  # urlgetter.sh uses these variables
+  export srcdir
+  export pkgver
+
+  # Parallel builds won't work
+  unset MAKEFLAGS
+
+  # Confuses install.sh
+  unset SMLNJ_HOME
+
+  INSTALLDIR="$srcdir/install"
+  mkdir $INSTALLDIR
+  export INSTALLDIR
+
+  config/install.sh
+}
+
+package() {
+  mkdir -p "$pkgdir/usr/lib/smlnj"
+  cp -R "$srcdir/install/"{bin,lib} "$pkgdir/usr/lib/smlnj"
+
+  mkdir -p "$pkgdir/etc/profile.d"
+  cp "$srcdir/profile.d-smlnj.sh" "$pkgdir/etc/profile.d/smlnj.sh"
+
+  mkdir -p "$pkgdir/usr/share/"
+  cp -R "$srcdir/doc/man" "$pkgdir/usr/share/"
+  find "$pkgdir/usr/share/man" -name '._*' -delete
+
+  install -Dm644 compiler/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Added: smlnj/trunk/profile.d-smlnj.sh
===
--- smlnj/trunk/profile.d-smlnj.sh  (rev 0)
+++ smlnj/trunk/profile.d-smlnj.sh  2017-01-01 20:51:39 UTC (rev 204130)
@@ -0,0 +1,2 @@
+export SMLNJ_HOME=/usr/lib/smlnj
+export PATH="$PATH:/usr/lib/smlnj/bin"

Added: smlnj/trunk/urlgetter.sh
===
--- smlnj/trunk/urlgetter.sh(rev 0)
+++ smlnj/trunk/urlgetter.sh2017-01-01 20:51:39 UTC (rev 204130)
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+# invocation:
+# urlgetter.sh  
+# where source is a remote 

[arch-commits] Commit in (8 files)

2016-10-28 Thread Andrzej Giniewicz
Date: Friday, October 28, 2016 @ 14:21:31
  Author: aginiewicz
Revision: 193914

mayavi: moving back from AUR

Added:
  mayavi/
  mayavi/repos/
  mayavi/trunk/
  mayavi/trunk/PKGBUILD
  mayavi/trunk/mayavi.csh
  mayavi/trunk/mayavi.sh
  mayavi/trunk/setuptools.patch
  mayavi/trunk/vtk6.patch

--+
 PKGBUILD |  121 +
 mayavi.csh   |1 
 mayavi.sh|1 
 setuptools.patch |   22 +
 vtk6.patch   |   47 
 5 files changed, 192 insertions(+)

Added: mayavi/trunk/PKGBUILD
===
--- mayavi/trunk/PKGBUILD   (rev 0)
+++ mayavi/trunk/PKGBUILD   2016-10-28 14:21:31 UTC (rev 193914)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+
+pkgname=mayavi
+pkgver=4.5.0
+pkgrel=2
+pkgdesc="A 3-dimensional visualizer of scientific data"
+arch=('i686' 'x86_64')
+url="https://github.com/enthought/mayavi;
+license=('BSD')
+depends=('ipython2' 'vtk6' 'python2-envisage' 'python2-traitsui' 
'python2-configobj' 'wxpython2.8'
+ 'gdal' 'unixodbc' 'jsoncpp' 'hdf5' 'openmpi' 'libtheora' 'ffmpeg' 
'qt5-base')
+makedepends=('python2-setuptools' 'python2-sphinx' 'python2-twisted' 
'xorg-server-xvfb')
+replaces=('python2-mayavi')
+provides=('python2-mayavi')
+options=(!emptydirs)
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/mayavi/archive/${pkgver}.tar.gz;
+"mayavi.sh" "mayavi.csh" "vtk6.patch" "setuptools.patch")
+md5sums=('ed3b0004b810bd5741ae9bb46d197250'
+ '3e998f4f3cb1d9bc3353fbb933984458'
+ 'd68e29e3c805ad2e0a5e82b1744b1f0a'
+ '1b91b3aaf31a44ddc5e770f4fb1e3c5f'
+ 'fa81f3c6610942dedd072ef55428c41b')
+
+prepare() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  # patch to force VTK6
+  patch -p1 < ../vtk6.patch
+
+  # patch to fix setuptools 28.0 --- 
https://github.com/enthought/mayavi/issues/443
+  patch -p1 < ../setuptools.patch
+
+  # force selection of wxpython 2.8
+  sed -e "s/wxversion.ensureMinimal('2.8')/wxversion.select('2.8')/g" -i 
$(find . -name '*.py')
+
+  # fix wrong-file-end-of-line-encoding
+  for file in *.txt examples/mayavi/data/room_vis.wrl examples/tvtk/dscene.py \
+examples/mayavi/interactive/wx_mayavi_embed*.py ; do
+sed "s|\r||g" $file > $file.new && \
+touch -r $file $file.new && \
+mv $file.new $file
+  done
+
+  # file-not-utf8
+  for file in *.txt docs/*.txt; do
+iconv -f ISO-8859-1 -t UTF-8 -o $file.new $file && \
+touch -r $file $file.new && \
+mv $file.new $file
+  done
+
+  # remove exec permission
+  find examples -type f -exec chmod 0644 {} ";"
+  chmod 0644 mayavi/tests/data/cellsnd.ascii.inp
+
+  # set path so autodoc can find just built modules
+  echo "sys.path.append('$srcdir/mayavi-$pkgver/build/lib.linux-$CARCH-2.7/')" 
>> docs/source/mayavi/conf.py
+
+  # Use python2-sphinx provided sphinx-build2
+  sed -i -e 's/sphinx-build/sphinx-build2/' docs/Makefile*
+
+  # fix python->python2
+  sed -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
+  -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+  -e "s|#![ ]*/bin/env python$|#!/usr/bin/env python2|" \
+  -i $(find . -name '*[\._]py')
+}
+
+build() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  rm -rf build
+  mkdir build
+  mkdir -p 
build/lib.linux-$CARCH-2.7/{tvtk/plugins/scene,mayavi/preferences,mayavi/core}
+  ln -s "$srcdir"/enthought-mayavi-${_githubtag}/tvtk/tvtk_classes.zip \
+build/lib.linux-$CARCH-2.7/tvtk/tvtk_classes.zip
+  ln -s 
"$srcdir"/enthought-mayavi-${_githubtag}/mayavi/preferences/preferences.ini \
+build/lib.linux-$CARCH-2.7/mayavi/preferences/preferences.ini
+  ln -s 
"$srcdir"/enthought-mayavi-${_githubtag}/tvtk/plugins/scene/preferences.ini \
+build/lib.linux-$CARCH-2.7/tvtk/plugins/scene/preferences.ini
+
+  # now this is ugly, but docs do not build without X. We setup X according to:
+  # 
http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer
+  export DISPLAY=:69
+  Xvfb $DISPLAY &
+
+  # build!
+  export ETS_TOOLKIT="wx"
+  python2 setup.py build
+
+  # have to kill the server to proceed, and do other cleanup
+  kill `cat /tmp/.X${DISPLAY/:/}-lock`
+  rm build/lib.linux-$CARCH-2.7/tvtk/tvtk_classes.zip
+  rm build/lib.linux-$CARCH-2.7/mayavi/preferences/preferences.ini
+  rm build/lib.linux-$CARCH-2.7/tvtk/plugins/scene/preferences.ini
+}
+
+package() {
+  cd "$srcdir"/mayavi-$pkgver
+
+  python2 setup.py install --skip-build --root="$pkgdir"/ --optimize=1
+
+  # remove useless files
+  rm -f "${pkgdir}"/usr/lib/python2.7/site-packages/tvtk/setup.py*
+  find "${pkgdir}" -name \.buildinfo -type f -print | xargs rm -f -
+
+  # non-executable-script
+  chmod +x "${pkgdir}"/usr/lib/python2.7/site-packages/mayavi/tests/runtests.py
+
+  # install manpage
+  mkdir -p "${pkgdir}"/usr/share/man/man1
+  cp -p docs/mayavi2.man 

[arch-commits] Commit in (8 files)

2016-10-02 Thread Maxime Gauduin
Date: Sunday, October 2, 2016 @ 12:53:32
  Author: alucryd
Revision: 191199

Add libvpx1.3 & co, providing libvpx.so.1 for some steam games

Added:
  lib32-libvpx1.3/
  lib32-libvpx1.3/trunk/
  lib32-libvpx1.3/trunk/PKGBUILD
  lib32-libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch
  libvpx1.3/
  libvpx1.3/trunk/
  libvpx1.3/trunk/PKGBUILD
  libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch

+
 lib32-libvpx1.3/trunk/PKGBUILD |   58 +++
 lib32-libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch |   24 +
 libvpx1.3/trunk/PKGBUILD   |   54 +
 libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch   |   24 +
 4 files changed, 160 insertions(+)

Added: lib32-libvpx1.3/trunk/PKGBUILD
===
--- lib32-libvpx1.3/trunk/PKGBUILD  (rev 0)
+++ lib32-libvpx1.3/trunk/PKGBUILD  2016-10-02 12:53:32 UTC (rev 191199)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Dan Ziemba 
+
+pkgname=lib32-libvpx1.3
+pkgver=1.3.0
+pkgrel=1
+pkgdesc='VP8 and VP9 codec'
+arch=('x86_64')
+url='http://www.webmproject.org/'
+license=('BSD')
+depends=('lib32-glibc' 'lib32-gcc-libs')
+makedepends=('yasm' 'git')
+provides=('libvpx.so')
+source=("libvpx-${pkgver}.tar.gz::https://github.com/webmproject/libvpx/archive/v${pkgver}.tar.gz;
+'libvpx-1.3-gcc-5.2.patch')
+sha256sums=('db72881e1c34e4ae92666847844f35dd2dd431bcf6284500b1b396464f882f64'
+'df157b8f0e4469692598f5f12b305561a56a84374880ef740ccb8f0b447851e1')
+
+prepare() {
+  cd libvpx-${pkgver}
+
+  patch -Np1 -i ../libvpx-1.3-gcc-5.2.patch
+}
+
+build() {
+  cd libvpx-${pkgver}
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--enable-runtime-cpu-detect \
+--enable-shared \
+--enable-pic \
+--disable-install-docs \
+--disable-install-srcs \
+--enable-vp8 \
+--enable-postproc \
+--enable-vp9
+
+  make
+}
+
+package() {
+  cd libvpx-${pkgver}
+
+  make DIST_DIR="${pkgdir}"/usr install
+  rm -rf "${pkgdir}"/usr/{bin,include,lib32/{libvpx.{a,so},pkgconfig},share}
+
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/lib32-libvpx1.3/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: lib32-libvpx1.3/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: lib32-libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch
===
--- lib32-libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch  
(rev 0)
+++ lib32-libvpx1.3/trunk/libvpx-1.3-gcc-5.2.patch  2016-10-02 12:53:32 UTC 
(rev 191199)
@@ -0,0 +1,24 @@
+diff -Naur libvpx-1.3.orig/nestegg/halloc/src/align.h 
libvpx-1.3/nestegg/halloc/src/align.h
+--- libvpx-1.3.orig/nestegg/halloc/src/align.h 2015-08-02 13:42:14.783914000 
+0200
 libvpx-1.3/nestegg/halloc/src/align.h  2015-08-02 13:43:04.100580874 
+0200
+@@ -30,7 +30,7 @@
+   void (*q)(void);
+ };
+ 
+-typedef union max_align max_align_t;
++typedef union max_align h_max_align_t;
+ 
+ #endif
+ 
+diff -Naur libvpx-1.3.orig/nestegg/halloc/src/halloc.c 
libvpx-1.3/nestegg/halloc/src/halloc.c
+--- libvpx-1.3.orig/nestegg/halloc/src/halloc.c2015-08-02 
13:42:14.783914000 +0200
 libvpx-1.3/nestegg/halloc/src/halloc.c 2015-08-02 13:43:35.817247310 
+0200
+@@ -30,7 +30,7 @@
+ #endif
+   hlist_item_t  siblings; /* 2 pointers */
+   hlist_head_t  children; /* 1 pointer  */
+-  max_align_t   data[1];  /* not allocated, see below */
++  h_max_align_t data[1];  /* not allocated, see below */
+   
+ } hblock_t;
+ 

Added: libvpx1.3/trunk/PKGBUILD
===
--- libvpx1.3/trunk/PKGBUILD(rev 0)
+++ libvpx1.3/trunk/PKGBUILD2016-10-02 12:53:32 UTC (rev 191199)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Fabio Castelli 
+
+pkgname=libvpx1.3
+pkgver=1.3.0
+pkgrel=1
+pkgdesc='VP8 and VP9 codec'
+arch=('i686' 'x86_64')
+url='http://www.webmproject.org/'
+license=('BSD')
+depends=('glibc' 'gcc-libs')
+makedepends=('yasm' 'git')
+provides=('libvpx.so')
+source=("libvpx-${pkgver}.tar.gz::https://github.com/webmproject/libvpx/archive/v${pkgver}.tar.gz;
+'libvpx-1.3-gcc-5.2.patch')
+sha256sums=('db72881e1c34e4ae92666847844f35dd2dd431bcf6284500b1b396464f882f64'
+

[arch-commits] Commit in (8 files)

2016-07-17 Thread Massimiliano Torromeo
Date: Sunday, July 17, 2016 @ 21:53:26
  Author: mtorromeo
Revision: 183036

Added elastic beats packages

Added:
  beats/
  beats/trunk/
  beats/trunk/PKGBUILD
  beats/trunk/filebeat.install
  beats/trunk/filebeat.service
  beats/trunk/filebeat.sysusers
  beats/trunk/packetbeat.service
  beats/trunk/topbeat.service

+
 PKGBUILD   |  108 +++
 filebeat.install   |   25 +++
 filebeat.service   |   11 +
 filebeat.sysusers  |1 
 packetbeat.service |   10 
 topbeat.service|   10 
 6 files changed, 165 insertions(+)

Added: beats/trunk/PKGBUILD
===
--- beats/trunk/PKGBUILD(rev 0)
+++ beats/trunk/PKGBUILD2016-07-17 21:53:26 UTC (rev 183036)
@@ -0,0 +1,108 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Tyler Langlois 
+
+pkgbase=beats
+pkgname=(filebeat packetbeat topbeat)
+pkgver=1.2.3
+pkgrel=1
+pkgdesc='Open source data shippers for Elasticsearch'
+arch=('i686' 'x86_64')
+url='https://www.elastic.co/products/beats'
+license=('APACHE')
+depends=('glibc')
+makedepends=('go' 'git' 'libpcap')
+options=('!strip')
+source=("https://github.com/elastic/beats/archive/v$pkgver/beats-$pkgver.tar.gz;
+"filebeat.install"
+"filebeat.sysusers"
+"filebeat.service"
+"packetbeat.service"
+"topbeat.service")
+sha256sums=('8eea85de415898c362144ba533062651d8891241c738799e54cc9b17040c1fc9'
+'337d78d9cb21745098c4cc75578f026e5a5819cd4d0575e3f4241f13370c0863'
+'33feb3690f8b31563cc1e2da557c2aa326501ce9ccd7e0a142036902bfdb05ff'
+'1b668b67134dcbca41193f7987371c6e9ead9853f3ebcb54d5c80a9d0b9decf0'
+'e45629a37d5c305efa26e2b6a68561528762081681e547e312bb058cbff76125'
+'ac768b039c699c63a3cda17518f3a2ec0481dff23e6366f6fb452c819bd5825b')
+
+prepare() {
+cd beats-$pkgver
+
+# Avoid installing extraneous configs
+sed '/[- ]win/d ; /[- ]darwin/d ; /[- ]binary/d' -i */Makefile
+# Install the Linux config as default
+sed -r 's#/([a-z]+)-linux.yml#/\1.yml#' -i */Makefile
+
+# Perform some timestomping to avoid make warnings
+LANG=C _t="$(date -r Makefile +'%Y-%m-%d %k:%M:%S')"
+touch -m -d "$_t" */Makefile
+
+# Workaround to place extracted release into GOPATH
+mkdir -p "$srcdir"/gopath/src/github.com/elastic
+ln -sf "$srcdir"/beats-$pkgver \
+"$srcdir"/gopath/src/github.com/elastic/beats
+}
+
+build() {
+export GOPATH="$srcdir"/gopath
+for beat in ${pkgname[@]}; do
+msg2 "Building $beat..."
+cd "$srcdir"/beats-$pkgver/$beat
+make
+done
+}
+
+package_filebeat() {
+pkgdesc='Collects, pre-processes, and forwards log files from remote 
sources'
+optdepends=('elasticsearch: for standalone installation')
+backup=("etc/$pkgname/$pkgname.yml")
+install="$pkgname.install"
+
+cd beats-$pkgver/$pkgname
+
+install -dm755 "$pkgdir"/var/lib/$pkgname
+
+install -dm755 "$pkgdir"/etc/$pkgname
+make PREFIX="$pkgdir"/etc/$pkgname install-cfg
+
+install -Dm755 $pkgname \
+   "$pkgdir"/usr/bin/$pkgname
+install -Dm644 "$srcdir"/$pkgname.service \
+   "$pkgdir"/usr/lib/systemd/system/$pkgname.service
+
+install -Dm644 "$srcdir"/$pkgname.sysusers \
+   "$pkgdir"/usr/lib/sysusers.d/$pkgname.conf
+}
+
+package_packetbeat() {
+pkgdesc='Open source network packet analyzer that ships data to 
Elasticsearch'
+depends=('libpcap')
+optdepends=('elasticsearch: for standalone installation')
+backup=("etc/$pkgname/$pkgname.yml")
+
+cd beats-$pkgver/$pkgname
+
+install -dm755 "$pkgdir"/etc/$pkgname
+make PREFIX="$pkgdir"/etc/$pkgname install-cfg
+
+install -Dm755 $pkgname \
+   "$pkgdir"/usr/bin/$pkgname
+install -Dm644 "$srcdir"/$pkgname.service \
+   "$pkgdir"/usr/lib/systemd/system/$pkgname.service
+}
+
+package_topbeat() {
+pkgdesc='Open source server monitoring agent that stores metrics in 
Elasticsearch'
+optdepends=('elasticsearch: for standalone installation')
+backup=("etc/$pkgname/$pkgname.yml")
+
+cd beats-$pkgver/$pkgname
+
+install -dm755 "$pkgdir"/etc/$pkgname
+make PREFIX="$pkgdir"/etc/$pkgname install-cfg
+
+install -Dm755 $pkgname \
+   "$pkgdir"/usr/bin/$pkgname
+install -Dm644 "$srcdir"/$pkgname.service \
+   "$pkgdir"/usr/lib/systemd/system/$pkgname.service
+}

Added: beats/trunk/filebeat.install
===
--- beats/trunk/filebeat.install(rev 0)
+++ beats/trunk/filebeat.install2016-07-17 21:53:26 UTC (rev 183036)
@@ -0,0 +1,25 @@
+# Arg 1: the new package version
+post_install() {
+
+  # Create user and group
+  

[arch-commits] Commit in (8 files)

2016-06-02 Thread Felix Yan
Date: Thursday, June 2, 2016 @ 10:30:29
  Author: fyan
Revision: 177694

move pkgbase for letsencrypt packages

Added:
  certbot-apache/
  certbot-nginx/
  certbot/
  letshelp-certbot/
Deleted:
  letsencrypt-apache/
  letsencrypt-nginx/
  letsencrypt/
  letshelp-letsencrypt/


[arch-commits] Commit in (8 files)

2016-05-18 Thread Jonathan Steel
Date: Wednesday, May 18, 2016 @ 17:50:03
  Author: jsteel
Revision: 175618

aws-cli + dep to [community-testing]

Added:
  aws-cli/
  aws-cli/repos/
  aws-cli/trunk/
  aws-cli/trunk/PKGBUILD
  python-botocore/
  python-botocore/repos/
  python-botocore/trunk/
  python-botocore/trunk/PKGBUILD

+
 aws-cli/trunk/PKGBUILD |   30 ++
 python-botocore/trunk/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Added: aws-cli/trunk/PKGBUILD
===
--- aws-cli/trunk/PKGBUILD  (rev 0)
+++ aws-cli/trunk/PKGBUILD  2016-05-18 15:50:03 UTC (rev 175618)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.10.30
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('133b2501fccbbb1c6080115e9bbbd805')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Added: python-botocore/trunk/PKGBUILD
===
--- python-botocore/trunk/PKGBUILD  (rev 0)
+++ python-botocore/trunk/PKGBUILD  2016-05-18 15:50:03 UTC (rev 175618)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.4.20
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('558d123fb987265d5537570f93653b76')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (8 files)

2016-02-11 Thread Felix Yan
Date: Friday, February 12, 2016 @ 06:37:49
  Author: fyan
Revision: 161373

addpkg: lib32-libid3tag 0.15.1b-1

Added:
  lib32-libid3tag/
  lib32-libid3tag/repos/
  lib32-libid3tag/trunk/
  lib32-libid3tag/trunk/10_utf16.diff
  lib32-libid3tag/trunk/11_unknown_encoding.diff
  lib32-libid3tag/trunk/CVE-2008-2109.patch
  lib32-libid3tag/trunk/PKGBUILD
  lib32-libid3tag/trunk/id3tag.pc

--+
 10_utf16.diff|   48 +
 11_unknown_encoding.diff |   37 ++
 CVE-2008-2109.patch  |   11 ++
 PKGBUILD |   45 ++
 id3tag.pc|   10 +
 5 files changed, 151 insertions(+)

Added: lib32-libid3tag/trunk/10_utf16.diff
===
--- lib32-libid3tag/trunk/10_utf16.diff (rev 0)
+++ lib32-libid3tag/trunk/10_utf16.diff 2016-02-12 05:37:49 UTC (rev 161373)
@@ -0,0 +1,48 @@
+#! /bin/sh -e
+## 10_utf16.dpatch by  
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Handle bogus UTF16 sequences that have a length that is not
+## DP: an even number of 8 bit characters.
+
+if [ $# -lt 1 ]; then
+echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
+exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
+
+case "$1" in
+-patch) patch -p1 ${patch_opts} < $0;;
+-unpatch) patch -R -p1 ${patch_opts} < $0;;
+*)
+echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
+exit 1;;
+esac
+
+exit 0
+
+@DPATCH@
+diff -urNad libid3tag-0.15.1b/utf16.c 
/tmp/dpep.tKvO7a/libid3tag-0.15.1b/utf16.c
+--- libid3tag-0.15.1b/utf16.c  2006-01-13 15:26:29.0 +0100
 /tmp/dpep.tKvO7a/libid3tag-0.15.1b/utf16.c 2006-01-13 15:27:19.0 
+0100
+@@ -282,5 +282,18 @@
+ 
+   free(utf16);
+ 
++  if (end == *ptr && length % 2 != 0)
++  {
++ /* We were called with a bogus length.  It should always
++  * be an even number.  We can deal with this in a few ways:
++  * - Always give an error.
++  * - Try and parse as much as we can and
++  *   - return an error if we're called again when we
++  * already tried to parse everything we can.
++  *   - tell that we parsed it, which is what we do here.
++  */
++ (*ptr)++;
++  }
++
+   return ucs4;
+ }

Added: lib32-libid3tag/trunk/11_unknown_encoding.diff
===
--- lib32-libid3tag/trunk/11_unknown_encoding.diff  
(rev 0)
+++ lib32-libid3tag/trunk/11_unknown_encoding.diff  2016-02-12 05:37:49 UTC 
(rev 161373)
@@ -0,0 +1,37 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 11_unknown_encoding.dpatch by Andreas Henriksson 
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: In case of an unknown/invalid encoding, id3_parse_string() will
+## DP: return NULL, but the return value wasn't checked resulting
+## DP: in segfault in id3_ucs4_length().  This is the only place
+## DP: the return value wasn't checked.
+
+@DPATCH@
+diff -urNad libid3tag-0.15.1b~/compat.gperf libid3tag-0.15.1b/compat.gperf
+--- libid3tag-0.15.1b~/compat.gperf2004-01-23 09:41:32.0 +
 libid3tag-0.15.1b/compat.gperf 2007-01-14 14:36:53.0 +
+@@ -236,6 +236,10 @@
+ 
+ encoding = id3_parse_uint(, 1);
+ string   = id3_parse_string(, end - data, encoding, 0);
++if (!string)
++{
++  continue;
++}
+ 
+ if (id3_ucs4_length(string) < 4) {
+   free(string);
+diff -urNad libid3tag-0.15.1b~/parse.c libid3tag-0.15.1b/parse.c
+--- libid3tag-0.15.1b~/parse.c 2004-01-23 09:41:32.0 +
 libid3tag-0.15.1b/parse.c  2007-01-14 14:37:34.0 +
+@@ -165,6 +165,9 @@
+   case ID3_FIELD_TEXTENCODING_UTF_8:
+ ucs4 = id3_utf8_deserialize(ptr, length);
+ break;
++  default:
++  /* FIXME: Unknown encoding! Print warning? */
++  return NULL;
+   }
+ 
+   if (ucs4 && !full) {

Added: lib32-libid3tag/trunk/CVE-2008-2109.patch
===
--- lib32-libid3tag/trunk/CVE-2008-2109.patch   (rev 0)
+++ lib32-libid3tag/trunk/CVE-2008-2109.patch   2016-02-12 05:37:49 UTC (rev 
161373)
@@ -0,0 +1,11 @@
+--- field.c.orig   2008-05-05 09:49:15.0 -0400
 field.c2008-05-05 09:49:25.0 -0400
+@@ -291,7 +291,7 @@
+ 
+   end = *ptr + length;
+ 
+-  while (end - *ptr > 0) {
++  while (end - *ptr > 0 && **ptr != '\0') {
+   ucs4 = id3_parse_string(ptr, end - *ptr, *encoding, 0);
+   if (ucs4 == 0)
+ goto fail;

Added: lib32-libid3tag/trunk/PKGBUILD

[arch-commits] Commit in (8 files)

2016-02-08 Thread Alexander Rødseth
Date: Monday, February 8, 2016 @ 10:13:21
  Author: arodseth
Revision: 160881

Add Compton from AUR (213 votes, MIT license)

Added:
  compton/
  compton/repos/
  compton/repos/community-i686/
  compton/repos/community-x86_64/
  compton/trunk/
  compton/trunk/PKGBUILD
  compton/trunk/compton.conf
  compton/trunk/compton.install

-+
 PKGBUILD|   38 
 compton.conf|  233 ++
 compton.install |   15 +++
 3 files changed, 286 insertions(+)

Added: compton/trunk/PKGBUILD
===
--- compton/trunk/PKGBUILD  (rev 0)
+++ compton/trunk/PKGBUILD  2016-02-08 09:13:21 UTC (rev 160881)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: WorMzy Tykashi 
+# Contributor: OK100 
+# Contributor: Valère Monseur 
+
+pkgname=compton
+pkgver=0.1_beta2
+pkgrel=6
+pkgdesc='Superb X compositor that may fix tearing issues'
+arch=('x86_64' 'i686')
+url='https://github.com/chjj/compton'
+license=('MIT')
+install='compton.install'
+depends=('libgl' 'libdbus' 'libxcomposite' 'libxdamage' 'libxrandr' 'pcre' 
'libconfig' 'libxinerama' 'hicolor-icon-theme')
+makedepends=('asciidoc' 'mesa' 'git' 'cmake')
+optdepends=('dbus:  To control compton via D-Bus'
+'xorg-xwininfo: For compton-trans'
+'xorg-xprop:For compton-trans')
+source=("git://github.com/chjj/compton#tag=v$pkgver"
+'compton.conf')
+sha256sums=('SKIP'
+'89f920e429a28443bf81275927e402b3a953ef8a7160af468ae05913dee5658b')
+
+build() {
+  COMPTON_VERSION=v$pkgver make -C "$pkgname" PREFIX=/usr compton docs
+}
+
+package() {
+  cd "$pkgname"
+
+  make PREFIX="$pkgdir/usr" install
+  install -Dm644 compton.sample.conf "$pkgdir/etc/xdg/compton.conf.example"
+  install -Dm644 ../compton.conf "$pkgdir/etc/xdg/compton.conf"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: compton/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: compton/trunk/compton.conf
===
--- compton/trunk/compton.conf  (rev 0)
+++ compton/trunk/compton.conf  2016-02-08 09:13:21 UTC (rev 160881)
@@ -0,0 +1,233 @@
+# Thank you code_nomad: http://9m.no/ꪯ鵞
+
+#
+#
+# Backend
+#
+#
+
+# Backend to use: "xrender" or "glx".
+# GLX backend is typically much faster but depends on a sane driver.
+backend = "glx";
+
+#
+#
+# GLX backend
+#
+#
+
+glx-no-stencil = true;
+
+# GLX backend: Copy unmodified regions from front buffer instead of redrawing 
them all.
+# My tests with nvidia-drivers show a 10% decrease in performance when the 
whole screen is modified,
+# but a 20% increase when only 1/4 is.
+# My tests on nouveau show terrible slowdown.
+# Useful with --glx-swap-method, as well.
+glx-copy-from-front = false;
+
+# GLX backend: Use MESA_copy_sub_buffer to do partial screen update.
+# My tests on nouveau shows a 200% performance boost when only 1/4 of the 
screen is updated.
+# May break VSync and is not available on some drivers.
+# Overrides --glx-copy-from-front.
+# glx-use-copysubbuffermesa = true;
+
+# GLX backend: Avoid rebinding pixmap on window damage.
+# Probably could improve performance on rapid window content changes, but is 
known to break things on some drivers (LLVMpipe).
+# Recommended if it works.
+# glx-no-rebind-pixmap = true;
+
+
+# GLX backend: GLX buffer swap method we assume.
+# Could be undefined (0), copy (1), exchange (2), 3-6, or buffer-age (-1).
+# undefined is the slowest and the safest, and the default value.
+# copy is fastest, but may fail on some drivers,
+# 2-6 are gradually slower but safer (6 is still faster than 0).
+# Usually, double buffer means 2, triple buffer means 3.
+# buffer-age means auto-detect using GLX_EXT_buffer_age, supported by some 
drivers.
+# Useless with --glx-use-copysubbuffermesa.
+# Partially breaks --resize-damage.
+# Defaults to undefined.
+glx-swap-method = "undefined";
+
+#
+#
+# Shadows
+#
+#
+
+# Enabled client-side shadows on windows.
+shadow = true;
+# Don't draw shadows on DND windows.
+no-dnd-shadow = true;
+# Avoid drawing shadows on dock/panel windows.
+no-dock-shadow = true;
+# Zero the part of the shadow's mask behind the window. Fix some weirdness 
with ARGB windows.
+clear-shadow = true;
+# The blur radius for shadows. (default 12)
+shadow-radius = 5;
+# The left offset for shadows. (default -15)
+shadow-offset-x = -5;
+# The top offset for 

[arch-commits] Commit in (8 files)

2015-12-23 Thread Jiachen Yang
Date: Wednesday, December 23, 2015 @ 12:15:45
  Author: farseerfc
Revision: 154328

addpkg: retext

Added:
  retext/
  retext/repos/
  retext/trunk/
  retext/trunk/PKGBUILD
  retext/trunk/retext.desktop
  retext/trunk/retext.install
  retext/trunk/x-retext-markdown.xml
  retext/trunk/x-retext-rst.xml

---+
 PKGBUILD  |   57 
 retext.desktop|9 +++
 retext.install|   15 
 x-retext-markdown.xml |1 
 x-retext-rst.xml  |1 
 5 files changed, 83 insertions(+)

Added: retext/trunk/PKGBUILD
===
--- retext/trunk/PKGBUILD   (rev 0)
+++ retext/trunk/PKGBUILD   2015-12-23 11:15:45 UTC (rev 154328)
@@ -0,0 +1,57 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Hyacinthe Cartiaux 
+# Contributor: Bartosz Chmura 
+# Contributor: Alessio Sergi 
+# Contributor: alfplayer
+# Contributor: menta
+
+pkgname=retext
+pkgver=5.2.1
+pkgrel=2
+pkgdesc="A simple editor for Markdown and ReStructuredText markup languages"
+arch=('any')
+url="https://github.com/retext-project/retext;
+license=('GPL3')
+# for desktop integration: 'shared-mime-info' 'xdg-utils' 'desktop-file-utils'
+# for toolbar icons (see http://sourceforge.net/p/retext/tickets/44/): 'gconf'
+depends=('python-pyqt5' 'qt5-webkit' 'python-markups' 'shared-mime-info' 
'xdg-utils' 'desktop-file-utils' 'gconf')
+makedepends=('imagemagick')
+optdepends=('python-markdown: for Markdown language support'
+'python-docutils: for reStructuredText language support'
+'python-pyenchant: for spell checking support')
+source=("https://github.com/retext-project/${pkgname}/archive/${pkgver}.tar.gz;
+"${pkgname}.desktop"
+"x-retext-markdown.xml"
+"x-retext-rst.xml")
+install="${pkgname}".install
+sha256sums=('a1ec52bedf65332d817623f8552204a00adb8b7ce54d59359f07a18f821909a1'
+'7782f4402fe62e48335c1bdd5c1fd5cbb48c408fabaf4f018a074f8b3eef838e'
+'b51611479d3224eec2b58264ed91ace3eccb502b7b806dae3e7a3ab4aab8c4b8'
+'6fef80cccb14813d9cc74810c397a6cd7831d1ca243536759a47c6e8b6cc977a')
+
+
+package () {
+cd "$srcdir/retext-${pkgver}"
+python3 setup.py install --root="$pkgdir"
+
+# create /usr/share/* dirs
+_SHAREDIR="$pkgdir/usr/share"
+install -d -m 755 $_SHAREDIR/{applications,mime/packages}
+
+# install icons
+_ICONSDIR="$_SHAREDIR/icons/hicolor"
+for size in 16 22 24 32 48 128; do
+  install -d -m 755 $_ICONSDIR/${size}x${size}/apps
+  convert -resize $size icons/$pkgname.png 
$_ICONSDIR/${size}x${size}/apps/$pkgname.png
+done
+install -d -m 755 $_ICONSDIR/scalable/apps
+install -m 644 icons/$pkgname.svg $_ICONSDIR/scalable/apps/$pkgname.svg
+
+# install mime files
+install -m 644 $srcdir/x-retext-{markdown,rst}.xml 
$_SHAREDIR/mime/packages/
+
+# install desktop file
+install -m 644 $srcdir/$pkgname.desktop 
$_SHAREDIR/applications/$pkgname.desktop
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: retext/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+markdown restructuredtext
\ No newline at end of property
Added: retext/trunk/retext.desktop
===
--- retext/trunk/retext.desktop (rev 0)
+++ retext/trunk/retext.desktop 2015-12-23 11:15:45 UTC (rev 154328)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=ReText
+Comment=Simple text editor for Markdown and ReStructuredText
+Exec=retext %F
+Icon=retext
+Terminal=false
+Type=Application
+Categories=Office;
+MimeType=text/x-retext-markdown;text/x-retext-rst;

Added: retext/trunk/retext.install
===
--- retext/trunk/retext.install (rev 0)
+++ retext/trunk/retext.install 2015-12-23 11:15:45 UTC (rev 154328)
@@ -0,0 +1,15 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor &>/dev/null
+  update-desktop-database -q
+  update-mime-database usr/share/mime &>/dev/null
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:

Added: retext/trunk/x-retext-markdown.xml
===
(Binary files differ)

Index: retext/trunk/x-retext-markdown.xml
===
--- retext/trunk/x-retext-markdown.xml  2015-12-23 10:36:42 UTC (rev 154327)
+++ retext/trunk/x-retext-markdown.xml  2015-12-23 11:15:45 UTC (rev 154328)

Property changes on: retext/trunk/x-retext-markdown.xml
___
Added: svn:mime-type
## -0,0 +1 ##
+application/xml
\ No newline at end 

[arch-commits] Commit in (8 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 11:12:38
  Author: arojas
Revision: 248877

community2extra: Moving cblas from community to extra

Added:
  cblas/
  cblas/repos/
  cblas/trunk/
  cblas/trunk/LICENSE
  cblas/trunk/PKGBUILD
  cblas/trunk/fPIC.patch
  cblas/trunk/sdsdot.patch
  cblas/trunk/shared.patch

--+
 LICENSE  |1 +
 PKGBUILD |   51 +++
 fPIC.patch   |   23 +++
 sdsdot.patch |   19 +++
 shared.patch |   11 +++
 5 files changed, 105 insertions(+)

Added: cblas/trunk/LICENSE
===
(Binary files differ)

Index: cblas/trunk/LICENSE
===
--- cblas/trunk/LICENSE 2015-10-10 22:43:29 UTC (rev 248876)
+++ cblas/trunk/LICENSE 2015-10-11 09:12:38 UTC (rev 248877)

Property changes on: cblas/trunk/LICENSE
___
Added: svn:mime-type
## -0,0 +1 ##
+message/rfc822
\ No newline at end of property
Added: cblas/trunk/PKGBUILD
===
--- cblas/trunk/PKGBUILD(rev 0)
+++ cblas/trunk/PKGBUILD2015-10-11 09:12:38 UTC (rev 248877)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andreas B. Wagner 
+# Contributor: Sebastien Binet pkgname=cblas
+
+pkgname=cblas
+pkgver=3.5.0
+pkgrel=3
+pkgdesc="C interface to BLAS"
+url="http://www.netlib.org/blas;
+arch=(i686 x86_64)
+license=(custom)
+depends=(blas)
+makedepends=(gcc-fortran)
+options=(staticlibs) # needed by fflas-ffpack
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'shared.patch' 
'fPIC.patch' 'sdsdot.patch' 'LICENSE')
+md5sums=('1e8830f622d2112239a4a8a83b84209a'
+ 'e779fc195f8f48672656522bcfd642e4'
+ 'de4a0cf18b0e748e85d3305845f7f99b'
+ '733dcdded7ce1ec6d1ec01ceca200426'
+ '38b6acb8ed5691d25863319d30a8b365')
+
+prepare() {
+  cd CBLAS
+
+# Compile with -fPIC
+  patch -p1 -i "$srcdir"/fPIC.patch
+# Compile shared lib
+  patch -p0 -i "$srcdir"/shared.patch
+# Fix missing variable in sdsdotstub
+  patch -p1 -i "$srcdir"/sdsdot.patch
+
+  cp Makefile.{LINUX,in}
+}
+
+build() {
+  cd CBLAS
+
+  make alllib
+}
+
+package() {
+  install -d "$pkgdir"/usr/lib
+  install -d "$pkgdir"/usr/include
+
+  install -m644 CBLAS/lib/* "$pkgdir"/usr/lib/
+  install -m644 CBLAS/include/*.h "$pkgdir"/usr/include
+
+  install -d "$pkgdir"/usr/share/licenses/cblas
+  install -m644 LICENSE "$pkgdir"/usr/share/licenses/cblas/
+}


Property changes on: cblas/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: cblas/trunk/fPIC.patch
===
--- cblas/trunk/fPIC.patch  (rev 0)
+++ cblas/trunk/fPIC.patch  2015-10-11 09:12:38 UTC (rev 248877)
@@ -0,0 +1,23 @@
+--- CBLAS/Makefile.LINUX.orig  2015-06-14 12:25:24.099556681 +0200
 CBLAS/Makefile.LINUX   2015-06-14 12:25:52.819706410 +0200
+@@ -23,7 +23,8 @@
+ #-
+  
+ BLLIB = libblas.a
+-CBLIB = ../lib/cblas_$(PLAT).a
++CBLIB = ../lib/libcblas.a
++CBSHLIB= ../lib/libcblas.so
+ 
+ #-
+ # Compilers
+@@ -37,8 +38,8 @@
+ # Flags for Compilers
+ #-
+ 
+-CFLAGS = -O3 -DADD_
+-FFLAGS = -O3  
++CFLAGS = -O3 -DADD_ -fPIC
++FFLAGS = -O3 -fPIC
+ 
+ #-
+ # Archive programs and flags

Added: cblas/trunk/sdsdot.patch
===
--- cblas/trunk/sdsdot.patch(rev 0)
+++ cblas/trunk/sdsdot.patch2015-10-11 09:12:38 UTC (rev 248877)
@@ -0,0 +1,19 @@
+--- CBLAS/src/sdsdotsub.f.orig 2015-06-14 13:13:11.353896469 +0200
 CBLAS/src/sdsdotsub.f  2015-06-14 13:13:44.830675890 +0200
+@@ -3,13 +3,13 @@
+ c The program is a fortran wrapper for sdsdot.
+ c Witten by Keita Teranishi.  2/11/1998
+ c
+-  subroutine sdsdotsub(n,x,incx,y,incy,dot)
++  subroutine sdsdotsub(n,sb,x,incx,y,incy,dot)
+ c
+   external sdsdot
+-  real sdsdot,dot
++  real sb,sdsdot,dot
+   integer n,incx,incy
+   real x(*),y(*)
+ c
+-  dot=sdsdot(n,x,incx,y,incy)
++  dot=sdsdot(n,sb,x,incx,y,incy)
+   return
+   end  

Added: cblas/trunk/shared.patch
===
--- cblas/trunk/shared.patch(rev 0)
+++ cblas/trunk/shared.patch2015-10-11 

[arch-commits] Commit in (8 files)

2015-10-11 Thread Antonio Rojas
Date: Sunday, October 11, 2015 @ 20:18:13
  Author: arojas
Revision: 143698

Add generic build of atlas-lapack

Added:
  atlas-lapack-base/
  atlas-lapack-base/trunk/
  atlas-lapack-base/trunk/Makefile
  atlas-lapack-base/trunk/PKGBUILD
  atlas-lapack-base/trunk/atlas-lapack-base.install
  atlas-lapack-base/trunk/atlas-license.txt
  atlas-lapack-base/trunk/blas-license.txt
  atlas-lapack-base/trunk/disable-throttling-check.patch

+
 Makefile   |   24 +
 PKGBUILD   |   68 +++
 atlas-lapack-base.install  |9 +
 atlas-license.txt  |   29 
 blas-license.txt   |   20 +++
 disable-throttling-check.patch |   13 +++
 6 files changed, 163 insertions(+)

Added: atlas-lapack-base/trunk/Makefile
===
--- atlas-lapack-base/trunk/Makefile(rev 0)
+++ atlas-lapack-base/trunk/Makefile2015-10-11 18:18:13 UTC (rev 143698)
@@ -0,0 +1,24 @@
+include Make.inc
+
+all: libatlas.so libf77blas.so libcblas.so libblas.so liblapack.so
+
+
+libatlas.so: libatlas.a
+   ld $(LDFLAGS) -shared -soname $@ -o $@ --whole-archive libatlas.a \
+  --no-whole-archive -lc $(LIBS)
+
+libf77blas.so : libf77blas.a libatlas.so
+   ld $(LDFLAGS) -shared -soname libblas.so.3 -o $@ --whole-archive \
+  libf77blas.a --no-whole-archive $(F77SYSLIB) -L. -latlas
+
+libcblas.so : libcblas.a libatlas.so
+   ld $(LDFLAGS) -shared -soname $@ -o $@ --whole-archive libcblas.a \
+   -L. -latlas
+
+libblas.so: libf77blas.so
+   ln -s $< $@
+
+liblapack.so : liblapack.a libcblas.so libblas.so
+   ld $(LDFLAGS) -shared -soname liblapack.so.3 -o $@ --whole-archive \
+  liblapack.a --no-whole-archive $(F77SYSLIB) -L. -lcblas -lblas 
-lgcc_s
+

Added: atlas-lapack-base/trunk/PKGBUILD
===
--- atlas-lapack-base/trunk/PKGBUILD(rev 0)
+++ atlas-lapack-base/trunk/PKGBUILD2015-10-11 18:18:13 UTC (rev 143698)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Giuseppe Borzi 
+# Contributor: mickele 
+# Contributor: iztok pizorn 
+# Contributor: olivier medoc 
+
+pkgname=atlas-lapack-base
+pkgver=3.10.2
+_lapackver=3.5.0
+pkgrel=1
+pkgdesc="Complete LAPACK and BLAS implementation using optimized ATLAS 
routines"
+url="http://math-atlas.sourceforge.net/;
+depends=(gcc-libs)
+makedepends=(gcc-fortran)
+arch=(i686 x86_64)
+conflicts=(blas cblas lapack)
+provides=(blas cblas 'lapack=$_lapackver' atlas-lapack)
+license=(custom:blas custom:lapack custom:atlas)
+options=(!makeflags)
+source=(http://www.netlib.org/lapack/lapack-$_lapackver.tgz 
http://downloads.sourceforge.net/math-atlas/atlas${pkgver}.tar.bz2 
blas-license.txt 
+atlas-license.txt Makefile disable-throttling-check.patch)
+noextract=(lapack-$_lapackver.tgz)
+install=$pkgname.install
+md5sums=('b1d3e3e425b2e44a06760ff173104bdf'
+ 'a4e21f343dec8f22e7415e339f09f6da'
+ 'e8e512ee7a2d550139dcd765f127816b'
+ '4903eb06072dfbf94710691ccb6660bf'
+ 'd598a27d392d41b00f8e440f1f8fc2a4'
+ '54f80b9a56f13f960017460c36b725ce')
+
+prepare() {
+  mkdir -p ATLAS/build
+
+# override throttling check (Fedora)
+  patch -p0 -i disable-throttling-check.patch
+}
+
+build() {
+  if [ "$CARCH" = "x86_64" ]; then
+ ARCHITECTURE_BUILD_OPTS="-b 64 -A x86SSE3" # for x86_64
+  else
+ ARCHITECTURE_BUILD_OPTS="-b 32 -A x86SSE2" # for i686
+  fi
+
+  cd ATLAS/build
+  ../configure --prefix=/usr/ $ARCHITECTURE_BUILD_OPTS -Fa alg -fPIC -Si 
latune 0 -t 0 \
+ --with-netlib-lapack-tarfile="$srcdir"/lapack-$_lapackver.tgz
+  make build
+
+# build shared libraries
+  cd lib
+  cp "$srcdir"/Makefile .
+  make
+}
+
+package() {
+  cd ATLAS/build
+
+  make DESTDIR="$pkgdir"/usr install
+  cp -d lib/*.so* "$pkgdir"/usr/lib
+  ln -sr "$pkgdir"/usr/lib/libblas.so{,.3}
+  ln -sr "$pkgdir"/usr/lib/liblapack.so{,.3}
+
+  install -Dm644 "$srcdir"/blas-license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/blas-license.txt
+  install -Dm644 "$srcdir"/ATLAS/build/src/lapack/reference/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/lapack-license.txt
+  install -Dm644 "$srcdir"/atlas-license.txt 
"$pkgdir"/usr/share/licenses/$pkgname/atlas-license.txt
+}


Property changes on: atlas-lapack-base/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: atlas-lapack-base/trunk/atlas-lapack-base.install
===
--- atlas-lapack-base/trunk/atlas-lapack-base.install   
(rev 0)
+++ atlas-lapack-base/trunk/atlas-lapack-base.install   2015-10-11 18:18:13 UTC 
(rev 143698)
@@ -0,0 +1,9 @@

[arch-commits] Commit in (8 files)

2015-10-09 Thread Maxime Gauduin
Date: Friday, October 9, 2015 @ 14:35:59
  Author: alucryd
Revision: 143495

Bump lib32-pango and add new deps

Added:
  lib32-libdatrie/
  lib32-libdatrie/trunk/
  lib32-libdatrie/trunk/PKGBUILD
  lib32-libthai/
  lib32-libthai/trunk/
  lib32-libthai/trunk/PKGBUILD
Modified:
  lib32-pango/trunk/PKGBUILD
  lib32-pango/trunk/pango.install

-+
 lib32-libdatrie/trunk/PKGBUILD  |   39 ++
 lib32-libthai/trunk/PKGBUILD|   39 ++
 lib32-pango/trunk/PKGBUILD  |   12 +--
 lib32-pango/trunk/pango.install |4 ---
 4 files changed, 85 insertions(+), 9 deletions(-)

Added: lib32-libdatrie/trunk/PKGBUILD
===
--- lib32-libdatrie/trunk/PKGBUILD  (rev 0)
+++ lib32-libdatrie/trunk/PKGBUILD  2015-10-09 12:35:59 UTC (rev 143495)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Jan de Groot 
+# Contributor: Chaiwat Suttipongsakul 
+
+pkgname=lib32-libdatrie
+pkgver=0.2.9
+pkgrel=1
+pkgdesc='Implementation of double-array structure for representing trie, as 
proposed by Junichi Aoe.'
+url='http://linux.thai.net/projects/datrie'
+license=('LGPL')
+arch=('x86_64')
+depends=('lib32-glibc' 'libdatrie')
+makedepends=('gcc-multilib')
+source=("http://linux.thai.net/pub/thailinux/software/libthai/libdatrie-${pkgver}.tar.xz;)
+sha256sums=('d980713e7ad8e19cf3b54ee0173782b94332af8e7e4e936dde01d2cd72e1da1d')
+
+build() {
+  cd libdatrie-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-static
+  make
+}
+
+package() {
+  cd libdatrie-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: lib32-libdatrie/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: lib32-libthai/trunk/PKGBUILD
===
--- lib32-libthai/trunk/PKGBUILD(rev 0)
+++ lib32-libthai/trunk/PKGBUILD2015-10-09 12:35:59 UTC (rev 143495)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Jan de Groot 
+# Contributor: Chaiwat Suttipongsakul 
+
+pkgname=lib32-libthai
+pkgver=0.1.22
+pkgrel=1
+pkgdesc='Thai language support routines'
+url='http://linux.thai.net/projects/libthai'
+arch=('x86_64')
+license=('LGPL')
+depends=('lib32-libdatrie')
+makedepends=('gcc-multilib')
+source=("http://linux.thai.net/pub/thailinux/software/libthai/libthai-${pkgver}.tar.xz;)
+sha256sums=('bdb291dcc3a6784e86b1b342ec75005e9ab487f8c1decc7c3e7d18d1bbc9b7b7')
+
+build() {
+  cd libthai-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-static
+  make
+}
+
+package() {
+  cd libthai-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{include,share}
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: lib32-libthai/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Modified: lib32-pango/trunk/PKGBUILD
===
--- lib32-pango/trunk/PKGBUILD  2015-10-09 10:36:47 UTC (rev 143494)
+++ lib32-pango/trunk/PKGBUILD  2015-10-09 12:35:59 UTC (rev 143495)
@@ -5,17 +5,19 @@
 
 _pkgbasename=pango
 pkgname=lib32-$_pkgbasename
-pkgver=1.36.8
+pkgver=1.38.0
 pkgrel=1
 pkgdesc="A library for layout and rendering of text (32-bit)"
 arch=('x86_64')
 license=('LGPL')
-makedepends=("gcc-multilib" 'lib32-fontconfig' \
- 'lib32-mesa-libgl' 'lib32-cairo' 'lib32-libxft' 'lib32-harfbuzz' 
$_pkgbasename)
+depends=('lib32-libthai' 'lib32-mesa-libgl' 'lib32-cairo' 'lib32-libxft'
+ $_pkgbasename)
+makedepends=('gcc-multilib')
+options=('!emptydirs')
 install=pango.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/${pkgver:0:4}/${_pkgbasename}-${pkgver}.tar.xz)
 url="http://www.pango.org/;
-sha256sums=('18dbb51b8ae12bae0ab7a958e7cf3317c9acfc8a1e1103ec2f147164a0fc2d07')
+sha256sums=('1d4e75974bad853ee9ac5fc5caee5e7ab235abbd945d51d01f3806e04e7c226c')
 
 prepare() {
   cd "${srcdir}/${_pkgbasename}-${pkgver}"
@@ -38,11 +40,9 @@
 }
 
 package() {
-  depends=('lib32-cairo' 'lib32-libxft' 'lib32-harfbuzz' $_pkgbasename)
   cd "${srcdir}/${_pkgbasename}-${pkgver}"
 
   make DESTDIR="${pkgdir}" install
   rm -rf "$pkgdir"/etc
   rm -rf 

[arch-commits] Commit in (8 files)

2015-08-19 Thread Antonio Rojas
Date: Wednesday, August 19, 2015 @ 09:32:09
  Author: arojas
Revision: 244161

Merge kde-unstable

Added:
  libkgapi/trunk/
  libkolab/trunk/
  libkolab/trunk/PKGBUILD
(from rev 243758, libkolab/kde-unstable/PKGBUILD)
  libkolab/trunk/fix-build.patch
(from rev 243758, libkolab/kde-unstable/fix-build.patch)
Deleted:
  libkgapi/trunk/
  libkolab/trunk/
  libkolab/trunk/PKGBUILD
  libkolab/trunk/check_for_generic_tag.patch

+
 PKGBUILD   |   33 ---
 check_for_generic_tag.patch|   44 -
 libkolab/trunk/PKGBUILD|   38 ++
 libkolab/trunk/fix-build.patch |   67 +++
 4 files changed, 105 insertions(+), 77 deletions(-)

Deleted: libkolab/trunk/PKGBUILD
===
--- libkolab/kde-unstable/PKGBUILD  2015-08-15 02:17:14 UTC (rev 243721)
+++ libkolab/trunk/PKGBUILD 2015-08-19 07:32:09 UTC (rev 244161)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintaier: Antonio Rojas aro...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkolab
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=Advanced Kolab Object Handling Library
-url='http://git.kolab.org/libkolab/'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
-makedepends=(extra-cmake-modules kdoctools boost)
-source=(http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz{,.gpg})
-md5sums=('3670aae0d6b2ad32f65abd65352e79eb'
- 'c88d8e0945048f798a85b38e9d401460')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: libkolab/trunk/PKGBUILD (from rev 243758, 
libkolab/kde-unstable/PKGBUILD)
===
--- libkolab/trunk/PKGBUILD (rev 0)
+++ libkolab/trunk/PKGBUILD 2015-08-19 07:32:09 UTC (rev 244161)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintaier: Antonio Rojas aro...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkolab
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=Advanced Kolab Object Handling Library
+url='http://git.kolab.org/libkolab/'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libkolabxml akonadi-notes akonadi-client kcontacts kcalutils)
+makedepends=(extra-cmake-modules kdoctools boost)
+source=(http://mirror.kolabsys.com/pub/releases/$pkgname-$pkgver.tar.gz{,.gpg}
 'fix-build.patch')
+md5sums=('3e6a023da106fd6723f92cf96aad47c6'
+ 'e406079c5bd1bbc5eab96d9dead42714'
+ '46198b207b39d9f067812ce10114ab19')
+
+prepare() {
+  mkdir -p build
+
+# Fix build against kcontacts 15.08
+  cd $pkgname-$pkgver
+  patch -p1 -i $srcdir/fix-build.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: libkolab/trunk/check_for_generic_tag.patch
===
--- libkolab/kde-unstable/check_for_generic_tag.patch   2015-08-15 02:17:14 UTC 
(rev 243721)
+++ libkolab/trunk/check_for_generic_tag.patch  2015-08-19 07:32:09 UTC (rev 
244161)
@@ -1,44 +0,0 @@
-From 34edc0a846b87570c06a5942b458adb720a34a9b Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Sandro=20Knau=C3=9F?= m...@sandroknauss.de
-Date: Tue, 10 Feb 2015 10:59:18 +0100
-Subject: Make libkolab compile with upstream kdepimlibs
-
-Because GENERIC tags have not entered upstream, we have to test for
-support. Our integration branch not supports a feature flag to indicate
-the availability of that feature.
-
-KOLAB: #4448
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 365edac..bd53e27 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -78,6 +78,11 @@ add_definitions( 
-DKDEPIMLIBS_VERSION_MAJOR=${KdepimLibs_VERSION_MAJOR} )
- add_definitions( -DKDEPIMLIBS_VERSION_MINOR=${KdepimLibs_VERSION_MINOR} )
- add_definitions( -DKDEPIMLIBS_VERSION_PATCH=${KdepimLibs_VERSION_PATCH} )
- 
-+#Tag::GENERIC is only available at the moment at the kolab/integration 
branches
-+if (KDEPIMLIBS_HAS_GENERIC_TAG)
-+add_definitions( -DKDEPIMLIBS_HAS_GENERIC_TAG)
-+endif()
-+
- if(${KdepimLibs_VERSION} VERSION_GREATER 4.8.40 OR USE_LIBCALENDARING)
- add_definitions(-DKDEPIMLIBS_VERSION_DEVEL)
- endif()
-diff --git a/kolabformat/kolabobject.cpp b/kolabformat/kolabobject.cpp
-index 681b4a5..e5c404d 100644
 a/kolabformat/kolabobject.cpp
-+++ b/kolabformat/kolabobject.cpp
-@@ -435,8 +435,11 @@ ObjectType KolabObjectReader::Private::readKolabV3(const 
KMime::Message::Ptr ms
- mTag = Akonadi::Tag();
- mTag.setName(Conversion::fromStdString(relation.name()));
- 

[arch-commits] Commit in (8 files)

2015-05-15 Thread Sébastien Luttringer
Date: Saturday, May 16, 2015 @ 01:21:41
  Author: seblu
Revision: 239422

Addition of ceph

In extra in order to target support in qemu

Added:
  ceph/
  ceph/repos/
  ceph/trunk/
  ceph/trunk/PKGBUILD
  ceph/trunk/ceph-mds@.service
  ceph/trunk/ceph-mon@.service
  ceph/trunk/ceph-osd@.service
  ceph/trunk/ceph.install

---+
 PKGBUILD  |   93 
 ceph-mds@.service |   14 +++
 ceph-mon@.service |   14 +++
 ceph-osd@.service |   14 +++
 ceph.install  |9 +
 5 files changed, 144 insertions(+)

Added: ceph/trunk/PKGBUILD
===
--- ceph/trunk/PKGBUILD (rev 0)
+++ ceph/trunk/PKGBUILD 2015-05-15 23:21:41 UTC (rev 239422)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Ido Rosen i...@kernel.org
+# Contributor: Evan Teitelman teitelmane...@gmail.com
+# Contributor: Eric Renfro eren...@gmail.com
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Marti Raudsepp ma...@juffo.org
+# Contributor: Sandman the0sand...@hotmail.com
+# Contributor: raw s...@rw23.de
+# Contributor: Dave Simons miou...@gmail.com
+# Contributor: David Anderson d...@natulte.net
+# Contributor: Joe Julian m...@joejulian.name
+# Contributor: Emil Renner Berthing es...@mailme.dk
+
+pkgname=ceph
+pkgver=9.0.0
+pkgrel=1
+pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
+arch=('x86_64' 'i686')
+url='http://ceph.com/'
+license=('GPL')
+depends=('libedit' 'libsigc++' 'gtkmm' 'btrfs-progs' 'crypto++'
+ 'gperftools' 'python2' 'fuse' 'keyutils'
+ 'libatomic_ops' 'curl' 'libaio' 'fcgi' 'expat' 'boost'
+ 'leveldb' 'xfsprogs')
+makedepends=('boost' 'boost-libs' 'yasm')
+install=ceph.install
+options=('!libtool' 'emptydirs')
+source=(http://ceph.com/download/$pkgname-$pkgver.tar.bz2;
+'ceph-osd@.service'
+'ceph-mon@.service'
+'ceph-mds@.service'
+'ceph.install')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # fix python scripts to use python2
+  find . -type f -exec sed -i 's,^#!/usr/bin/env python$,#!/usr/bin/env 
python2,g' {} \;
+  # Some python scripts are autogenerated through Makefiles. Fix those
+  # too, or /usr/bin/ceph will have the wrong shebang.
+  find . -type f -exec sed -i 's,#!/usr/bin/env python,#!/usr/bin/env 
python2,g' {} \;
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  LIBS=-lpthread -lboost_system PYTHON=/usr/bin/python2 LDFLAGS= 
./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-radosgw
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -dm755 $pkgdir/var/run/ceph $pkgdir/var/log/ceph \
+$pkgdir/etc/rc.d $pkgdir/etc/ceph
+
+  # Systemd.
+  install -dm755 $pkgdir/usr/lib/systemd/system
+  install -Dm644 $srcdir/ceph-osd@.service 
$pkgdir/usr/lib/systemd/system/ceph-osd@.service
+  install -Dm644 $srcdir/ceph-mon@.service 
$pkgdir/usr/lib/systemd/system/ceph-mon@.service
+  install -Dm644 $srcdir/ceph-mds@.service 
$pkgdir/usr/lib/systemd/system/ceph-mds@.service
+  install -Dm755 src/init-ceph $pkgdir/etc/rc.d/ceph
+
+  # Ceph udev rules.
+  install -Dm644 udev/50-rbd.rules 
$pkgdir/usr/lib/udev/rules.d/50-rbd.rules
+  install -Dm644 udev/60-ceph-partuuid-workaround.rules \
+$pkgdir/usr/lib/udev/rules.d/60-ceph-partuuid-workaround.rules
+  install -Dm644 udev/95-ceph-osd-alt.rules 
$pkgdir/usr/lib/udev/rules.d/95-ceph-osd.rules
+
+  # Fix bin directory.
+  mv $pkgdir/sbin/* $pkgdir/usr/bin
+  rmdir $pkgdir/sbin
+
+  # Sample config.
+  install -Dm644 $pkgdir/usr/share/doc/ceph/sample.ceph.conf \
+$pkgdir/etc/ceph/ceph.conf.sample
+
+  # License.
+  install -Dm644 COPYING \
+$pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  # Clean up.
+  rm -rf $pkgdir/var/run
+}


Property changes on: ceph/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: ceph/trunk/ceph-mds@.service
===
--- ceph/trunk/ceph-mds@.service(rev 0)
+++ ceph/trunk/ceph-mds@.service2015-05-15 23:21:41 UTC (rev 239422)
@@ -0,0 +1,14 @@
+[Unit]
+Description=CephFS MDS %i
+Requires=network.target
+After=network.target
+
+[Service]
+Type=simple
+Restart=always
+RestartSec=2s
+ExecStart=/usr/bin/ceph-mds -f -i %i
+
+[Install]
+WantedBy=multi-user.target
+

Added: ceph/trunk/ceph-mon@.service
===
--- ceph/trunk/ceph-mon@.service(rev 0)
+++ ceph/trunk/ceph-mon@.service2015-05-15 23:21:41 UTC (rev 239422)
@@ -0,0 +1,14 @@
+[Unit]

[arch-commits] Commit in (8 files)

2015-03-20 Thread Alexander Rødseth
Date: Friday, March 20, 2015 @ 17:34:54
  Author: arodseth
Revision: 129638

Adding libutf8proc, needed by netsurf 3.3

Added:
  libutf8proc/
  libutf8proc/repos/
  libutf8proc/repos/community-i686/
  libutf8proc/repos/community-x86_64/
  libutf8proc/trunk/
  libutf8proc/trunk/PKGBUILD
  libutf8proc/trunk/utf8proc-1.1.6-buildflags.patch
  libutf8proc/trunk/utf8proc-1.1.6-soname.patch

-+
 PKGBUILD|   40 ++
 utf8proc-1.1.6-buildflags.patch |   11 ++
 utf8proc-1.1.6-soname.patch |   11 ++
 3 files changed, 62 insertions(+)

Added: libutf8proc/trunk/PKGBUILD
===
--- libutf8proc/trunk/PKGBUILD  (rev 0)
+++ libutf8proc/trunk/PKGBUILD  2015-03-20 16:34:54 UTC (rev 129638)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 128666 2015-03-03 20:56:05Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: lolilolicon #moc.liamg@nocilolilol.reverse
+
+pkgname=libutf8proc
+pkgver=1.1.6
+pkgrel=1
+pkgdesc='C library for processing UTF-8 encoded Unicode strings'
+arch=('x86_64' 'i686')
+url='http://julialang.org/utf8proc/'
+license=('custom')
+makedepends=('git')
+source=(git://github.com/JuliaLang/utf8proc.git#tag=v$pkgver
+utf8proc-1.1.6-buildflags.patch
+utf8proc-1.1.6-soname.patch)
+md5sums=('SKIP'
+ 'e19f11bf48fd814f6b355df8de37385b'
+ '7801006b616145f3f8ebf1b4a668509a')
+
+prepare() {
+  cd utf8proc
+
+  # added by lolilolicon, not sure if still needed
+  patch -Np1 -i ../utf8proc-1.1.6-buildflags.patch
+  patch -Np1 -i ../utf8proc-1.1.6-soname.patch
+}
+
+build() {
+  make -C utf8proc libutf8proc.so
+}
+
+package() {
+  cd utf8proc
+
+  install -Dm755 libutf8proc.so $pkgdir/usr/lib/libutf8proc.so
+  install -Dm644 utf8proc.h $pkgdir/usr/include/utf8proc.h
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Added: libutf8proc/trunk/utf8proc-1.1.6-buildflags.patch
===
--- libutf8proc/trunk/utf8proc-1.1.6-buildflags.patch   
(rev 0)
+++ libutf8proc/trunk/utf8proc-1.1.6-buildflags.patch   2015-03-20 16:34:54 UTC 
(rev 129638)
@@ -0,0 +1,11 @@
+--- a/Makefile 2014-01-26 18:55:57.400996757 +
 b/Makefile 2014-01-26 19:00:10.264164095 +
+@@ -3,7 +3,7 @@
+ 
+ # settings
+ 
+-cflags = -O2 -std=c99 -pedantic -Wall -fpic $(CFLAGS)
++cflags = -std=c99 -pedantic -fpic $(CFLAGS)
+ cc = $(CC) $(cflags)
+ 
+ 

Added: libutf8proc/trunk/utf8proc-1.1.6-soname.patch
===
--- libutf8proc/trunk/utf8proc-1.1.6-soname.patch   
(rev 0)
+++ libutf8proc/trunk/utf8proc-1.1.6-soname.patch   2015-03-20 16:34:54 UTC 
(rev 129638)
@@ -0,0 +1,11 @@
+--- a/Makefile 2014-01-26 19:01:17.723542649 +
 b/Makefile 2014-01-26 19:02:24.532907919 +
+@@ -34,7 +34,7 @@
+   ar rs libutf8proc.a utf8proc.o
+ 
+ libutf8proc.so: utf8proc.o
+-  $(cc) -shared -o libutf8proc.so utf8proc.o
++  $(cc) -Wl,-soname,libutf8proc.so -shared -o libutf8proc.so utf8proc.o
+   chmod a-x libutf8proc.so
+ 
+ libutf8proc.dylib: utf8proc.o


[arch-commits] Commit in (8 files)

2015-01-24 Thread Andrea Scarpino
Date: Saturday, January 24, 2015 @ 11:13:38
  Author: andrea
Revision: 126491

extra2community: Moving cinepaint from extra to community

Added:
  cinepaint/
  cinepaint/repos/
  cinepaint/trunk/
  cinepaint/trunk/LICENSE
  cinepaint/trunk/PKGBUILD
  cinepaint/trunk/cinepaint-libpng15.patch
  cinepaint/trunk/cinepaint-missing-include.patch
  cinepaint/trunk/cinepaint.install

-+
 LICENSE |   25 ++
 PKGBUILD|   54 
 cinepaint-libpng15.patch|  452 ++
 cinepaint-missing-include.patch |   11 
 cinepaint.install   |   11 
 5 files changed, 553 insertions(+)

Added: cinepaint/trunk/LICENSE
===
--- cinepaint/trunk/LICENSE (rev 0)
+++ cinepaint/trunk/LICENSE 2015-01-24 10:13:38 UTC (rev 126491)
@@ -0,0 +1,25 @@
+Copyright (c) 2005, Kai-Uwe Behrmann
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met: 
+* Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer. 
+* Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following
+disclaimer in the documentation and/or other materials provided
+with the distribution.ntributors may be used to endorse or promote
+products derived from this software without specific prior written
+permission. 
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 

Added: cinepaint/trunk/PKGBUILD
===
--- cinepaint/trunk/PKGBUILD(rev 0)
+++ cinepaint/trunk/PKGBUILD2015-01-24 10:13:38 UTC (rev 126491)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer:
+# Contributor: tobias [tobias.archlinux.org]
+
+pkgname=cinepaint
+_realver=1.0-4
+pkgver=${_realver/-/.}
+pkgrel=2
+epoch=1
+pkgdesc=Sophisticated graphics manipulation programm supporting  8bit 
pictures
+arch=('i686' 'x86_64')
+license=('LGPL' 'GPL' 'MIT')
+url=http://www.cinepaint.org;
+depends=('gtk2' 'openexr' 'lcms' 'libxpm' 'fltk' 'ftgl' 'libxxf86vm')
+makedepends=('python2' 'gutenprint=5.2.9' 'optipng')
+optdepends=('python2: for python plug-ins'
+'gutenprint: for print plug-ins'
+'ghostscript: for pdf plug-ins')
+install=cinepaint.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$_realver.tar.gz
+LICENSE cinepaint-libpng15.patch)
+sha1sums=('2049958784d211cc0be8f41f3473433479ba71fe'
+  'ca8411db87f3fc51bbdfade22f4e1f555b2ee19e'
+  '3dfc9f06f02791aee59b60d33ddf9d305b0f1de5')
+
+prepare() {
+  cd $pkgname-$_realver
+  patch -p1 -i ../cinepaint-libpng15.patch
+  find . -name \*.png -exec optipng -quiet -force -fix {} +
+}
+
+build() {
+  export LDFLAGS=$LDFLAGS -lstdc++ -lm -lX11
+
+  cd $pkgname-$_realver
+  ./configure --prefix=/usr \
+--libdir=/usr/lib --mandir=/usr/share/man \
+--enable-gtk2 --enable-pygimp --with-python=/usr/bin/python2
+
+  find . -name Makefile -exec sed -i 's/-Wl,,/-Wl,/g' {} +
+
+  make
+}
+
+package() {
+  cd $pkgname-$_realver
+  make DESTDIR=$pkgdir install
+
+  sed -i -e s|-I$srcdir/cinepaint|| -e s|-I$srcdir/cinepaint/lib|| \
+-e /libcinepaint.la/d -e s|$srcdir/cinepaint/lib/.libs/\$dlname|| \
+$pkgdir/usr/bin/cinepainttool
+  sed -i s/cinepaint.png/cinepaint/ 
$pkgdir/usr/share/applications/cinepaint.desktop
+  install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: cinepaint/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: cinepaint/trunk/cinepaint-libpng15.patch
===
--- cinepaint/trunk/cinepaint-libpng15.patch(rev 0)
+++ cinepaint/trunk/cinepaint-libpng15.patch2015-01-24 10:13:38 UTC (rev 
126491)
@@ -0,0 +1,452 @@
+diff -Naur cinepaint.old/plug-ins/png/png.c 

[arch-commits] Commit in (8 files)

2015-01-15 Thread Felix Yan
Date: Thursday, January 15, 2015 @ 12:13:01
  Author: fyan
Revision: 229039

kate moved to kf5

Added:
  kate/
  kate/trunk/kate.install
  kate/trunk/katepart.install
(from rev 228052, kdesdk-kate/trunk/kdebase-katepart.install)
  kate/trunk/kwrite.install
(from rev 228052, kdesdk-kate/trunk/kdebase-kwrite.install)
Modified:
  kate/trunk/PKGBUILD
Deleted:
  kate/trunk/kdebase-katepart.install
  kate/trunk/kdebase-kwrite.install
  kdesdk-kate/

--+
 PKGBUILD |   58 -
 kate.install |   13 ++
 katepart.install |   11 
 kdebase-katepart.install |   11 
 kdebase-kwrite.install   |   12 -
 kwrite.install   |   12 +
 6 files changed, 62 insertions(+), 55 deletions(-)

Modified: kate/trunk/PKGBUILD
===
--- kdesdk-kate/trunk/PKGBUILD  2014-12-25 23:20:06 UTC (rev 228052)
+++ kate/trunk/PKGBUILD 2015-01-15 11:13:01 UTC (rev 229039)
@@ -1,25 +1,23 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
 
-pkgbase=kdesdk-kate
-pkgname=('kdebase-katepart'
- 'kdebase-kwrite'
- 'kdesdk-kate')
-pkgver=4.14.3
+pkgbase=kate
+pkgname=('kwrite'
+ 'kate')
+pkgver=14.12.1
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
-makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python')
-source=(http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.xz;
-'pkgbuild-syntax-highlight.patch')
-sha1sums=('da37195e86b5449fcdfe69a3f7df6373a5da900c'
-  '80c324c9db81c07a02374e7a092d75e0bdd6b4ea')
+depends=('knewstuff' 'ktexteditor' 'plasma-framework' 'threadweaver' 'kinit' 
'kitemmodels')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kate-${pkgver}.tar.xz;)
+sha1sums=('e7097f07f9876c44e482a88d7fdae0db92aa2359')
 
 prepare() {
   mkdir build
 
   cd kate-${pkgver}
-  patch -p1 -i ${srcdir}/pkgbuild-syntax-highlight.patch
 }
 
 build() {
@@ -26,27 +24,22 @@
   cd build
   cmake ../kate-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
   make
 }
 
-package_kdebase-katepart() {
-  pkgdesc=A fast and feature-rich text editor component
-  depends=('kdelibs')
-  url=http://kate-editor.org/about-katepart/;
-  install='kdebase-katepart.install'
-
-  cd build/part
-  make DESTDIR=${pkgdir} install
-}
-
-package_kdebase-kwrite() {
+package_kwrite() {
   pkgdesc=Text Editor
-  depends=('kdebase-runtime' 'kdebase-katepart')
   groups=('kde' 'kdebase')
   url=http://www.kde.org/applications/utilities/kwrite/;
-  install='kdebase-kwrite.install'
+  install='kwrite.install'
+  replaces=('kdebase-kwrite')
+  conflicts=('kdebase-kwrite')
+  provides=('kdebase-kwrite')
 
   cd build/kwrite
   make DESTDIR=${pkgdir} install
@@ -55,14 +48,15 @@
   make DESTDIR=${pkgdir} install
 }
 
-package_kdesdk-kate() {
+package_kate() {
   pkgdesc=Advanced Text Editor
-  depends=('kdebase-runtime' 'kdebase-katepart' 'qjson')
   groups=('kde' 'kdesdk')
   url=http://www.kde.org/applications/utilities/kate/;
-  install='kdesdk-kate.install'
-  optdepends=('kdebase-konsole: open a terminal in Kate'
-  'kdebindings-python: python bindings')
+  install='kate.install'
+  replaces=('kdesdk-kate')
+  conflicts=('kdesdk-kate')
+  provides=('kdesdk-kate')
+  optdepends=('konsole: open a terminal in Kate')
 
   cd build/kate
   make DESTDIR=${pkgdir} install

Added: kate/trunk/kate.install
===
--- kate/trunk/kate.install (rev 0)
+++ kate/trunk/kate.install 2015-01-15 11:13:01 UTC (rev 229039)
@@ -0,0 +1,13 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: kate/trunk/katepart.install (from rev 228052, 
kdesdk-kate/trunk/kdebase-katepart.install)
===
--- kate/trunk/katepart.install (rev 0)
+++ kate/trunk/katepart.install 2015-01-15 11:13:01 UTC (rev 229039)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: kate/trunk/kdebase-katepart.install
===
--- 

[arch-commits] Commit in (8 files)

2015-01-12 Thread Sergej Pupykin
Date: Monday, January 12, 2015 @ 19:20:58
  Author: spupykin
Revision: 125847

Added:
  perl-net-ip-minimal/
  perl-net-ip-minimal/repos/
  perl-net-ip-minimal/trunk/
  perl-net-ip-minimal/trunk/PKGBUILD
  perl-poe-component-resolver/
  perl-poe-component-resolver/repos/
  perl-poe-component-resolver/trunk/
  perl-poe-component-resolver/trunk/PKGBUILD

+
 perl-net-ip-minimal/trunk/PKGBUILD |   26 ++
 perl-poe-component-resolver/trunk/PKGBUILD |   27 +++
 2 files changed, 53 insertions(+)

Added: perl-net-ip-minimal/trunk/PKGBUILD
===
--- perl-net-ip-minimal/trunk/PKGBUILD  (rev 0)
+++ perl-net-ip-minimal/trunk/PKGBUILD  2015-01-12 18:20:58 UTC (rev 125847)
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 116706 2014-08-01 11:52:41Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=perl-net-ip-minimal
+pkgver=0.06
+pkgrel=1
+pkgdesc=Perl/CPAN Module Net::IP::Minimal
+arch=(any)
+url=http://search.cpan.org/dist/Net-IP-Minimal;
+license=(GPL PerlArtistic)
+depends=(perl)
+source=(http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Net-IP-Minimal-$pkgver.tar.gz;)
+md5sums=('249981458e9502b877145153dac3b9cf')
+
+build() {
+  cd $srcdir/Net-IP-Minimal-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/Net-IP-Minimal-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Added: perl-poe-component-resolver/trunk/PKGBUILD
===
--- perl-poe-component-resolver/trunk/PKGBUILD  (rev 0)
+++ perl-poe-component-resolver/trunk/PKGBUILD  2015-01-12 18:20:58 UTC (rev 
125847)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 116706 2014-08-01 11:52:41Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Charles Mauch cma...@gmail.com
+
+pkgname=perl-poe-component-resolver
+pkgver=0.921
+pkgrel=1
+pkgdesc=Perl/CPAN Module POE::Component::Client::Keepalive
+arch=(any)
+url=http://search.cpan.org/dist/POE-Component-resolver;
+license=(GPL PerlArtistic)
+depends=(perl-poe)
+source=(http://search.cpan.org/CPAN/authors/id/R/RC/RCAPUTO/POE-Component-Resolver-$pkgver.tar.gz;)
+md5sums=('3c7afadc3f0e8bf75947978b746d2b02')
+
+build() {
+  cd $srcdir/POE-Component-Resolver-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd $srcdir/POE-Component-Resolver-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


[arch-commits] Commit in (8 files)

2015-01-09 Thread Andreas Radke
Date: Friday, January 9, 2015 @ 21:08:14
  Author: andyrtr
Revision: 228867

add pkg for LibreOffice

Added:
  libe-book/
  libe-book/repos/
  libe-book/trunk/
  libe-book/trunk/PKGBUILD
  libmwaw/
  libmwaw/repos/
  libmwaw/trunk/
  libmwaw/trunk/PKGBUILD

--+
 libe-book/trunk/PKGBUILD |   32 
 libmwaw/trunk/PKGBUILD   |   33 +
 2 files changed, 65 insertions(+)

Added: libe-book/trunk/PKGBUILD
===
--- libe-book/trunk/PKGBUILD(rev 0)
+++ libe-book/trunk/PKGBUILD2015-01-09 20:08:14 UTC (rev 228867)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Thomas Arnhold thomas at arnhold dot org
+
+pkgname=libe-book
+pkgver=0.1.2
+pkgrel=1
+pkgdesc=Library for import of reflowable e-book formats.
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/libebook/;
+license=('LGPL2.1' 'MPL')
+depends=('libcss' 'libhubbub' 'libmspack' 'librevenge' 'libxml2' 'zlib')
+makedepends=('boost' 'icu')
+source=(https://sourceforge.net/projects/${pkgname//-/}/files/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('950ee08e7a41585636aebb7774fdc6f05817a18c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-werror
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+


Property changes on: libe-book/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libmwaw/trunk/PKGBUILD
===
--- libmwaw/trunk/PKGBUILD  (rev 0)
+++ libmwaw/trunk/PKGBUILD  2015-01-09 20:08:14 UTC (rev 228867)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Thomas Arnhold thomas at arnhold dot org
+
+pkgname=libmwaw
+pkgver=0.3.4
+pkgrel=1
+pkgdesc=Import library for some old mac text documents.
+arch=('i686' 'x86_64')
+url=https://sourceforge.net/projects/libmwaw/;
+license=('LGPL2.0' 'MPL')
+depends=('librevenge')
+makedepends=('boost' 'doxygen')
+source=(https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('b84f1bbeb53e41cdffb512027c161db725fe1cda')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+


Property changes on: libmwaw/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2014-11-08 Thread Fabio Castelli
Date: Saturday, November 8, 2014 @ 16:14:16
  Author: muflone
Revision: 122244

First commit for bluegriffon 1.7.2-1

Added:
  bluegriffon/
  bluegriffon/repos/
  bluegriffon/trunk/
  bluegriffon/trunk/PKGBUILD
  bluegriffon/trunk/bluegriffon.desktop
  bluegriffon/trunk/bluegriffon.install
  bluegriffon/trunk/freetype.patch
  bluegriffon/trunk/mozconfig

-+
 PKGBUILD|   85 ++
 bluegriffon.desktop |   16 +
 bluegriffon.install |   12 +++
 freetype.patch  |   74 +++
 mozconfig   |   37 +
 5 files changed, 224 insertions(+)

Added: bluegriffon/trunk/PKGBUILD
===
--- bluegriffon/trunk/PKGBUILD  (rev 0)
+++ bluegriffon/trunk/PKGBUILD  2014-11-08 15:14:16 UTC (rev 122244)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Balló György ballogyor+arch at gmail dot com
+
+pkgname=bluegriffon
+pkgver=1.7.2
+_mozilla_ver=9db46ddfb517
+pkgrel=1
+pkgdesc=The next-generation Web Editor based on the rendering engine of 
Firefox
+arch=('i686' 'x86_64')
+url=http://bluegriffon.org/;
+license=('MPL' 'GPL' 'LGPL')
+depends=('alsa-lib' 'desktop-file-utils' 'dbus-glib' 'gtk2' 'hunspell' 
'mozilla-common'
+ 'nss' 'libevent' 'libvpx' 'libxt' 'python2' 'startup-notification')
+makedepends=('autoconf2.13' 'libpulse' 'subversion' 'unzip' 'xorg-server-xvfb' 
'zip')
+options=('!emptydirs')
+install=${pkgname}.install
+source=(${pkgname}-${pkgver}::svn+http://sources.disruptive-innovations.com/${pkgname}/tags/${pkgver};
+
${pkgname}-l10n-${pkgver}::svn+http://sources.disruptive-innovations.com/${pkgname}-l10n/tags/${pkgver};
+http://hg.mozilla.org/mozilla-central/archive/${_mozilla_ver}.tar.bz2;
+mozconfig
+bluegriffon.desktop
+freetype.patch)
+md5sums=('SKIP'
+ 'SKIP'
+ 'ced0be4498f9b29b68148af38bdd2f6d'
+ '7a39b0d261604c50d314acb115fc17fe'
+ 'b508d3a028380595d25c8039a217768b'
+ 'f19745a7e94053a5252e35f6cbf7b94f')
+
+prepare() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  # Move files to their correct location
+  mv ${srcdir}/${pkgname}-${pkgver} bluegriffon
+  mv ${srcdir}/${pkgname}-l10n-${pkgver} bluegriffon/locales
+  mv ${srcdir}/mozconfig .mozconfig
+
+  # Apply BlueGriffon's upstream customizations
+  patch -Np1 -i bluegriffon/config/content.patch
+
+  # Fix build with freetype 2.5
+  patch -Np1 -i ../freetype.patch
+
+  # python2 fix
+  find . -name \*.py -exec sed -i 's@^#.*python$@#!/usr/bin/python2@' '{}' \;
+}
+
+build() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  export CPPFLAGS+=' -O2'
+  export PYTHON=python2
+
+  xvfb-run -a -s -extension GLX -screen 0 1280x1024x24 \
+make -f client.mk build
+}
+
+package() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  mkdir -p ${pkgdir}/usr/lib/bluegriffon
+  cp -LR bg/dist/bin/* ${pkgdir}/usr/lib/bluegriffon
+
+  mkdir -p ${pkgdir}/usr/bin
+  ln -sf /usr/lib/bluegriffon/bluegriffon ${pkgdir}/usr/bin/bluegriffon
+
+  for i in 16x16 32x32 48x48; do
+  install -Dm644 bg/dist/branding/default${i/x*/}.png \
+${pkgdir}/usr/share/icons/hicolor/${i}/apps/bluegriffon.png
+  done
+
+  install -Dm644 bg/dist/branding/mozicon128.png \
+${pkgdir}/usr/share/icons/hicolor/128x128/apps/bluegriffon.png
+
+  install -Dm644 ../bluegriffon.desktop \
+${pkgdir}/usr/share/applications/bluegriffon.desktop
+
+  # Use system-provided dictionaries
+  rm -rf ${pkgdir}/usr/lib/bluegriffon/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell ${pkgdir}/usr/lib/bluegriffon/dictionaries
+  ln -sf /usr/share/hyphen ${pkgdir}/usr/lib/bluegriffon/hyphenation
+}


Property changes on: bluegriffon/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: bluegriffon/trunk/bluegriffon.desktop
===
--- bluegriffon/trunk/bluegriffon.desktop   (rev 0)
+++ bluegriffon/trunk/bluegriffon.desktop   2014-11-08 15:14:16 UTC (rev 
122244)
@@ -0,0 +1,16 @@
+[Desktop Entry]
+Name=BlueGriffon
+GenericName=Web Editor
+GenericName[hu]=Webszerkesztő
+X-GNOME-FullName=BlueGriffon Web Editor
+X-GNOME-FullName[hu]=BlueGriffon webszerkesztő
+Comment=Create Web Pages
+Comment[es]=Crea páginas web
+Comment[hu]=Weboldalak készítése
+Comment[it]=Creare pagine Web
+Categories=Development;WebDevelopment;
+Exec=bluegriffon
+Icon=bluegriffon
+Terminal=false
+MimeType=text/html;application/xhtml+xml;
+Type=Application

Added: bluegriffon/trunk/bluegriffon.install

[arch-commits] Commit in (8 files)

2014-10-12 Thread Jan Steffens
Date: Sunday, October 12, 2014 @ 11:35:53
  Author: heftig
Revision: 224232

Revert cert setup to core state

Added:
  ca-certificates-cacert/trunk/
  ca-certificates/trunk/
  nss/trunk/
  p11-kit/trunk/
Deleted:
  ca-certificates-cacert/trunk/
  ca-certificates/trunk/
  nss/trunk/
  p11-kit/trunk/


[arch-commits] Commit in (8 files)

2014-09-22 Thread Maxime Gauduin
Date: Monday, September 22, 2014 @ 11:43:22
  Author: alucryd
Revision: 119416

Move lib32-gstreamer0.10 and deps to AUR

Deleted:
  lib32-cdparanoia/
  lib32-gstreamer0.10-base/
  lib32-gstreamer0.10/
  lib32-libtheora/
  lib32-libvisual/
  lib32-libxkbcommon/
  lib32-orc/
  lib32-sdl2/



[arch-commits] Commit in (8 files)

2014-09-19 Thread Alexander Rødseth
Date: Friday, September 19, 2014 @ 22:19:39
  Author: arodseth
Revision: 119262

Moving android-ndk from AUR

Added:
  android-ndk/
  android-ndk/repos/
  android-ndk/repos/community-i686/
  android-ndk/repos/community-x86_64/
  android-ndk/trunk/
  android-ndk/trunk/PKGBUILD
  android-ndk/trunk/android-ndk.install
  android-ndk/trunk/android-ndk.sh

-+
 PKGBUILD|   55 ++
 android-ndk.install |   18 
 android-ndk.sh  |2 +
 3 files changed, 75 insertions(+)

Added: android-ndk/trunk/PKGBUILD
===
--- android-ndk/trunk/PKGBUILD  (rev 0)
+++ android-ndk/trunk/PKGBUILD  2014-09-19 20:19:39 UTC (rev 119262)
@@ -0,0 +1,55 @@
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgbase=android-ndk
+pkgname=('android-ndk32' 'android-ndk64')
+pkgver=r10b
+pkgrel=1
+pkgdesc='Android C/C++ developer kit'
+arch=('x86_64' 'i686')
+url='http://developer.android.com/sdk/ndk/index.html'
+license=('GPL' 'LGPL' 'custom')
+depends=('android-sdk')
+options=('!strip' 'staticlibs')
+install=$pkgbase.install
+
+noextract=(${pkgbase}32-$CARCH.tbz2
+   ${pkgbase}64-$CARCH.tbz2)
+
+if [[ $CARCH == x86_64 ]]; then
+
source=(${pkgbase}32-$CARCH.tbz2::http://dl.google.com/android/ndk/${pkgbase}32-$pkgver-linux-x86_64.tar.bz2;
+
${pkgbase}64-$CARCH.tbz2::http://dl.google.com/android/ndk/${pkgbase}64-$pkgver-linux-x86_64.tar.bz2;
+${pkgbase}.sh)
+
sha256sums=('e4766586d0f65452317e662758eb7d070c55ad4092e1e82ab1717a1114a1c430'
+'f56782b70ceff53749b9e63f0384e4e0ad04a46a2d7cd64c3b27c7493d2f64dc'
+'5bc58ccd7e7de03c9656ca8f13fb9bf9dff231a2670ce04a4b97be73dc95')
+else
+
source=(${pkgbase}32-$CARCH.tbz2::http://dl.google.com/android/ndk/${pkgbase}32-$pkgver-linux-x86.tar.bz2;
+
${pkgbase}64-$CARCH.tbz2::http://dl.google.com/android/ndk/${pkgbase}64-$pkgver-linux-x86.tar.bz2;
+${pkgbase}.sh)
+
sha256sums=('e4766586d0f65452317e662758eb7d070c55ad4092e1e82ab1717a1114a1c430'
+'f56782b70ceff53749b9e63f0384e4e0ad04a46a2d7cd64c3b27c7493d2f64dc'
+'5bc58ccd7e7de03c9656ca8f13fb9bf9dff231a2670ce04a4b97be73dc95')
+fi
+
+package_android-ndk32() {
+  provides=('android-ndk')
+  replaces=('android-ndk')
+
+  install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
+  install -d $pkgdir/opt
+  tar kaxf $pkgname-$CARCH.tbz2 -C $pkgdir/opt
+  mv $pkgdir/opt/$pkgbase-$pkgver $pkgdir/opt/$pkgname
+}
+
+package_android-ndk64() {
+  provides=('android-ndk')
+  replaces=('android-ndk')
+
+  install -Dm755 $pkgname.sh $pkgdir/etc/profile.d/$pkgname.sh
+  install -d $pkgdir/opt
+  tar kaxf $pkgname-$CARCH.tbz2 -C $pkgdir/opt
+  mv $pkgdir/opt/$pkgbase-$pkgver $pkgdir/opt/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:

Added: android-ndk/trunk/android-ndk.install
===
--- android-ndk/trunk/android-ndk.install   (rev 0)
+++ android-ndk/trunk/android-ndk.install   2014-09-19 20:19:39 UTC (rev 
119262)
@@ -0,0 +1,18 @@
+post_upgrade() {
+  if [ ! -f /opt/android-ndk ]; then
+if [ -f /opt/android-ndk32 ]; then
+  # If there is no /opt/android-ndk, but there is /opt/android-ndk32, make 
a symlink
+  ln -s /opt/android-ndk32 /opt/android-ndk
+else
+  # If there is no /opt/android-ndk, but there is /opt/android-ndk64, make 
a symlink
+  ln -s /opt/android-ndk64 /opt/android-ndk
+fi
+  fi
+}
+
+post_install() {
+  post_upgrade
+  echo 'Source /etc/profile or relogin to add the Android NDK tools to your 
path.'
+}
+
+# vim:set ts=2 sw=2 et:

Added: android-ndk/trunk/android-ndk.sh
===
--- android-ndk/trunk/android-ndk.sh(rev 0)
+++ android-ndk/trunk/android-ndk.sh2014-09-19 20:19:39 UTC (rev 119262)
@@ -0,0 +1,2 @@
+export PATH=$PATH:/opt/android-ndk
+export ANDROID_NDK=/opt/android-ndk



[arch-commits] Commit in (8 files)

2014-08-30 Thread Anatol Pomozov
Date: Saturday, August 30, 2014 @ 09:23:50
  Author: anatolik
Revision: 118083

Add tools for reading system events (keyboard, touchpads)

Added:
  evemu/
  evemu/repos/
  evemu/trunk/
  evemu/trunk/PKGBUILD
  evtest/
  evtest/repos/
  evtest/trunk/
  evtest/trunk/PKGBUILD

---+
 evemu/trunk/PKGBUILD  |   32 
 evtest/trunk/PKGBUILD |   28 
 2 files changed, 60 insertions(+)

Added: evemu/trunk/PKGBUILD
===
--- evemu/trunk/PKGBUILD(rev 0)
+++ evemu/trunk/PKGBUILD2014-08-30 07:23:50 UTC (rev 118083)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Nicolas Quiénot  niQo at aur 
+# Contributor: Damián Nohales damiannohales at gmail.com
+ 
+pkgname=evemu
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Tools and bindings for kernel input event device emulation and data 
capture and replay'
+arch=(i686 x86_64)
+url='http://www.freedesktop.org/wiki/Evemu'
+license=(GPL3)
+depends=(libevdev python2)
+source=(http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz)
+sha1sums=('73f0088c05f63ddc40fd4bec9685c885c4b1797e')
+ 
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  # Tests have to be run as 'root'
+  # make check
+}
+ 
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: evemu/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: evtest/trunk/PKGBUILD
===
--- evtest/trunk/PKGBUILD   (rev 0)
+++ evtest/trunk/PKGBUILD   2014-08-30 07:23:50 UTC (rev 118083)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Devin J. Pohly djpohly+a...@gmail.com
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+pkgname=evtest
+pkgver=1.32
+pkgrel=2
+pkgdesc='Input device event monitor and query tool'
+arch=(i686 x86_64)
+url='http://cgit.freedesktop.org/evtest/'
+license=(GPL)
+depends=(glibc)
+makedepends=(asciidoc)
+source=(http://cgit.freedesktop.org/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2)
+sha1sums=('5ec495e5396a61df5314322ec2fa72e44c9c2e2a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr 
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: evtest/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2014-08-03 Thread Bartłomiej Piotrowski
Date: Sunday, August 3, 2014 @ 20:40:29
  Author: bpiotrowski
Revision: 116800

newpkg: ppsspp 0.9.9-1

Added:
  ppsspp/
  ppsspp/repos/
  ppsspp/trunk/
  ppsspp/trunk/PKGBUILD
  ppsspp/trunk/ppsspp-headless
  ppsspp/trunk/ppsspp-sdl
  ppsspp/trunk/ppsspp.desktop
  ppsspp/trunk/ppsspp.install

-+
 PKGBUILD|   54 ++
 ppsspp-headless |3 +++
 ppsspp-sdl  |3 +++
 ppsspp.desktop  |   10 ++
 ppsspp.install  |   11 +++
 5 files changed, 81 insertions(+)

Added: ppsspp/trunk/PKGBUILD
===
--- ppsspp/trunk/PKGBUILD   (rev 0)
+++ ppsspp/trunk/PKGBUILD   2014-08-03 18:40:29 UTC (rev 116800)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgname=ppsspp
+pkgver=0.9.9
+pkgrel=1
+pkgdesc='PSP emulator written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ppsspp.org/'
+license=('GPL2')
+depends=('zlib' 'sdl' 'libpng' 'libgl' 'hicolor-icon-theme' 'xdg-utils')
+makedepends=('git' 'cmake' 'mesa' 'mesa-libgl' 'glu' 'chrpath' 'zlib' 'sdl')
+install=ppsspp.install
+source=(git://github.com/hrydgard/ppsspp.git#tag=v$pkgver
+git://github.com/hrydgard/native.git#commit=78941b08
+lang::git://github.com/hrydgard/ppsspp-lang.git#commit=7876a52f
+ffmpeg::git://github.com/hrydgard/ppsspp-ffmpeg.git#commit=bc6302be
+ppsspp-headless ppsspp-sdl ppsspp.desktop)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'e516beb9b1c42ea21e06b80b737c'
+ '2d4671d325c14b43ee1edf1a6e4fcd5d'
+ '0f9fffc0ad19bd4b647a81e0357e9d04')
+
+prepare() {
+  mkdir build{,-qt}
+  cd $pkgbase
+
+  git submodule init
+  for submodule in native lang ffmpeg; do
+git config submodule.${submodule}.url $srcdir/$submodule
+git submodule update $submodule
+  done
+}
+
+build() {
+  cd build
+  cmake ../$pkgbase -DCMAKE_BUILD_TYPE=Release -DHEADLESS=ON
+  make
+}
+
+package() {
+  install -d $pkgdir/usr/share/ppsspp $pkgdir/usr/share/icons/
+  cp -r build/{PPSSPPSDL,PPSSPPHeadless,assets/} $pkgdir/usr/share/ppsspp
+  chrpath -d $pkgdir/usr/share/ppsspp/PPSSPP{SDL,Headless}
+
+  cp -r ppsspp/assets/unix-icons/hicolor $pkgdir/usr/share/icons/hicolor
+
+  install -Dm755 ppsspp-headless $pkgdir/usr/bin/ppsspp-headless
+  install -Dm755 ppsspp-sdl $pkgdir/usr/bin/ppsspp-sdl
+  install -Dm644 ppsspp.desktop $pkgdir/usr/share/applications/ppsspp.desktop
+}


Property changes on: ppsspp/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: ppsspp/trunk/ppsspp-headless
===
--- ppsspp/trunk/ppsspp-headless(rev 0)
+++ ppsspp/trunk/ppsspp-headless2014-08-03 18:40:29 UTC (rev 116800)
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+cd /usr/share/ppsspp
+exec ./PPSSPPHeadless $@

Added: ppsspp/trunk/ppsspp-sdl
===
--- ppsspp/trunk/ppsspp-sdl (rev 0)
+++ ppsspp/trunk/ppsspp-sdl 2014-08-03 18:40:29 UTC (rev 116800)
@@ -0,0 +1,3 @@
+#!/usr/bin/env sh
+cd /usr/share/ppsspp
+exec ./PPSSPPSDL $@

Added: ppsspp/trunk/ppsspp.desktop
===
--- ppsspp/trunk/ppsspp.desktop (rev 0)
+++ ppsspp/trunk/ppsspp.desktop 2014-08-03 18:40:29 UTC (rev 116800)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=PPSSPP
+GenericName=PSP Emulator
+Comment=Playstation Portable Emulator
+Exec=ppsspp-sdl %f
+Terminal=false
+Type=Application
+Icon=ppsspp
+Categories=Application;Game;
+StartupNotify=false

Added: ppsspp/trunk/ppsspp.install
===
--- ppsspp/trunk/ppsspp.install (rev 0)
+++ ppsspp/trunk/ppsspp.install 2014-08-03 18:40:29 UTC (rev 116800)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in (8 files)

2014-08-02 Thread Florian Pritz
Date: Saturday, August 2, 2014 @ 20:25:01
  Author: bluewind
Revision: 116752

add perl-cgi, perl-cgi-fast

Added:
  perl-cgi-fast/
  perl-cgi-fast/repos/
  perl-cgi-fast/trunk/
  perl-cgi-fast/trunk/PKGBUILD
  perl-cgi/
  perl-cgi/repos/
  perl-cgi/trunk/
  perl-cgi/trunk/PKGBUILD

--+
 perl-cgi-fast/trunk/PKGBUILD |   46 +
 perl-cgi/trunk/PKGBUILD  |   44 +++
 2 files changed, 90 insertions(+)

Added: perl-cgi/trunk/PKGBUILD
===
--- perl-cgi/trunk/PKGBUILD (rev 0)
+++ perl-cgi/trunk/PKGBUILD 2014-08-02 18:25:01 UTC (rev 116752)
@@ -0,0 +1,44 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+
+pkgname=perl-cgi
+pkgver=4.03
+pkgrel=1
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl=5.8.1')
+url=https://metacpan.org/release/CGI
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI.pm-$pkgver.tar.gz;)
+md5sums=(265c8133a02e194d3189573835de51f4)
+sha512sums=(e064d5d40cf284347454774b2bcadd54d39fa1433be0d619d18067e614f8570e072f1995206e9233f1b5a4a3e61fb0748aefc0d535fd89355d4afb8bc0bd879c)
+_ddir=CGI.pm-$pkgver
+
+build()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  /usr/bin/perl Makefile.PL
+  make
+)
+
+check()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+)
+
+package()
+(
+  cd $srcdir/$_ddir
+  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+)
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:

Added: perl-cgi-fast/trunk/PKGBUILD
===
--- perl-cgi-fast/trunk/PKGBUILD(rev 0)
+++ perl-cgi-fast/trunk/PKGBUILD2014-08-02 18:25:01 UTC (rev 116752)
@@ -0,0 +1,46 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+
+pkgname=perl-cgi-fast
+pkgver=2.02
+pkgrel=1
+pkgdesc='CGI Interface for Fast CGI'
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=('perl=5.8.1' 'perl-cgi=4' 'perl-fcgi=0.67')
+checkdepends=('perl-test-deep=0.11')
+url=https://metacpan.org/release/CGI-Fast
+source=(http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-Fast-$pkgver.tar.gz;)
+md5sums=(779a5152f44cab2e3e3856459837fe78)
+sha512sums=(558113b2bcbfa9d2915b12e882f9f305f96c0da5f6f6c4eb5e68bbb4ce3871f368a74927a9348f92b0d80a5cc857c4e5eb7228f962b1abcb87a155f8b18e5d5b)
+_ddir=CGI-Fast-$pkgver
+
+build()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  /usr/bin/perl Makefile.PL
+  make
+)
+
+check()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+)
+
+package()
+(
+  cd $srcdir/$_ddir
+  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+)
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (8 files)

2014-07-31 Thread Kyle Keen
Date: Friday, August 1, 2014 @ 02:39:13
  Author: kkeen
Revision: 116655

pkginit: hiawatha 9.6-2

Added:
  hiawatha/
  hiawatha/repos/
  hiawatha/trunk/
  hiawatha/trunk/PKGBUILD
  hiawatha/trunk/hiawatha.conf.sample
  hiawatha/trunk/hiawatha.service
Modified:
  gnuradio/trunk/PKGBUILD
  polarssl/trunk/PKGBUILD

-+
 gnuradio/trunk/PKGBUILD |1 
 hiawatha/trunk/PKGBUILD |   91 +++
 hiawatha/trunk/hiawatha.conf.sample |  114 ++
 hiawatha/trunk/hiawatha.service |   16 
 polarssl/trunk/PKGBUILD |4 +
 5 files changed, 226 insertions(+)

Modified: gnuradio/trunk/PKGBUILD
===
--- gnuradio/trunk/PKGBUILD 2014-08-01 00:33:59 UTC (rev 116654)
+++ gnuradio/trunk/PKGBUILD 2014-08-01 00:39:13 UTC (rev 116655)
@@ -36,6 +36,7 @@
 # split the gui components?
 # build doxygen docs?
 # icons
+# gnuradio-osmosdr is not an optdep
 
 # comedilib: gr-comedi
 # zeroc-ice: gr-ctrlport

Added: hiawatha/trunk/PKGBUILD
===
--- hiawatha/trunk/PKGBUILD (rev 0)
+++ hiawatha/trunk/PKGBUILD 2014-08-01 00:39:13 UTC (rev 116655)
@@ -0,0 +1,91 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Kurt Marasco celilo _at_ lavabit _dot_ com
+# Contributor: Pascal Ernster aur at hardfalcon dot net
+
+pkgname=hiawatha
+pkgver=9.6
+pkgrel=2
+pkgdesc=Secure and advanced webserver
+url=https://www.hiawatha-webserver.org/;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('libxslt' 'polarssl')
+optdepends=('php-fpm: PHP fastcgi')
+makedepends=('cmake')
+backup=(
+'etc/hiawatha/hiawatha.conf'
+'etc/hiawatha/cgi-wrapper.conf'
+'etc/hiawatha/mimetype.conf'
+)
+
+source=(
+https://hiawatha-webserver.org/files/$pkgname-$pkgver.tar.gz; 
+'hiawatha.conf.sample'
+'hiawatha.service'
+)
+sha256sums=(
+'13132fdb322a8d222f7fa25fa19b5485fcdf7a9568fbe4a52c99905571a75a45'
+'4671d2586cbe3cd6497b16ff422c6143cdab40641ef3c9c4988c478351a8f5e7'
+'fb789b12bb6246237b15a9244f58317abdd53e5ca4eb55880e40a498b2237155'
+)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  sed -i 's/www-data/http/g' extra/logrotate.in
+
+  mkdir -p build
+  cd build
+
+  cmake ../ -DCMAKE_INSTALL_PREFIX=/ \
+-DCMAKE_INSTALL_BINDIR=/usr/bin \
+-DCMAKE_INSTALL_SBINDIR=/usr/bin \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc/hiawatha \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_MANDIR=/usr/share/man \
+-DCONFIG_DIR=/etc/hiawatha \
+-DLOG_DIR=/var/log/hiawatha \
+-DPID_DIR=/run \
+-DENABLE_SSL=ON \
+-DUSE_SYSTEM_POLARSSL=ON \
+-DWEBROOT_DIR=/srv/http/hiawatha \
+-DWORK_DIR=/var/lib/hiawatha
+  make
+
+  # Features enabled by default
+  # -DENABLE_CACHE
+  # -DENABLE_IPV6
+  # -DENABLE_RPROXY
+  # -DENABLE_TOOLKIT
+  # -DENABLE_XSLT
+
+  # Features disabled by default
+  # -DENABLE_DEBUG
+  # -DENABLE_MONITOR
+  # -DENABLE_TOMAHAWK  
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/build
+  make DESTDIR=$pkgdir/ install
+ 
+  rmdir $pkgdir/run
+  rm $pkgdir/srv/http/hiawatha/index.html
+  rmdir -p --ignore-fail-on-non-empty $pkgdir/srv/http/hiawatha
+ 
+  # Update stock hiawatha.conf
+  sed -e 's|#ServerId = www-data|ServerId = http|' \
+  -e 's|/var/www/|/srv/http/|g' \
+  -e 's|//|/|g' \
+  -e 's|#CGIextension = cgi|\n#TriggerOnCGIstatus = no|g' \
+  -e 's|ConnectTo = 127.0.0.1:2005|ConnectTo = 127.0.0.1:9000|g' \
+  -e 's|#  Extension = php|\n#   SessionTimeout = 30|g' \
+  -e 's|#ErrorHandler = 404:/error.cgi|\n#UseGZfile = yes|g' \
+  -i $pkgdir/etc/hiawatha/hiawatha.conf
+  
+  install -Dm644 logrotate.d/hiawatha $pkgdir/etc/logrotate.d/hiawatha
+  install -Dm755 $srcdir/hiawatha.service 
$pkgdir/usr/lib/systemd/system/hiawatha.service
+  install -Dm644 $srcdir/hiawatha.conf.sample $pkgdir/etc/hiawatha/
+}
+


Property changes on: hiawatha/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: hiawatha/trunk/hiawatha.conf.sample
===
--- hiawatha/trunk/hiawatha.conf.sample (rev 0)
+++ hiawatha/trunk/hiawatha.conf.sample 2014-08-01 00:39:13 UTC (rev 116655)
@@ -0,0 +1,114 @@
+# Hiawatha main configuration file
+# This is a basic sample configuration file that sets up a:
+#   1) Default web site at /srv/http/hiawatha (Note: fast CGI is not active on 
default site)
+#   2) Virtual host for phpmyadmin at /srv/http/phpMyAdmin
+#  note: you must install phpmyadmin, mysql, php-mcrypt, and php-cgi 
separately. Be sure that extensions 
+#  

[arch-commits] Commit in (8 files)

2014-05-15 Thread Eric Bélanger
Date: Thursday, May 15, 2014 @ 16:53:51
  Author: eric
Revision: 111249

Removed obsolete qt3 and kdelibs3 packages from repos

Deleted:
  avifile/
  kleansweep/
  kovpn/
  ktechlab/
  madman/
  mandvd/
  tork/
  vyqchat/



[arch-commits] Commit in (8 files)

2014-05-03 Thread Alexander Rødseth
Date: Saturday, May 3, 2014 @ 12:13:55
  Author: arodseth
Revision: 110549

Renaming the directory and updating the package.

Added:
  python-httplib2/
  python-httplib2/trunk/cert.patch
  python-httplib2/trunk/ssl_hostname.patch
Modified:
  python-httplib2/trunk/PKGBUILD
Deleted:
  python-httplib2/repos/community-any/PKGBUILD
  python-httplib2/repos/community-any/ssl_hostname.diff
  python-httplib2/trunk/ssl_hostname.diff
  python2-httplib2/

--+
 python-httplib2/trunk/cert.patch |   30 
 python-httplib2/trunk/ssl_hostname.patch |   21 +++
 repos/community-any/PKGBUILD |   54 -
 repos/community-any/ssl_hostname.diff|   21 ---
 trunk/PKGBUILD   |   51 ---
 trunk/ssl_hostname.diff  |   21 ---
 6 files changed, 81 insertions(+), 117 deletions(-)

Deleted: python-httplib2/repos/community-any/PKGBUILD
===
--- python2-httplib2/repos/community-any/PKGBUILD   2014-05-03 08:51:16 UTC 
(rev 110548)
+++ python-httplib2/repos/community-any/PKGBUILD2014-05-03 10:13:55 UTC 
(rev 110549)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Giorgio Lando patroc...@gmail.com
-# Contributor: Nicolas Quienot niQo@aur
-# Contributor: Jesse Young jesse.yo...@gmail.com
-
-# TODO: Change pkgbase from python2-httplib2 to python-httplib2
-pkgbase=python2-httplib2
-pkgname=(python-httplib2 python2-httplib2)
-_pkgbasename=httplib2
-pkgver=0.8
-pkgrel=3
-pkgdesc='Comprehensive HTTP client library, supporting many features'
-url='http://code.google.com/p/httplib2/'
-license=('MIT')
-arch=('any')
-makedepends=('python' 'python2')
-provides=('httplib2')
-replaces=('httplib2')
-source=(http://httplib2.googlecode.com/files/$_pkgbasename-$pkgver.tar.gz;
-'ssl_hostname.diff')
-sha256sums=('af689bc3cb10a95721eb0d0cf806202a699e7799dacd3497f63b48b2ba429c3f'
-'d29fa108291a24f0708f04867f0479247ecbdd1fcf1617588b6650038d95554a')
-
-prepare() {
-  # patch, ref https://bugs.archlinux.org/task/36839
-  cd $_pkgbasename-$pkgver
-  patch -p1 -i $srcdir/ssl_hostname.diff
-  tail -24 README  LICENSE
-  cd ..
-
-  # prepare one build directory for each package
-  cp -a $_pkgbasename-$pkgver ${pkgname[0]}-$pkgver
-  cp -a $_pkgbasename-$pkgver ${pkgname[1]}-$pkgver
-}
-
-package_python-httplib2() {
-  depends=('python')
-
-  cd $srcdir/$pkgname-$pkgver
-  python setup.py install --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-httplib2() {
-  depends=('python2')
-
-  cd $srcdir/$pkgname-$pkgver
-  python2 setup.py install --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: python-httplib2/repos/community-any/ssl_hostname.diff
===
--- python2-httplib2/repos/community-any/ssl_hostname.diff  2014-05-03 
08:51:16 UTC (rev 110548)
+++ python-httplib2/repos/community-any/ssl_hostname.diff   2014-05-03 
10:13:55 UTC (rev 110549)
@@ -1,21 +0,0 @@
-diff -r 93291649202b python2/httplib2/__init__.py
 a/python2/httplib2/__init__.py Tue Mar 26 14:17:48 2013 -0400
-+++ b/python2/httplib2/__init__.py Tue Apr 23 10:32:15 2013 +0300
-@@ -1030,7 +1030,7 @@
- raise CertificateHostnameMismatch(
- 'Server presented certificate that does not match 
'
- 'host %s: %s' % (hostname, cert), hostname, cert)
--except ssl_SSLError, e:
-+except (ssl_SSLError, CertificateHostnameMismatch), e:
- if sock:
- sock.close()
- if self.sock:
-@@ -1040,7 +1040,7 @@
- # to get at more detailed error information, in particular
- # whether the error is due to certificate validation or
- # something else (such as SSL protocol mismatch).
--if e.errno == ssl.SSL_ERROR_SSL:
-+if hasattr(e, 'errno') and e.errno == ssl.SSL_ERROR_SSL:
- raise SSLHandshakeError(e)
- else:
- raise

Modified: python-httplib2/trunk/PKGBUILD
===
--- python2-httplib2/trunk/PKGBUILD 2014-05-03 08:51:16 UTC (rev 110548)
+++ python-httplib2/trunk/PKGBUILD  2014-05-03 10:13:55 UTC (rev 110549)
@@ -4,51 +4,60 @@
 # Contributor: Giorgio Lando patroc...@gmail.com
 # Contributor: Nicolas Quienot niQo@aur
 # Contributor: Jesse Young jesse.yo...@gmail.com
+# Contributor: Anton Eliasson de...@antoneliasson.se
 
-# TODO: Change pkgbase from python2-httplib2 to python-httplib2

[arch-commits] Commit in (8 files)

2014-04-24 Thread Sergej Pupykin
Date: Thursday, April 24, 2014 @ 15:48:59
  Author: spupykin
Revision: 110117

Added:
  cgmanager/
  cgmanager/repos/
  cgmanager/trunk/
  cgmanager/trunk/PKGBUILD
  libnih/
  libnih/repos/
  libnih/trunk/
  libnih/trunk/PKGBUILD

--+
 cgmanager/trunk/PKGBUILD |   32 
 libnih/trunk/PKGBUILD|   24 
 2 files changed, 56 insertions(+)

Added: cgmanager/trunk/PKGBUILD
===
--- cgmanager/trunk/PKGBUILD(rev 0)
+++ cgmanager/trunk/PKGBUILD2014-04-24 13:48:59 UTC (rev 110117)
@@ -0,0 +1,32 @@
+pkgname=cgmanager
+pkgver=20140424
+pkgrel=1
+pkgdesc=Another daemon for managing control groups
+arch=(i686 x86_64)
+url=https://github.com/cgmanager/cgmanager;
+license=('GPL')
+groups=()
+depends=()
+makedepends=()
+checkdepends=()
+optdepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+options=()
+install=
+source=(git://github.com/cgmanager/cgmanager.git)
+md5sums=('SKIP')
+
+build() {
+   cd $srcdir/$pkgname
+   ./bootstrap.sh
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname
+   make DESTDIR=$pkgdir/ install
+}

Added: libnih/trunk/PKGBUILD
===
--- libnih/trunk/PKGBUILD   (rev 0)
+++ libnih/trunk/PKGBUILD   2014-04-24 13:48:59 UTC (rev 110117)
@@ -0,0 +1,24 @@
+# Maintainer: Andrea Fagiani andfagiani {at} gmail {dot} com
+# Contributor: Brett Mravec brett.mra...@gmail.com
+
+pkgname=libnih
+pkgver=1.0.3
+pkgrel=1
+pkgdesc=Small library for C application development.
+arch=(i686 x86_64)
+url=https://launchpad.net/libnih;
+license=('GPL')
+depends=('dbus-core')
+makedepends=('expat')
+options=(!libtool)
+source=(http://launchpad.net/libnih/1.0/${pkgver}/+download/$pkgname-$pkgver.tar.gz)
+md5sums=('db7990ce55e01daffe19006524a1ccb0')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+  make DESTDIR=$pkgdir/ install
+
+}



[arch-commits] Commit in (8 files)

2014-03-22 Thread Alexander Rødseth
Date: Saturday, March 22, 2014 @ 18:05:21
  Author: arodseth
Revision: 108099

archrelease: copy trunk to community-x86_64, community-i686

Added:
  liteide/
  liteide/repos/community-i686/
  liteide/repos/community-x86_64/
Deleted:
  liteide/
  liteide/repos/community-i686/PKGBUILD
  liteide/repos/community-i686/liteide.png
  liteide/repos/community-x86_64/PKGBUILD
  liteide/repos/community-x86_64/liteide.png

---+
 community-i686/PKGBUILD   |   92 
 community-x86_64/PKGBUILD |   92 
 2 files changed, 184 deletions(-)

Deleted: liteide/repos/community-i686/PKGBUILD
===
--- liteide/repos/community-i686/PKGBUILD   2014-03-22 16:40:00 UTC (rev 
108091)
+++ liteide/repos/community-i686/PKGBUILD   2014-03-22 17:05:21 UTC (rev 
108099)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: spambanane happy.ho...@gmx.de
-# Contributor: Matteo matteo@gmail.com
-# Contributor: Matthew Zimmerman mzimmer...@gmail.com
-
-pkgname=liteide
-pkgver=21.1
-pkgrel=3
-pkgdesc='IDE for editing and building projects written in the Go programming 
language (golangide)'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'qt5-webkit')
-replaces=('golangide')
-conflicts=('golangide')
-makedepends=('gendesk' 'git' 'go')
-options=('!strip' '!emptydirs')
-source=($pkgname-x$pkgver::git://github.com/visualfc/liteide.git#tag=x$pkgver
-'liteide.png')
-md5sums=('SKIP'
- '7f459be003d754a3a2c34be91b8c0b1f')
-
-prepare() {
-  gendesk -f -n --name 'LiteIDE' --pkgname $pkgname --pkgdesc $pkgdesc
-  chmod +x liteide-x$pkgver/build/*_*.sh
-}
-
-build() {
-  cd liteide-x$pkgver/build
-
-  export QTDIR=/usr
-
-  mkdir -p go
-  export GOPATH=`pwd`/go
-
-  ./update_pkg.sh
-  ./build_linux.sh
-
-  # Fixing insecure RPATH, need to test if this is still needed
-  cd ../liteidex
-  find . -name *.so -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-  find . -name liteide -type f -exec sed -i 's|/home/win|/usr/lib/|g' {} \;
-}
-
-package() {
-  cd liteide-x$pkgver/build/liteide
-
-  msg2 'Creating directories...'
-  mkdir -p \
-$pkgdir/usr/lib/liteide \
-$pkgdir/usr/share/liteide \
-$pkgdir/usr/share/doc/$pkgname
-
-  msg2 'Packaging executables...'
-  for binary in gocode liteide; do # goimports liteide_stub
-install -Dm755 bin/$binary $pkgdir/usr/bin/$binary
-  done
-  ln -s /usr/bin/liteide $pkgdir/usr/bin/golangide
-
-  cd $srcdir/liteide-x$pkgver/liteidex
-
-  msg2 'Packaging resources...'
-  cp -r deploy/* os_deploy/* $pkgdir/usr/share/liteide
-
-  msg2 'Packaging libraries and plugins...'
-  cp -r liteide/lib/liteide/* $pkgdir/usr/lib/liteide
-  cp -r liteide/bin/libliteapp.* $pkgdir/usr/lib/
-  chmod -x $pkgdir/usr/lib/liteide/plugins/*
-
-  msg2 'Packaging license and license exception...'
-  install -Dm644 LICENSE.LGPL \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 LGPL_EXCEPTION.TXT \
-$pkgdir/usr/share/licenses/$pkgname/LGPL_EXCEPTION
-
-  cd ../..
-
-  msg2 'Packaging menu entry and icon...'
-  install -Dm644 $pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-  install -Dm644 $pkgname.png \
-$pkgdir/usr/share/pixmaps/$pkgname.png
-
-  msg2 'Cleaning up...'
-  rm -rf $pkgdir/usr/share/$pkgname/doc
-
-  # Fix for FS#38781
-  mv $pkgdir/usr/share/liteide/linux/liteenv 
$pkgdir/usr/share/liteide/liteenv
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: liteide/repos/community-i686/liteide.png
===
(Binary files differ)

Deleted: liteide/repos/community-x86_64/PKGBUILD
===
--- liteide/repos/community-x86_64/PKGBUILD 2014-03-22 16:40:00 UTC (rev 
108091)
+++ liteide/repos/community-x86_64/PKGBUILD 2014-03-22 17:05:21 UTC (rev 
108099)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: spambanane happy.ho...@gmx.de
-# Contributor: Matteo matteo@gmail.com
-# Contributor: Matthew Zimmerman mzimmer...@gmail.com
-
-pkgname=liteide
-pkgver=21.1
-pkgrel=3
-pkgdesc='IDE for editing and building projects written in the Go programming 
language (golangide)'
-license=('LGPL')
-arch=('x86_64' 'i686')
-url='https://github.com/visualfc/liteide'
-depends=('go' 'qt5-webkit')
-replaces=('golangide')
-conflicts=('golangide')
-makedepends=('gendesk' 'git' 'go')
-options=('!strip' '!emptydirs')
-source=($pkgname-x$pkgver::git://github.com/visualfc/liteide.git#tag=x$pkgver
-'liteide.png')
-md5sums=('SKIP'
- '7f459be003d754a3a2c34be91b8c0b1f')
-
-prepare() {
-  gendesk -f -n --name 'LiteIDE' --pkgname $pkgname --pkgdesc $pkgdesc
-  chmod +x liteide-x$pkgver/build/*_*.sh
-}
-
-build() {
-  cd liteide-x$pkgver/build
-
-  export 

[arch-commits] Commit in (8 files)

2014-03-18 Thread Sergej Pupykin
Date: Tuesday, March 18, 2014 @ 10:45:25
  Author: spupykin
Revision: 107603

Added:
  openvswitch/
  openvswitch/repos/
  openvswitch/trunk/
  openvswitch/trunk/PKGBUILD
  openvswitch/trunk/openvswitch.install
  openvswitch/trunk/openvswitch.tmpfiles
  openvswitch/trunk/ovs-vswitchd.service
  openvswitch/trunk/ovsdb-server.service

--+
 PKGBUILD |   46 ++
 openvswitch.install  |   16 
 openvswitch.tmpfiles |1 +
 ovs-vswitchd.service |   14 ++
 ovsdb-server.service |6 ++
 5 files changed, 83 insertions(+)

Added: openvswitch/trunk/PKGBUILD
===
--- openvswitch/trunk/PKGBUILD  (rev 0)
+++ openvswitch/trunk/PKGBUILD  2014-03-18 09:45:25 UTC (rev 107603)
@@ -0,0 +1,46 @@
+# Maintainer:  Pedro Martinez-Julia (pedr...@um.es)
+# Contributor:  Matt Monaco net 0x01b dgbaley27
+
+pkgname=openvswitch
+pkgver=2.0.1
+pkgrel=1
+pkgdesc=Production Quality, Multilayer Open Virtual Switch
+url=http://openvswitch.org;
+license=(APACHE)
+arch=(x86_64 i686)
+install=openvswitch.install
+source=(http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz;
+   openvswitch.install
+   openvswitch.tmpfiles
+   ovsdb-server.service
+   ovs-vswitchd.service)
+depends=('openssl')
+makedepends=('python2')
+sha256sums=('014907bcf2f98228dfa4472ea1547871d24b8fb8192dcfff3ead1af93c433a67'
+'9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c'
+'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
+'5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657'
+'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   ./boot.sh
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --with-rundir=/run/openvswitch \
+   --sbindir=/usr/bin \
+   PYTHON=/usr/bin/python2
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   install -Dm0644 $srcdir/openvswitch.tmpfiles 
$pkgdir/usr/lib/tmpfiles.d/openvswitch.conf
+   install -Dm0644 $srcdir/ovsdb-server.service 
$pkgdir/usr/lib/systemd/system/ovsdb-server.service
+   install -Dm0644 $srcdir/ovs-vswitchd.service 
$pkgdir/usr/lib/systemd/system/ovs-vswitchd.service
+   install -dm0755 $pkgdir/etc/openvswitch
+}

Added: openvswitch/trunk/openvswitch.install
===
--- openvswitch/trunk/openvswitch.install   (rev 0)
+++ openvswitch/trunk/openvswitch.install   2014-03-18 09:45:25 UTC (rev 
107603)
@@ -0,0 +1,16 @@
+post_install() {
+
+   if [[ ! -f etc/openvswitch/conf.db ]]; then
+   
+   cmd=(ovsdb-tool create
+   etc/openvswitch/conf.db
+   usr/share/openvswitch/vswitch.ovsschema)
+
+   printf Running: %s\n ${cmd[*]}
+   ${cmd[@]}
+   fi
+}
+
+post_upgrade() {
+   post_install
+}

Added: openvswitch/trunk/openvswitch.tmpfiles
===
--- openvswitch/trunk/openvswitch.tmpfiles  (rev 0)
+++ openvswitch/trunk/openvswitch.tmpfiles  2014-03-18 09:45:25 UTC (rev 
107603)
@@ -0,0 +1 @@
+d /run/openvswitch 0770 root root -

Added: openvswitch/trunk/ovs-vswitchd.service
===
--- openvswitch/trunk/ovs-vswitchd.service  (rev 0)
+++ openvswitch/trunk/ovs-vswitchd.service  2014-03-18 09:45:25 UTC (rev 
107603)
@@ -0,0 +1,14 @@
+[Unit]
+Description= Open vSwitch Daemon
+Documentation  = man:ovs-vswitchd
+Wants  = network.target
+Before = network.target
+Requires   = ovsdb-server.service
+After  = ovsdb-server.service
+
+[Service]
+ExecStartPre   = /sbin/modprobe openvswitch
+ExecStart  = /usr/sbin/ovs-vswitchd
+
+[Install]
+WantedBy   = multi-user.target

Added: openvswitch/trunk/ovsdb-server.service
===
--- openvswitch/trunk/ovsdb-server.service  (rev 0)
+++ openvswitch/trunk/ovsdb-server.service  2014-03-18 09:45:25 UTC (rev 
107603)
@@ -0,0 +1,6 @@
+[Unit]
+Description=  Open vSwitch Database Server
+Documentation  =  man:ovsdb-server
+
+[Service]
+ExecStart  = /usr/sbin/ovsdb-server --remote=punix:/var/run/openvswitch/db.sock



[arch-commits] Commit in (8 files)

2014-03-14 Thread Anatol Pomozov
Date: Friday, March 14, 2014 @ 16:08:44
  Author: anatolik
Revision: 107209

Move fossil from AUR to [community]

Added:
  fossil/
  fossil/repos/
  fossil/trunk/
  fossil/trunk/PKGBUILD
  fossil/trunk/bash.completion
  fossil/trunk/fossil-xinetd
  fossil/trunk/fossil.service
  fossil/trunk/fossil.socket

-+
 PKGBUILD|   46 ++
 bash.completion |   33 +
 fossil-xinetd   |   23 +++
 fossil.service  |   11 +++
 fossil.socket   |   10 ++
 5 files changed, 123 insertions(+)

Added: fossil/trunk/PKGBUILD
===
--- fossil/trunk/PKGBUILD   (rev 0)
+++ fossil/trunk/PKGBUILD   2014-03-14 15:08:44 UTC (rev 107209)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol pomozov at gmail 
+# Contributor: Daniel YC Lin dlin.tw at gmail
+# Contributor: Konstantin Plotnikov kostyapl at gmail dot com
+
+pkgname=fossil
+pkgver=1.28
+_date_pkgver=20140127173344
+# NOTE: update _date_pkgver from http://www.fossil-scm.org/download.html
+pkgrel=3
+pkgdesc='Simple, high-reliability, distributed software configuration 
management'
+arch=(i686 x86_64)
+license=(BSD)
+url='http://www.fossil-scm.org'
+depends=(openssl zlib)
+source=(
+  fossil.socket
+  fossil.service
+  fossil-xinetd
+  bash.completion
+  http://www.fossil-scm.org/download/fossil-src-$_date_pkgver.tar.gz
+)
+sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
+'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
+'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
+'e22e19dba1a4be6a62af0b77ff0267c2a0f19edf2f6a9133ee64246fae5d87da'
+'aca7c5a7c39ae2880712020e089c9c12543ba656c71d8cf8ac50e3c8871baa80')
+
+build() {
+  cd fossil-src-$_date_pkgver
+  ./configure --prefix=/usr
+  # headers and translate targets are problematic with parallel jobs
+  make -j1 bld bld/headers
+  make
+}
+
+package() {
+  install -Dm644 fossil-xinetd $pkgdir/etc/xinetd.d/fossil
+  install -Dm644 fossil.socket $pkgdir/usr/lib/systemd/system/fossil.socket
+  install -Dm644 fossil.service 
$pkgdir/usr/lib/systemd/system/fossil@.service
+  install -Dm644 bash.completion 
$pkgdir/usr/share/bash-completion/completions/fossil
+
+  cd fossil-src-$_date_pkgver
+  install -Dm755 fossil $pkgdir/usr/bin/fossil
+  install -Dm644 COPYRIGHT-BSD2.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: fossil/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: fossil/trunk/bash.completion
===
--- fossil/trunk/bash.completion(rev 0)
+++ fossil/trunk/bash.completion2014-03-14 15:08:44 UTC (rev 107209)
@@ -0,0 +1,33 @@
+_fossil()
+{
+local cur prev opts
+
+#Var used by BASH
+COMPREPLY=()
+#word we are trying to complete
+cur=${COMP_WORDS[COMP_CWORD]}
+#word before the one we're trying to complete
+prev=${COMP_WORDS[COMP_CWORD-1]}
+#list of word that fossil know
+opts=add addremove all annotate bisect branch cat changes checkout 
+opts=$opts ci clean clone close co commit delete diff export extras 
+opts=$opts finfo gdiff help import info init ls merge mv new open 
+opts=$opts pull push rebuild remote-url revert rm settings sqlite3 
+opts=$opts stash status sync tag timeline ui undo unset update version
+
+case ${prev} in
+add) opts=--dotfiles --ignore ;;
+addremove) opts=--dotfiles --ignore --test ;;
+all) opts=list ls pull push rebuild sync ;;
+annotate) opts=--limit --log --filevers ;;
+bisect) opts=bad good next options reset vlist ;;
+branch) opts=list ls -R --repository ;;
+merge) opts=--nochange -n --force -f --detail
+esac
+
+compopt -o filenames
+COMPREPLY=($(compgen -fW ${opts} -- ${cur}) \
+$(compgen -d -- $cur))
+}
+
+complete -F _fossil fossil


Property changes on: fossil/trunk/bash.completion
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: fossil/trunk/fossil-xinetd
===
--- fossil/trunk/fossil-xinetd  (rev 0)
+++ fossil/trunk/fossil-xinetd  2014-03-14 15:08:44 UTC (rev 107209)
@@ -0,0 +1,23 @@
+service fossil
+{
+#better not change any of these
+type = UNLISTED
+socket_type = stream
+protocol = tcp
+wait = no
+user = root
+server = /usr/bin/fossil
+
+#only change these
+#http port, fossil will listen
+port = 8055
+
+#change this path to where your fossil repositories are
+server_args = http /var/fossil
+
+#comment next line to enable remote access
+only_from = 127.0.0.1 localhost
+
+#change to `no` to activate fossil
+disable = yes
+}

Added: 

[arch-commits] Commit in (8 files)

2014-02-21 Thread Anatol Pomozov
Date: Friday, February 21, 2014 @ 23:08:05
  Author: anatolik
Revision: 106065

rethinkdb: move from aur to community

Added:
  rethinkdb/
  rethinkdb/repos/
  rethinkdb/trunk/
  rethinkdb/trunk/PKGBUILD
  rethinkdb/trunk/build.diff
  rethinkdb/trunk/rethinkdb-tmpfile.conf
  rethinkdb/trunk/rethinkdb.install
  rethinkdb/trunk/rethinkdb.service

+
 PKGBUILD   |   64 +++
 build.diff |   20 ++
 rethinkdb-tmpfile.conf |1 
 rethinkdb.install  |   47 ++
 rethinkdb.service  |   12 
 5 files changed, 144 insertions(+)

Added: rethinkdb/trunk/PKGBUILD
===
--- rethinkdb/trunk/PKGBUILD(rev 0)
+++ rethinkdb/trunk/PKGBUILD2014-02-21 22:08:05 UTC (rev 106065)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Sigmund Lahn sigm...@lahn.no
+
+pkgname=rethinkdb
+pkgver=1.11.3
+pkgrel=1
+pkgdesc='An open-source distributed database built with love.'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses gperftools)
+makedepends=(boost python python2 subversion) # subversion is for checking out 
V8 sources
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/rethinkdb-$pkgver.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+  build.diff
+)
+sha256sums=('ab59ebe40f4a6a499b27e4ce85818f8ebe88d919d832f22384ba2cdacf0ba267'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2'
+'d2330ac0d2fd0a8f14daa4993eb49b55b0de544496e15345502fcdea2a6aaf88')
+
+prepare() {
+  cd rethinkdb-$pkgver
+  patch -p1  $srcdir/build.diff
+}
+
+build() {
+  cd rethinkdb-$pkgver
+  ./configure --fetch v8 --disable-drivers --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+check() {
+  cd rethinkdb-$pkgver
+  make build/release/rethinkdb-unittest
+  # skip some failing tests (should be fixed in 1.12)
+  # https://github.com/rethinkdb/rethinkdb/issues/1059
+  # https://github.com/rethinkdb/rethinkdb/issues/549
+  ./build/release/rethinkdb-unittest 
--gtest_filter=-TimerTest.TestApproximateWaitTimes:RDBProtocol.OvershardedSindexCreateDrop:RDBProtocol.OvershardedMissingAttr:RDBProtocol.OvershardedOverSizedKeys:RDBBtree.SindexInterruptionViaDrop:RDBBtree.SindexPostConstruct
+}
+
+package() {
+  cd rethinkdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 $srcdir/rethinkdb-tmpfile.conf 
$pkgdir/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 $srcdir/rethinkdb.service 
$pkgdir/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  cp $pkgdir/etc/rethinkdb/default.conf.sample 
$pkgdir/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -e 's|# 
pid-file=/var/run/rethinkdb/rethinkdb.pid|pid-file=/var/run/rethinkdb/default.pid|'
 \
+  -i $pkgdir/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r $pkgdir/etc/init.d
+}


Property changes on: rethinkdb/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: rethinkdb/trunk/build.diff
===
--- rethinkdb/trunk/build.diff  (rev 0)
+++ rethinkdb/trunk/build.diff  2014-02-21 22:08:05 UTC (rev 106065)
@@ -0,0 +1,20 @@
+diff --git a/mk/support.mk b/mk/support.mk
+index 821695c..7f8f857 100644
+--- a/mk/support.mk
 b/mk/support.mk
+@@ -185,9 +185,13 @@ $(V8_SRC_DIR):
+   $P MAKE v8 dependencies
+   $(EXTERN_MAKE) -C $(V8_SRC_DIR) dependencies $(SUPPORT_LOG_REDIRECT)
+ 
+-$(V8_INT_LIB): $(V8_INT_DIR)
++  ( cd $(TC_SRC_DIR)  \
++  find v8 -type f -exec sed -e 's_^#!/usr/bin/env python$$_2_; 
s_^#!/usr/bin/python$$_2_' -i {} \;  \
++  sed 's/\bpython\b/python2/' -i v8/Makefile v8/build/gyp/gyp ) 
$(SUPPORT_LOG_REDIRECT)
++
++$(V8_INT_LIB): | $(V8_INT_DIR)
+   $P MAKE v8
+-  $(EXTERN_MAKE) -C $(V8_INT_DIR) native CXXFLAGS=-Wno-array-bounds 
$(SUPPORT_LOG_REDIRECT)
++  $(EXTERN_MAKE) -C $(V8_INT_DIR) native CXXFLAGS='-Wno-error' 
$(SUPPORT_LOG_REDIRECT)
+   $P AR $@
+   find $(V8_INT_DIR) -iname *.o | grep -v '\/preparser_lib\/' | xargs 
ar cqs $(V8_INT_LIB);
+ 

Added: rethinkdb/trunk/rethinkdb-tmpfile.conf
===
--- rethinkdb/trunk/rethinkdb-tmpfile.conf  (rev 0)
+++ 

[arch-commits] Commit in (8 files)

2014-02-10 Thread Gaetan Bisson
Date: Tuesday, February 11, 2014 @ 08:32:54
  Author: bisson
Revision: 105593

initial commit for subsurface and its dependency libdivecomputer

Added:
  libdivecomputer/
  libdivecomputer/repos/
  libdivecomputer/trunk/
  libdivecomputer/trunk/PKGBUILD
  subsurface/
  subsurface/repos/
  subsurface/trunk/
  subsurface/trunk/PKGBUILD

+
 libdivecomputer/trunk/PKGBUILD |   24 
 subsurface/trunk/PKGBUILD  |   26 ++
 2 files changed, 50 insertions(+)

Added: libdivecomputer/trunk/PKGBUILD
===
--- libdivecomputer/trunk/PKGBUILD  (rev 0)
+++ libdivecomputer/trunk/PKGBUILD  2014-02-11 07:32:54 UTC (rev 105593)
@@ -0,0 +1,24 @@
+# $id$
+# Contributor: Francois Boulogne fboulogne at april dot org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=libdivecomputer
+pkgver=0.4.2
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://www.libdivecomputer.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=(http://www.libdivecomputer.org/releases/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('a57176ae6a7bd5e0ad4d19a39e5aebcfba818acc')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}


Property changes on: libdivecomputer/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: subsurface/trunk/PKGBUILD
===
--- subsurface/trunk/PKGBUILD   (rev 0)
+++ subsurface/trunk/PKGBUILD   2014-02-11 07:32:54 UTC (rev 105593)
@@ -0,0 +1,26 @@
+# $Id$
+# Contributor: Francois Boulogne fboulogne at april dot org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface.hohndel.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('qt4' 'kdeedu-marble' 'libzip' 'libxml2' 'libxslt' 'sqlite' 
'libdivecomputer' 'libusbx')
+source=(http://subsurface.hohndel.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('14370c2e91f82a6df32d44e2a0a4b20908c74465')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   qmake-qt4 -config release
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   make INSTALL_ROOT=${pkgdir} install
+} 


Property changes on: subsurface/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2014-02-05 Thread Maxime Gauduin
Date: Wednesday, February 5, 2014 @ 22:49:07
  Author: alucryd
Revision: 105353

Add libfdk-aac and fdkaac

Added:
  fdkaac/
  fdkaac/repos/
  fdkaac/trunk/
  fdkaac/trunk/PKGBUILD
  libfdk-aac/
  libfdk-aac/repos/
  libfdk-aac/trunk/
  libfdk-aac/trunk/PKGBUILD

---+
 fdkaac/trunk/PKGBUILD |   34 ++
 libfdk-aac/trunk/PKGBUILD |   33 +
 2 files changed, 67 insertions(+)

Added: fdkaac/trunk/PKGBUILD
===
--- fdkaac/trunk/PKGBUILD   (rev 0)
+++ fdkaac/trunk/PKGBUILD   2014-02-05 21:49:07 UTC (rev 105353)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: PelPix kylebl...@pelpix.info
+
+pkgname=fdkaac
+pkgver=0.5.1
+pkgrel=2
+pkgdesc='Command line encoder frontend for libfdk-aac'
+arch=('i686' 'x86_64')
+url=https://github.com/nu774/${pkgname};
+license=('custom')
+depends=('libfdk-aac')
+source=(${url}/archive/v${pkgver}.tar.gz)
+sha256sums=('95d6e9675ab03f42aa3cb642a686ffaced782a7b440563bd37ef2d4517391348')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  autoreconf -if
+  ./configure --prefix='/usr' --disable-rpath
+
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: fdkaac/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: libfdk-aac/trunk/PKGBUILD
===
--- libfdk-aac/trunk/PKGBUILD   (rev 0)
+++ libfdk-aac/trunk/PKGBUILD   2014-02-05 21:49:07 UTC (rev 105353)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: PelPix kylebl...@pelpix.info
+# Contributor: DrZaius lou[at]fakeoutdoorsman[dot]com
+
+pkgname=libfdk-aac
+pkgver=0.1.3
+pkgrel=2
+pkgdesc='Fraunhofer FDK AAC codec library'
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/opencore-amr/'
+license=('custom')
+depends=('glibc')
+source=(http://downloads.sourceforge.net/opencore-amr/${pkgname#lib}-${pkgver}.tar.gz;)
+sha256sums=('a9cb872802cfb7a2aff7a549c114c547d1e518dd60c2f85942229cc20c0d0c8d')
+
+build() {
+  cd ${pkgname#lib}-${pkgver}
+
+  ./configure --prefix='/usr' --disable-static
+  make
+}
+
+package () {
+  cd ${pkgname#lib}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -dm 755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m 644 NOTICE ${pkgdir}/usr/share/licenses/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: libfdk-aac/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2014-01-27 Thread Maxime Gauduin
Date: Monday, January 27, 2014 @ 16:09:28
  Author: alucryd
Revision: 104847

Add acpi_call and acpi_call-lts

Added:
  acpi_call-lts/
  acpi_call-lts/trunk/
  acpi_call-lts/trunk/PKGBUILD
  acpi_call-lts/trunk/acpi_call.install
  acpi_call/
  acpi_call/trunk/
  acpi_call/trunk/PKGBUILD
  acpi_call/trunk/acpi_call.install

---+
 acpi_call-lts/trunk/PKGBUILD  |   41 
 acpi_call-lts/trunk/acpi_call.install |   14 ++
 acpi_call/trunk/PKGBUILD  |   40 +++
 acpi_call/trunk/acpi_call.install |   14 ++
 4 files changed, 109 insertions(+)

Added: acpi_call/trunk/PKGBUILD
===
--- acpi_call/trunk/PKGBUILD(rev 0)
+++ acpi_call/trunk/PKGBUILD2014-01-27 15:09:28 UTC (rev 104847)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: mortzu m...@mortzu.de
+# Contributor: fnord0 fno...@riseup.net
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=1
+_extramodules=extramodules-3.12-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url=http://github.com/mkottman/${pkgname};
+license=('GPL')
+depends=('linux=3.12' 'linux3.13')
+makedepends=('linux-headers=3.12' 'linux-headers3.13')
+install=${pkgname}.install
+source=(${url}/archive/v${pkgver}.tar.gz)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KVERSION=${_kernver}
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -dm 755 ${pkgdir}/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname}.ko ${pkgdir}/usr/lib/modules/${_extramodules}
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/${pkgname}.ko
+  echo ${pkgname}  ${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 ${pkgdir}/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
${pkgdir}/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: acpi_call/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: acpi_call/trunk/acpi_call.install
===
--- acpi_call/trunk/acpi_call.install   (rev 0)
+++ acpi_call/trunk/acpi_call.install   2014-01-27 15:09:28 UTC (rev 104847)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-3.12-ARCH
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Added: acpi_call-lts/trunk/PKGBUILD
===
--- acpi_call-lts/trunk/PKGBUILD(rev 0)
+++ acpi_call-lts/trunk/PKGBUILD2014-01-27 15:09:28 UTC (rev 104847)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: mortzu m...@mortzu.de
+# Contributor: fnord0 fno...@riseup.net
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=1
+_extramodules=extramodules-3.10-lts
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url=http://github.com/mkottman/${pkgname%-*};
+license=('GPL')
+depends=('linux-lts=3.10.26')
+makedepends=('linux-lts-headers=3.10.26')
+provides=(${pkgname%-*})
+install=${pkgname%-*}.install
+source=(${url}/archive/v${pkgver}.tar.gz)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+build() {
+  cd ${pkgname%-*}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KVERSION=${_kernver}
+}
+
+package() {
+  cd ${pkgname%-*}-${pkgver}
+
+  install -dm 755 ${pkgdir}/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname%-*}.ko ${pkgdir}/usr/lib/modules/${_extramodules}
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko
+  echo ${pkgname%-*}  ${pkgdir}/usr/lib/modules-load.d/${pkgname%-*}.conf
+
+  install -dm 755 ${pkgdir}/usr/share/${pkgname%-*}
+  cp -dr --no-preserve='ownership' {examples,support} 
${pkgdir}/usr/share/${pkgname%-*}/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: acpi_call-lts/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: acpi_call-lts/trunk/acpi_call.install
===
--- acpi_call-lts/trunk/acpi_call.install   (rev 0)
+++ acpi_call-lts/trunk/acpi_call.install   2014-01-27 15:09:28 UTC (rev 
104847)
@@ -0,0 +1,14 @@
+post_install() {
+  

[arch-commits] Commit in (8 files)

2013-12-21 Thread Andrea Scarpino
Date: Saturday, December 21, 2013 @ 15:03:17
  Author: andrea
Revision: 202380

Those needs kdoctools at build time

Modified:
  kconfigwidgets/trunk/PKGBUILD
  kde4support/trunk/PKGBUILD
  kded/trunk/PKGBUILD
  kdesignerplugin/trunk/PKGBUILD
  kio/trunk/PKGBUILD
  kjsembed/trunk/PKGBUILD
  kross/trunk/PKGBUILD
  kservice/trunk/PKGBUILD

+
 kconfigwidgets/trunk/PKGBUILD  |6 +++---
 kde4support/trunk/PKGBUILD |2 +-
 kded/trunk/PKGBUILD|2 +-
 kdesignerplugin/trunk/PKGBUILD |2 +-
 kio/trunk/PKGBUILD |2 +-
 kjsembed/trunk/PKGBUILD|2 +-
 kross/trunk/PKGBUILD   |2 +-
 kservice/trunk/PKGBUILD|2 +-
 8 files changed, 10 insertions(+), 10 deletions(-)

Modified: kconfigwidgets/trunk/PKGBUILD
===
--- kconfigwidgets/trunk/PKGBUILD   2013-12-21 14:02:00 UTC (rev 202379)
+++ kconfigwidgets/trunk/PKGBUILD   2013-12-21 14:03:17 UTC (rev 202380)
@@ -8,9 +8,9 @@
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/kconfigwidgets'
 license=('LGPL')
-depends=('kauth' 'kcodecs' 'kconfig' 'karchive' 'kdoctools' 'kguiaddons'
- 'ki18n' 'kwidgetsaddons')
-makedepends=('extra-cmake-modules' 'git')
+depends=('kauth' 'kcodecs' 'kconfig' 'karchive' 'kguiaddons' 'ki18n'
+ 'kwidgetsaddons')
+makedepends=('extra-cmake-modules' 'git' 'kdoctools')
 groups=('kf5')
 source=('git://anongit.kde.org/kconfigwidgets.git')
 md5sums=('SKIP')

Modified: kde4support/trunk/PKGBUILD
===
--- kde4support/trunk/PKGBUILD  2013-12-21 14:02:00 UTC (rev 202379)
+++ kde4support/trunk/PKGBUILD  2013-12-21 14:03:17 UTC (rev 202380)
@@ -9,7 +9,7 @@
 url='https://projects.kde.org/projects/frameworks/kde4support'
 license=('LGPL')
 depends=('kio' 'kunitconversion')
-makedepends=('extra-cmake-modules' 'git')
+makedepends=('extra-cmake-modules' 'git' 'kdoctools')
 groups=('kf5')
 source=('git://anongit.kde.org/kde4support.git')
 md5sums=('SKIP')

Modified: kded/trunk/PKGBUILD
===
--- kded/trunk/PKGBUILD 2013-12-21 14:02:00 UTC (rev 202379)
+++ kded/trunk/PKGBUILD 2013-12-21 14:03:17 UTC (rev 202380)
@@ -9,7 +9,7 @@
 url='https://projects.kde.org/projects/frameworks/kded'
 license=('LGPL')
 depends=('kservice' 'kinit')
-makedepends=('extra-cmake-modules' 'git')
+makedepends=('extra-cmake-modules' 'git' 'kdoctools')
 groups=('kf5')
 source=('git://anongit.kde.org/kded.git')
 md5sums=('SKIP')

Modified: kdesignerplugin/trunk/PKGBUILD
===
--- kdesignerplugin/trunk/PKGBUILD  2013-12-21 14:02:00 UTC (rev 202379)
+++ kdesignerplugin/trunk/PKGBUILD  2013-12-21 14:03:17 UTC (rev 202380)
@@ -9,7 +9,7 @@
 url='https://projects.kde.org/projects/frameworks/kdesignerplugin'
 license=('LGPL')
 depends=('kio' 'kplotting')
-makedepends=('extra-cmake-modules' 'git' 'qt5-tools')
+makedepends=('extra-cmake-modules' 'git' 'qt5-tools' 'kdoctools')
 groups=('kf5')
 source=('git://anongit.kde.org/kdesignerplugin.git')
 md5sums=('SKIP')

Modified: kio/trunk/PKGBUILD
===
--- kio/trunk/PKGBUILD  2013-12-21 14:02:00 UTC (rev 202379)
+++ kio/trunk/PKGBUILD  2013-12-21 14:03:17 UTC (rev 202380)
@@ -10,7 +10,7 @@
 license=('LGPL')
 depends=('krb5' 'solid' 'knotifications' 'kjobwidgets' 'kbookmarks'
  'qt5-script')
-makedepends=('extra-cmake-modules' 'git')
+makedepends=('extra-cmake-modules' 'git' 'kdoctools')
 groups=('kf5')
 install=kio.install
 source=('git://anongit.kde.org/kio.git')

Modified: kjsembed/trunk/PKGBUILD
===
--- kjsembed/trunk/PKGBUILD 2013-12-21 14:02:00 UTC (rev 202379)
+++ kjsembed/trunk/PKGBUILD 2013-12-21 14:03:17 UTC (rev 202380)
@@ -9,7 +9,7 @@
 url='https://projects.kde.org/projects/frameworks/kjsembed'
 license=('LGPL')
 depends=('ki18n' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'git' 'qt5-tools')
+makedepends=('extra-cmake-modules' 'git' 'qt5-tools' 'kdoctools')
 groups=('kf5')
 source=('git://anongit.kde.org/kjsembed.git')
 md5sums=('SKIP')

Modified: kross/trunk/PKGBUILD
===
--- kross/trunk/PKGBUILD2013-12-21 14:02:00 UTC (rev 202379)
+++ kross/trunk/PKGBUILD2013-12-21 14:03:17 UTC (rev 202380)
@@ -9,7 +9,7 @@
 url='https://projects.kde.org/projects/frameworks/kross'
 license=('LGPL')
 depends=('kparts')
-makedepends=('extra-cmake-modules' 'git')
+makedepends=('extra-cmake-modules' 'git' 'kdoctools')
 groups=('kf5')
 source=('git://anongit.kde.org/kross.git')
 md5sums=('SKIP')

Modified: kservice/trunk/PKGBUILD
===
--- kservice/trunk/PKGBUILD 2013-12-21 

[arch-commits] Commit in (8 files)

2013-12-13 Thread Ronald van Haren
Date: Friday, December 13, 2013 @ 21:37:45
  Author: ronald
Revision: 201522

add enlightenment16

Added:
  enlightenment16/
  enlightenment16/repos/
  enlightenment16/repos/extra-i686/
  enlightenment16/repos/extra-i686/PKGBUILD
  enlightenment16/repos/extra-x86_64/
  enlightenment16/repos/extra-x86_64/PKGBUILD
  enlightenment16/trunk/
  enlightenment16/trunk/PKGBUILD

-+
 repos/extra-i686/PKGBUILD   |   39 +++
 repos/extra-x86_64/PKGBUILD |   39 +++
 trunk/PKGBUILD  |   41 +
 3 files changed, 119 insertions(+)

Added: enlightenment16/repos/extra-i686/PKGBUILD
===
--- enlightenment16/repos/extra-i686/PKGBUILD   (rev 0)
+++ enlightenment16/repos/extra-i686/PKGBUILD   2013-12-13 20:37:45 UTC (rev 
201522)
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 197929 2013-10-30 11:44:06Z allan $
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=enlightenment
+pkgver=1.0.13
+_themever=1.0.1
+pkgrel=1
+pkgdesc=A fast, flexible, and very extensible Window Manager
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD' 'custom')
+depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
+ 'libxrandr' 'libpulse')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
+
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
+sha1sums=('bcb74385fb6d0732f735f27264ae02b539d136c9'
+  'ae34e2df1294198795736bf953bf695aba93b710')
+
+build() {
+  cd ${srcdir}/e16-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-sound-pulse
+  make
+
+  cd ${srcdir}/e16-themes-${_themever}
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd ${srcdir}/e16-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-gnome.sh 
${pkgdir}/usr/bin/e16-gnome
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-kde.sh 
${pkgdir}/usr/bin/e16-kde
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  install -D -m644 fonts/COPYRIGHT.Vera 
${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT.Vera
+
+  cd ${srcdir}/e16-themes-${_themever}
+  make DESTDIR=${pkgdir} install
+  chown -R root:root ${pkgdir}/usr/share/*
+}

Added: enlightenment16/repos/extra-x86_64/PKGBUILD
===
--- enlightenment16/repos/extra-x86_64/PKGBUILD (rev 0)
+++ enlightenment16/repos/extra-x86_64/PKGBUILD 2013-12-13 20:37:45 UTC (rev 
201522)
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 197929 2013-10-30 11:44:06Z allan $
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=enlightenment
+pkgver=1.0.13
+_themever=1.0.1
+pkgrel=1
+pkgdesc=A fast, flexible, and very extensible Window Manager
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD' 'custom')
+depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
+ 'libxrandr' 'libpulse')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
+
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
+sha1sums=('bcb74385fb6d0732f735f27264ae02b539d136c9'
+  'ae34e2df1294198795736bf953bf695aba93b710')
+
+build() {
+  cd ${srcdir}/e16-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-sound-pulse
+  make
+
+  cd ${srcdir}/e16-themes-${_themever}
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd ${srcdir}/e16-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-gnome.sh 
${pkgdir}/usr/bin/e16-gnome
+  install -D -m755 ${pkgdir}/usr/share/e16/misc/Xclients.e16-kde.sh 
${pkgdir}/usr/bin/e16-kde
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+  install -D -m644 fonts/COPYRIGHT.Vera 
${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT.Vera
+
+  cd ${srcdir}/e16-themes-${_themever}
+  make DESTDIR=${pkgdir} install
+  chown -R root:root ${pkgdir}/usr/share/*
+}

Added: enlightenment16/trunk/PKGBUILD
===
--- enlightenment16/trunk/PKGBUILD  (rev 0)
+++ enlightenment16/trunk/PKGBUILD  2013-12-13 20:37:45 UTC (rev 201522)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=enlightenment16
+_pkgname=enlightenment
+pkgver=1.0.13
+_themever=1.0.1
+pkgrel=2
+pkgdesc=A fast, flexible, and very extensible Window Manager
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD' 'custom')
+depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \
+ 'libxrandr' 'libpulse')
+replaces=('enlightenment')
+source=(http://downloads.sourceforge.net/sourceforge/${_pkgname}/e16-${pkgver}.tar.gz
 \
+ 

[arch-commits] Commit in (8 files)

2013-12-12 Thread Ronald van Haren
Date: Thursday, December 12, 2013 @ 20:52:29
  Author: ronald
Revision: 201490

bringup efl and emotion_generic_players as replacement of a lot of 
enlightenment libs

Added:
  efl/
  efl/repos/
  efl/trunk/
  efl/trunk/PKGBUILD
  emotion_generic_players/
  emotion_generic_players/repos/
  emotion_generic_players/trunk/
  emotion_generic_players/trunk/PKGBUILD

+
 efl/trunk/PKGBUILD |   44 +++
 emotion_generic_players/trunk/PKGBUILD |   43 ++
 2 files changed, 87 insertions(+)

Added: efl/trunk/PKGBUILD
===
--- efl/trunk/PKGBUILD  (rev 0)
+++ efl/trunk/PKGBUILD  2013-12-12 19:52:29 UTC (rev 201490)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 199714 2013-11-15 10:46:56Z ronald $
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=efl
+pkgver=1.8.2
+pkgrel=1
+pkgdesc=Enlightenment Foundation Libraries
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD')
+depends=()
+replaces=('ecore' 'e_dbus' 'edje' 'eet' 'eeze' 'efreet' 'eina' 'eio' 'embryo' 
+   'emotion' 'ethumb' 'evas')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  export CFLAGS=-fvisibility=hidden -ffunction-sections -fdata-sections 
${CFLAGS}
+  export CXXFLAGS=-fvisibility=hidden -ffunction-sections -fdata-sections 
${CXXFLAGS}
+  export LDFLAGS=-fvisibility=hidden -ffunction-sections -fdata-sections 
-Wl,--gc-sections -Wl,--as-needed  ${LDFLAGS}
+
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-posix-threads \
+--disable-debug-threads \
+--enable-inotify \
+--disable-install-examples \
+--disable-doc
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install license files
+  install -Dm644 $srcdir/$pkgname-$pkgver/COPYING \
+   $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+

Added: emotion_generic_players/trunk/PKGBUILD
===
--- emotion_generic_players/trunk/PKGBUILD  (rev 0)
+++ emotion_generic_players/trunk/PKGBUILD  2013-12-12 19:52:29 UTC (rev 
201490)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 199714 2013-11-15 10:46:56Z ronald $
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=emotion_generic_players
+pkgver=1.8.0
+pkgrel=1
+pkgdesc=Enlightenment Foundation Libraries
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('BSD')
+depends=()
+options=('!emptydirs')
+source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  export CFLAGS=-fvisibility=hidden -ffunction-sections -fdata-sections 
${CFLAGS}
+  export CXXFLAGS=-fvisibility=hidden -ffunction-sections -fdata-sections 
${CXXFLAGS}
+  export LDFLAGS=-fvisibility=hidden -ffunction-sections -fdata-sections 
-Wl,--gc-sections -Wl,--as-needed  ${LDFLAGS}
+
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-generic \
+--enable-gstreamer \
+--disable-generic-vlc \
+--disable-xine \
+--disable-install-examples \
+--disable-doc
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install license files
+  install -Dm644 $srcdir/$pkgname-$pkgver/COPYING \
+   $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+



[arch-commits] Commit in (8 files)

2013-12-09 Thread Sergej Pupykin
Date: Monday, December 9, 2013 @ 15:53:34
  Author: spupykin
Revision: 102369

Added:
  ziproxy/
  ziproxy/repos/
  ziproxy/trunk/
  ziproxy/trunk/PKGBUILD
  ziproxy/trunk/build-fix.patch
  ziproxy/trunk/ziproxy.install
  ziproxy/trunk/ziproxy.logrotate
  ziproxy/trunk/ziproxy.xinetd

---+
 PKGBUILD  |   58 
 build-fix.patch   |   23 
 ziproxy.install   |   11 +
 ziproxy.logrotate |   13 +++
 ziproxy.xinetd|   14 
 5 files changed, 119 insertions(+)

Added: ziproxy/trunk/PKGBUILD
===
--- ziproxy/trunk/PKGBUILD  (rev 0)
+++ ziproxy/trunk/PKGBUILD  2013-12-09 14:53:34 UTC (rev 102369)
@@ -0,0 +1,58 @@
+# Contributor: Yejun Yang yejunx AT gmail DOT com
+
+pkgname=ziproxy
+pkgver=3.3.0
+pkgrel=4
+pkgdesc=forwarding, non-caching, compressing HTTP proxy server
+arch=('i686' 'x86_64')
+url=http://ziproxy.sourceforge.net/;
+license=('GPL2')
+depends=('giflib' 'libpng' 'libjpeg' 'zlib' 'jasper' 'libsasl')
+backup=(etc/ziproxy/ziproxy.conf
+   etc/ziproxy/bo_exception.list
+   etc/ziproxy/http.passwd
+   etc/ziproxy/noprocess.list
+   etc/ziproxy/replace.list
+   etc/xinetd.d/ziproxy
+   var/lib/ziproxy/error/400.html
+   var/lib/ziproxy/error/404.html
+   var/lib/ziproxy/error/407.html
+   var/lib/ziproxy/error/408.html
+   var/lib/ziproxy/error/409.html
+   var/lib/ziproxy/error/500.html
+   var/lib/ziproxy/error/503.html)
+install=ziproxy.install
+source=(http://downloads.sourceforge.net/project/ziproxy/ziproxy/ziproxy-$pkgver/ziproxy-$pkgver.tar.bz2
+   ziproxy.logrotate
+   ziproxy.xinetd
+   build-fix.patch)
+md5sums=('a8fda01591d455bb23c64c9c5ed3980d'
+ 'feb35264391c790cedd5e995182b5ff5'
+ '3d2f9208b5ab6738c136049e1fd2e433'
+ '0eb798863234ee0e9066812ef2a73539')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -p1 $srcdir/build-fix.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  [ -f Makefile ] || ./configure --prefix=/usr --with-jasper
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/var/lib/ziproxy/error
+  install -d $pkgdir/etc/conf.d
+
+  sed -i 's#var/ziproxy#var/lib/ziproxy#' etc/ziproxy/ziproxy.conf
+  cp -a etc/ziproxy $pkgdir/etc/ziproxy
+  install -m644 var/ziproxy/error/* $pkgdir/var/lib/ziproxy/error
+  echo ZIPROXY_ARGS=\-c /etc/ziproxy/ziproxy.conf\ 
$pkgdir/etc/conf.d/ziproxy
+  install -Dm0644 $srcdir/ziproxy.logrotate $pkgdir/etc/logrotate.d/ziproxy
+  install -Dm0644 $srcdir/ziproxy.xinetd $pkgdir/etc/xinetd.d/ziproxy
+}

Added: ziproxy/trunk/build-fix.patch
===
--- ziproxy/trunk/build-fix.patch   (rev 0)
+++ ziproxy/trunk/build-fix.patch   2013-12-09 14:53:34 UTC (rev 102369)
@@ -0,0 +1,23 @@
+diff -wbBur ziproxy-3.3.0/src/image.c ziproxy-3.3.0.q/src/image.c
+--- ziproxy-3.3.0/src/image.c  2013-01-04 20:48:50.0 +0400
 ziproxy-3.3.0.q/src/image.c2013-08-11 00:24:03.868670477 +0400
+@@ -93,6 +93,10 @@
+ #define MIN_INSIZE_TO_JPEG 600
+ #define MIN_INSIZE_TO_JP2K 800
+ 
++
++#define false 0
++#define true !!0
++
+ //Forwards. There are more utility functions, but they're used only once.
+ static raw_bitmap *new_raw_bitmap();
+ 
+@@ -905,7 +909,7 @@
+   desc.size=insize;
+   desc.x.pos=0;
+ 
+-  if ((GifFile = DGifOpen((void*)desc, gif_mem_input)) == NULL) 
++  if ((GifFile = DGifOpen((void*)desc, gif_mem_input, NULL)) == NULL) 
+   return( IMG_RET_ERR_UNKNOWN + IMG_RET_FLG_WHILE_DECOMP);//more 
possible reasons
+ 
+   bmp = new_raw_bitmap();

Added: ziproxy/trunk/ziproxy.install
===
--- ziproxy/trunk/ziproxy.install   (rev 0)
+++ ziproxy/trunk/ziproxy.install   2013-12-09 14:53:34 UTC (rev 102369)
@@ -0,0 +1,11 @@
+post_install() {
+  mkdir -p /var/log/ziproxy  \
+  chown -R root:proxy /var/log/ziproxy  \
+  chmod -R ug+w /var/log/ziproxy
+}
+
+post_upgrade() {
+  mkdir -p /var/log/ziproxy  \
+  chown -R root:proxy /var/log/ziproxy  \
+  chmod -R ug+w /var/log/ziproxy
+}

Added: ziproxy/trunk/ziproxy.logrotate
===
--- ziproxy/trunk/ziproxy.logrotate (rev 0)
+++ ziproxy/trunk/ziproxy.logrotate 2013-12-09 14:53:34 UTC (rev 102369)
@@ -0,0 +1,13 @@
+/var/log/ziproxy/access.log {
+   su root proxy
+   weekly
+   missingok
+   rotate 10
+   compress
+   delaycompress
+   ifempty
+   nomail
+   postrotate
+   killall -HUP ziproxy 1/dev/null 2/dev/null || true
+   endscript
+}

Added: ziproxy/trunk/ziproxy.xinetd

[arch-commits] Commit in (8 files)

2013-11-29 Thread Evgeniy Alekseev
Date: Friday, November 29, 2013 @ 19:10:25
  Author: arcanis
Revision: 101641

Added g15daemon 1.9.5.3-5

Added:
  g15daemon/
  g15daemon/repos/
  g15daemon/trunk/
  g15daemon/trunk/PKGBUILD
  g15daemon/trunk/g15daemon-1.9.5.3-config-write.patch
  g15daemon/trunk/g15daemon-1.9.5.3-recv-oob-answer.patch
  g15daemon/trunk/g15daemon-1.9.5.3-uinput.patch
  g15daemon/trunk/g15daemon.service

-+
 PKGBUILD|   43 ++
 g15daemon-1.9.5.3-config-write.patch|   12 
 g15daemon-1.9.5.3-recv-oob-answer.patch |   11 +++
 g15daemon-1.9.5.3-uinput.patch  |   35 
 g15daemon.service   |   11 +++
 5 files changed, 112 insertions(+)

Added: g15daemon/trunk/PKGBUILD
===
--- g15daemon/trunk/PKGBUILD(rev 0)
+++ g15daemon/trunk/PKGBUILD2013-11-29 18:10:25 UTC (rev 101641)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis.arch at gmail dot com
+# Contributor: Valeriy Lyasotskiy ones...@ukr.net
+
+pkgname=g15daemon
+pkgver=1.9.5.3
+pkgrel=5
+pkgdesc=A daemon that makes it possible to use the G-Buttons and draw on the 
G15 LCD
+arch=('i686' 'x86_64')
+url=http://www.g15tools.com/;
+license=('GPL')
+depends=('libg15render=1.2')
+options=(!libtool)
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+g15daemon.service
+${pkgname}-${pkgver}-uinput.patch
+${pkgname}-${pkgver}-config-write.patch
+${pkgname}-${pkgver}-recv-oob-answer.patch)
+md5sums=('2cd8b4f1bd039bf804f1f472216742f0'
+ 'c259d875f33a2fba53f9c2200a913c11'
+ '6c3d5b2b7c585dc095118f80e4d72204'
+ 'd47755aa8387e89fedffdb28ff3b18de'
+ '275c28e4950e05336086419873ff8e45')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/${pkgname}-${pkgver}-uinput.patch
+  patch -Np1 -i ${srcdir}/${pkgname}-${pkgver}-config-write.patch
+  patch -Np1 -i ${srcdir}/${pkgname}-${pkgver}-recv-oob-answer.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m 644 ${srcdir}/g15daemon.service \
+${pkgdir}/usr/lib/systemd/system/g15daemon.service
+}


Property changes on: g15daemon/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: g15daemon/trunk/g15daemon-1.9.5.3-config-write.patch
===
--- g15daemon/trunk/g15daemon-1.9.5.3-config-write.patch
(rev 0)
+++ g15daemon/trunk/g15daemon-1.9.5.3-config-write.patch2013-11-29 
18:10:25 UTC (rev 101641)
@@ -0,0 +1,12 @@
+diff -Nuar g15daemon-1.9.5.3.orig/g15daemon/utility_funcs.c 
g15daemon-1.9.5.3/g15daemon/utility_funcs.c
+--- g15daemon-1.9.5.3.orig/g15daemon/utility_funcs.c   2008-01-26 
07:02:07.0 +0200
 g15daemon-1.9.5.3/g15daemon/utility_funcs.c2011-11-09 
09:19:43.0 +0200
+@@ -356,7 +356,7 @@
+ config_items_t * item=NULL;
+ char line[1024];
+ 
+-config_fd = open(filename,O_CREAT|O_RDWR|O_TRUNC);
++config_fd = open(filename,O_CREAT|O_RDWR|O_TRUNC, 0644);
+ if(config_fd){
+ snprintf(line,1024,# G15Daemon Configuration File\n# any items entered 
before a [section] header\n# will be in the Global config space\n# comments you 
wish to keep should start with a semicolon';'\n);
+ write(config_fd,line,strlen(line));

Added: g15daemon/trunk/g15daemon-1.9.5.3-recv-oob-answer.patch
===
--- g15daemon/trunk/g15daemon-1.9.5.3-recv-oob-answer.patch 
(rev 0)
+++ g15daemon/trunk/g15daemon-1.9.5.3-recv-oob-answer.patch 2013-11-29 
18:10:25 UTC (rev 101641)
@@ -0,0 +1,11 @@
+--- g15daemon-1.9.5.3.orig/libg15daemon_client/g15daemon_net.c
 g15daemon-1.9.5.3/libg15daemon_client/g15daemon_net.c
+@@ -217,7 +217,7 @@
+ if(poll(pfd,1,100)0){
+if(pfd[0].revents  POLLPRI  !(pfd[0].revents  POLLERR || 
pfd[0].revents  POLLHUP || pfd[0].revents  POLLNVAL)) { 
+  memset(packet,0,sizeof(packet));
+- msgret = recv(sock, packet, 10 , MSG_OOB);
++ msgret = recv(sock, packet, sizeof(packet) , MSG_OOB);
+  if (msgret  1) {
+   return -1;
+   }

Added: g15daemon/trunk/g15daemon-1.9.5.3-uinput.patch
===
--- g15daemon/trunk/g15daemon-1.9.5.3-uinput.patch  
(rev 0)
+++ g15daemon/trunk/g15daemon-1.9.5.3-uinput.patch  2013-11-29 18:10:25 UTC 
(rev 101641)

[arch-commits] Commit in (8 files)

2013-11-21 Thread Bartłomiej Piotrowski
Date: Thursday, November 21, 2013 @ 13:18:22
  Author: bpiotrowski
Revision: 101268

extra2community: Moving arj from extra to community

Added:
  arj/
  arj/repos/
  arj/trunk/
  arj/trunk/001_arches_align.patch
  arj/trunk/002_no_remove_static_const.patch
  arj/trunk/003_64_bit_clean.patch
  arj/trunk/PKGBUILD
  arj/trunk/arj-3.10.22-custom-printf.patch

--+
 001_arches_align.patch   |   34 ++
 002_no_remove_static_const.patch |   20 +++
 003_64_bit_clean.patch   |  194 +
 PKGBUILD |   53 ++
 arj-3.10.22-custom-printf.patch  |   15 ++
 5 files changed, 316 insertions(+)

Added: arj/trunk/001_arches_align.patch
===
--- arj/trunk/001_arches_align.patch(rev 0)
+++ arj/trunk/001_arches_align.patch2013-11-21 12:18:22 UTC (rev 101268)
@@ -0,0 +1,34 @@
+#DPATCHLEVEL=1
+diff -Naur arj-3.10.19.orig/arj_proc.c arj-3.10.19/arj_proc.c
+--- arj-3.10.19.orig/arj_proc.c2004-02-20 14:18:52.0 +0100
 arj-3.10.22/arj_proc.c 2004-04-08 14:06:58.0 +0200
+@@ -2898,7 +2898,7 @@
+ }
+ #endif
+ 
+-#if defined(WORDS_BIGENDIAN)!defined(ARJDISP)!defined(REGISTER)
++#if (defined(WORDS_BIGENDIAN) || defined(ALIGN_POINTERS))  
!defined(ARJDISP)  !defined(REGISTER)
+ /* Model-independent routine to get 2 bytes from far RAM */
+ 
+ unsigned int mget_word(char FAR *p)
+diff -Naur arj-3.10.19.orig/arj_proc.h arj-3.10.19/arj_proc.h
+--- arj-3.10.19.orig/arj_proc.h2004-01-25 01:40:00.0 +0100
 arj-3.10.22/arj_proc.h 2004-04-08 14:07:18.0 +0200
+@@ -12,7 +12,7 @@
+ 
+ #define mget_byte(p) (*(unsigned char FAR *)(p)0xFF)
+ #define mput_byte(c, p) *(unsigned char FAR *)(p)=(unsigned char)(c)
+-#ifndef WORDS_BIGENDIAN
++#if !defined(ALIGN_POINTERS)  !defined(WORDS_BIGENDIAN)
+ #define mget_word(p) (*(unsigned short *)(p)0x)
+ #define mput_word(w,p) (*(unsigned short *)(p)=(unsigned short)(w))
+ #define mget_dword(p) (*(unsigned long *)(p))
+@@ -60,7 +60,7 @@
+ void unpack_mem(struct mempack *mempack);
+ void strip_lf(char *str);
+ char *ltrim(char *str);
+-#ifdef WORDS_BIGENDIAN
++#if defined(ALIGN_POINTERS) || defined(WORDS_BIGENDIAN)
+ unsigned int mget_word(char FAR *p);
+ unsigned long mget_dword(char FAR *p);
+ void mput_word(unsigned int w, char FAR *p);

Added: arj/trunk/002_no_remove_static_const.patch
===
--- arj/trunk/002_no_remove_static_const.patch  (rev 0)
+++ arj/trunk/002_no_remove_static_const.patch  2013-11-21 12:18:22 UTC (rev 
101268)
@@ -0,0 +1,20 @@
+#DPATCHLEVEL=1
+diff -Naur arj-3.10.22.orig/gnu/makefile.in arj-3.10.22/gnu/makefile.in
+--- arj-3.10.22.orig/gnu/makefile.in   2004-04-17 14:28:06.0 +0300
 arj-3.10.22/gnu/makefile.in2005-08-04 21:50:24.0 +0300
+@@ -192,6 +192,15 @@
+ dispose:
+ 
+ #
++# XXX: Do not use -O2, it removes the static const variable with gcc 4.x
++#
++
++INTEGR_DIRS = $(ARJ_DIR) $(REARJ_DIR) $(ARJCRYPT_DIR) $(REGISTER_DIR)
++
++$(patsubst %,%/integr.o, $(INTEGR_DIRS)): $(SRC_DIR)/integr.c
++  $(CC) -Wall -g -c -o$@ $
++
++#
+ # The tools
+ #
+ 

Added: arj/trunk/003_64_bit_clean.patch
===
--- arj/trunk/003_64_bit_clean.patch(rev 0)
+++ arj/trunk/003_64_bit_clean.patch2013-11-21 12:18:22 UTC (rev 101268)
@@ -0,0 +1,194 @@
+#DPATCHLEVEL=1
+diff -Naur -x .svn -x CVS arj-3.10.22.orig/arj_arcv.c arj-3.10.22/arj_arcv.c
+--- arj-3.10.22.orig/arj_arcv.c2005-06-21 22:53:12.0 +0300
 arj-3.10.22/arj_arcv.c 2005-11-24 02:50:31.0 +0200
+@@ -59,27 +59,27 @@
+ #define setup_hput(ptr) (tmp_hptr=(ptr))
+ 
+ #define hget_byte() (*(tmp_hptr++)0xFF)
+-#define hput_byte(c) (*(tmp_hptr++)=(char) (c))
++#define hput_byte(c) (*(tmp_hptr++)=(uint8_t) (c))
+ 
+ /* Reads two bytes from the header, incrementing the pointer */
+ 
+-static unsigned int hget_word()
++static uint16_t hget_word()
+ {
+- unsigned int result;
++ uint16_t result;
+ 
+  result=mget_word(tmp_hptr);
+- tmp_hptr+=sizeof(short);
++ tmp_hptr+=sizeof(uint16_t);
+  return result;
+ }
+ 
+ /* Reads four bytes from the header, incrementing the pointer */
+ 
+-static unsigned long hget_longword()
++static uint32_t hget_longword()
+ {
+- unsigned long result;
++ uint32_t result;
+ 
+  result=mget_dword(tmp_hptr);
+- tmp_hptr+=sizeof(unsigned long);
++ tmp_hptr+=sizeof(uint32_t);
+  return result;
+ }
+ 
+@@ -87,18 +87,18 @@
+ 
+ /* Writes two bytes to the header, incrementing the pointer */
+ 
+-static void hput_word(unsigned int w)
++static void hput_word(uint16_t w)
+ {
+  mput_word(w,tmp_hptr); 
+- tmp_hptr+=sizeof(unsigned short);
++ tmp_hptr+=sizeof(uint16_t);
+ }
+ 
+ /* Writes four bytes to the header, incrementing the pointer */

[arch-commits] Commit in (8 files)

2013-11-14 Thread Sergej Pupykin
Date: Thursday, November 14, 2013 @ 10:51:14
  Author: spupykin
Revision: 100975

Added:
  ejabberd-mod_mysql/
  ejabberd-mod_mysql/repos/
  ejabberd-mod_mysql/trunk/
  ejabberd-mod_mysql/trunk/PKGBUILD
  ejabberd-mod_pgsql/
  ejabberd-mod_pgsql/repos/
  ejabberd-mod_pgsql/trunk/
  ejabberd-mod_pgsql/trunk/PKGBUILD

---+
 ejabberd-mod_mysql/trunk/PKGBUILD |   29 +
 ejabberd-mod_pgsql/trunk/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Added: ejabberd-mod_mysql/trunk/PKGBUILD
===
--- ejabberd-mod_mysql/trunk/PKGBUILD   (rev 0)
+++ ejabberd-mod_mysql/trunk/PKGBUILD   2013-11-14 09:51:14 UTC (rev 100975)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 100822 2013-11-11 12:55:23Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=ejabberd-mod_mysql
+pkgver=20131114
+pkgrel=1
+pkgdesc=ejabberd mysql module
+arch=(any)
+url=https://github.com/processone/mysql;
+license=('BSD')
+depends=('ejabberd')
+makedepends=('git' 'rebar')
+options=()
+replaces=('ejabberd-mod_mysql-svn')
+source=(git://github.com/processone/mysql.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/mysql
+  make
+}
+
+package() {
+  cd $srcdir/mysql
+  install -d -m 0755 $pkgdir/usr/lib/ejabberd
+  cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
+  install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Added: ejabberd-mod_pgsql/trunk/PKGBUILD
===
--- ejabberd-mod_pgsql/trunk/PKGBUILD   (rev 0)
+++ ejabberd-mod_pgsql/trunk/PKGBUILD   2013-11-14 09:51:14 UTC (rev 100975)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 100822 2013-11-11 12:55:23Z spupykin $
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=ejabberd-mod_pgsql
+pkgver=20131114
+pkgrel=1
+pkgdesc=ejabberd pgsql module
+arch=(any)
+url=https://github.com/processone/pgsql;
+license=('BSD')
+depends=('ejabberd')
+makedepends=('git' 'rebar')
+options=()
+replaces=('ejabberd-mod_pgsql-svn')
+source=(git://github.com/processone/pgsql.git)
+md5sums=('SKIP')
+
+build() {
+  cd $srcdir/pgsql
+  make
+}
+
+package() {
+  cd $srcdir/pgsql
+  install -d -m 0755 $pkgdir/usr/lib/ejabberd
+  cp -r ebin $pkgdir/usr/lib/ejabberd/ebin
+  install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}



[arch-commits] Commit in (8 files)

2013-10-24 Thread Maxime Gauduin
Date: Thursday, October 24, 2013 @ 15:12:37
  Author: alucryd
Revision: 99109

Add granite and noise

Added:
  granite/
  granite/trunk/
  granite/trunk/PKGBUILD
  granite/trunk/granite.install
  noise/
  noise/trunk/
  noise/trunk/PKGBUILD
  noise/trunk/noise.install

---+
 granite/trunk/PKGBUILD|   36 
 granite/trunk/granite.install |   13 +
 noise/trunk/PKGBUILD  |   40 
 noise/trunk/noise.install |   17 +
 4 files changed, 106 insertions(+)

Added: granite/trunk/PKGBUILD
===
--- granite/trunk/PKGBUILD  (rev 0)
+++ granite/trunk/PKGBUILD  2013-10-24 13:12:37 UTC (rev 99109)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin alucryd at gmail dot com
+# Contributor: Ner0 darkelfdarkelf666 at yahoo dot co dot uk
+
+pkgname=granite
+pkgver=0.2.2
+pkgrel=3
+pkgdesc=An extension of GTK+ libraries
+arch=('i686' 'x86_64')
+url=https://launchpad.net/granite;
+license=('LGPL3')
+depends=('gtk3' 'libgee06')
+makedepends=('cmake' 'gobject-introspection' 'vala')
+install=${pkgname}.install
+source=(https://launchpad.net/${pkgname}/${pkgver%\.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('341f94cd8c2af60fc072fb8602e1406bccd77189aad76424b172c3ce08c173cc')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: granite/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: granite/trunk/granite.install
===
--- granite/trunk/granite.install   (rev 0)
+++ granite/trunk/granite.install   2013-10-24 13:12:37 UTC (rev 99109)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Added: noise/trunk/PKGBUILD
===
--- noise/trunk/PKGBUILD(rev 0)
+++ noise/trunk/PKGBUILD2013-10-24 13:12:37 UTC (rev 99109)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Maxime Gauduin alucryd at gmail dot com
+
+pkgname=noise
+pkgver=0.2.4
+pkgrel=2
+pkgdesc=Simple, fast, and good looking music player
+arch=('i686' 'x86_64')
+url=https://launchpad.net/noise;
+license=('GPL3')
+depends=('desktop-file-utils' 'granite' 'gstreamer0.10-base' 'json-glib' 
'libgpod' 'libnotify' 'libpeas' 'libsoup' 'sqlheavy' 'taglib')
+makedepends=('cmake' 'vala')
+optdepends=('elementary-icon-theme: Missing UI icons'
+'gstreamer0.10-base-plugins: Base plugin libraries'
+'gstreamer0.10-good-plugins: Good plugin libraries'
+'gstreamer0.10-bad-plugins: Bad plugin libraries'
+'gstreamer0.10-ugly-plugins: Ugly plugin libraries')
+install=${pkgname}.install
+source=(https://launchpad.net/${pkgname}/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tgz;)
+sha256sums=('ffcd5f2cba112af13707a7ba7f0ceace7b812d4b6082671684ff78d76fc1d8a9')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr' -DCMAKE_BUILD_TYPE='Release' 
-DGSETTINGS_COMPILE='OFF'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: noise/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: noise/trunk/noise.install
===
--- noise/trunk/noise.install   (rev 0)
+++ noise/trunk/noise.install   2013-10-24 13:12:37 UTC (rev 99109)
@@ -0,0 +1,17 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade()
+{
+  post_install
+}
+
+post_remove()
+{
+  post_install
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in (8 files)

2013-10-07 Thread Sergej Pupykin
Date: Monday, October 7, 2013 @ 17:34:32
  Author: spupykin
Revision: 98217

add pitivi deps

Added:
  gst-editing-services/
  gst-editing-services/repos/
  gst-editing-services/trunk/
  gst-editing-services/trunk/PKGBUILD
  gst-python/
  gst-python/repos/
  gst-python/trunk/
  gst-python/trunk/PKGBUILD

-+
 gst-editing-services/trunk/PKGBUILD |   38 ++
 gst-python/trunk/PKGBUILD   |   27 
 2 files changed, 65 insertions(+)

Added: gst-editing-services/trunk/PKGBUILD
===
--- gst-editing-services/trunk/PKGBUILD (rev 0)
+++ gst-editing-services/trunk/PKGBUILD 2013-10-07 15:34:32 UTC (rev 98217)
@@ -0,0 +1,38 @@
+# Maintainer: Lubosz Sarnecki lub...@gmail.com
+# Contributor: Kerrick Staley m...@kerrickstaley.com
+# Contributor: Thijs Vermeir thijsverm...@gmail.com
+
+pkgname=gst-editing-services
+pkgver=1.1.90.1.1774.fb6aabf
+pkgrel=1
+pkgdesc='GStreamer editing services (Git version)'
+arch=('i686' 'x86_64')
+license=('LGPL')
+url='http://gstreamer.freedesktop.org/modules/gst-editing-services.html'
+depends=('gst-plugins-base')
+conflicts=('gst-editing-services')
+makedepends=('git' 'intltool' 'pkgconfig' 'gtk-doc')
+provides=('gst-editing-services='$pkgver)
+options=('!libtool')
+groups=('gstreamer')
+source=('git://anongit.freedesktop.org/gstreamer/gst-editing-services')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $srcdir/gst-editing-services
+  version=$(grep AC_INIT configure.ac | sed 's/AC_INIT(GStreamer Editing 
Services, //' | sed 's/,//')
+  hash=$(git log --pretty=format:'%h' -n 1)
+  revision=$(git rev-list --count HEAD)
+  echo $version.$revision.$hash
+}
+
+build() {
+  cd $srcdir/gst-editing-services
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/gst-editing-services
+  make DESTDIR=$pkgdir install
+}

Added: gst-python/trunk/PKGBUILD
===
--- gst-python/trunk/PKGBUILD   (rev 0)
+++ gst-python/trunk/PKGBUILD   2013-10-07 15:34:32 UTC (rev 98217)
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 147133 2012-01-22 11:30:42Z andyrtr $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-python
+pkgver=1.1.90
+pkgrel=1
+pkgdesc=Python bindings for GStreamer
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('python-gobject' 'gst-plugins-base')
+makedepends=('pkgconfig')
+options=('!libtool')
+source=(http://gstreamer.freedesktop.org/src/gst-python/gst-python-${pkgver}.tar.bz2)
+md5sums=('16d85442b98fab61bab66a53eb571d6a')
+
+build() {
+  cd ${srcdir}/gst-python-${pkgver}
+  export PYTHON=python2
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/gst-python-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (8 files)

2013-08-30 Thread speps
Date: Saturday, August 31, 2013 @ 01:18:44
  Author: speps
Revision: 96518

addpkg: firefox-firebug 1.11.4 - firefox-raismth 4.0.0

Added:
  firefox-firebug/
  firefox-firebug/repos/
  firefox-firebug/trunk/
  firefox-firebug/trunk/PKGBUILD
  firefox-raismth/
  firefox-raismth/repos/
  firefox-raismth/trunk/
  firefox-raismth/trunk/PKGBUILD

+
 firefox-firebug/trunk/PKGBUILD |   29 +
 firefox-raismth/trunk/PKGBUILD |   28 
 2 files changed, 57 insertions(+)

Added: firefox-firebug/trunk/PKGBUILD
===
--- firefox-firebug/trunk/PKGBUILD  (rev 0)
+++ firefox-firebug/trunk/PKGBUILD  2013-08-30 23:18:44 UTC (rev 96518)
@@ -0,0 +1,29 @@
+# Maintainer: speps speps at aur dot archlinux dot org
+
+pkgname=firefox-firebug
+pkgver=1.11.4
+pkgrel=1
+pkgdesc=Firefox plugin with tools for web development.
+arch=(any)
+url=http://getfirebug.com/;
+license=('custom:BSD')
+groups=('firefox-addons')
+depends=('firefox')
+provides=('firebug')
+source=(${url}releases/firebug/${pkgver%.*}/firebug-$pkgver.xpi)
+md5sums=('c5ce520e6e5c473ae3bfa7413c7c1b66')
+
+package() {
+  cd $srcdir
+
+  # extension
+  
_dest=$pkgdir/usr/lib/firefox/browser/extensions/fire...@software.joehewitt.com
+  find . -type d -exec install -d {} $_dest/{} \;
+  find . -type f -exec install -Dm644 {} $_dest/{} \;
+
+  # license
+  install -Dm644 license.txt \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Added: firefox-raismth/trunk/PKGBUILD
===
--- firefox-raismth/trunk/PKGBUILD  (rev 0)
+++ firefox-raismth/trunk/PKGBUILD  2013-08-30 23:18:44 UTC (rev 96518)
@@ -0,0 +1,28 @@
+# Maintainer: speps speps at aur dot archlinux dot org
+
+_n=223601
+pkgname=firefox-raismth
+pkgver=4.0.0
+pkgrel=1
+pkgdesc=Firefox plugin for watching Rai.tv live channels, vod and replay 
contents w/o *light (Silverlight/Moonlight)
+arch=('any')
+url=http://acab.servebeer.com/;
+license=('GPL3')
+groups=('firefox-addons')
+depends=('firefox')
+optdepends=('mplayer: default video player'
+'faad: default audio player')
+provides=('raismth')
+source=(https://addons.mozilla.org/firefox/downloads/file/$_n/rai_smooth_streaming_player_$pkgname-$pkgver-sm+fx.xpi;)
+md5sums=('763c80aaf7009c78e85e53cbe4dbb106')
+
+package() {
+  cd $srcdir
+
+  # extension
+  _dest=$pkgdir/usr/lib/firefox/browser/extensions/rais...@mitm.rc
+  find . -type d -exec install -d {} $_dest/{} \;
+  find . -type f -exec install -Dm644 {} $_dest/{} \;
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (8 files)

2013-07-03 Thread Sergej Pupykin
Date: Wednesday, July 3, 2013 @ 13:33:28
  Author: spupykin
Revision: 93412

Added:
  python-termcolor/
  python-termcolor/repos/
  python-termcolor/trunk/
  python-termcolor/trunk/PKGBUILD
  python2-mysql2pgsql/
  python2-mysql2pgsql/repos/
  python2-mysql2pgsql/trunk/
  python2-mysql2pgsql/trunk/PKGBUILD

+
 python-termcolor/trunk/PKGBUILD|   28 
 python2-mysql2pgsql/trunk/PKGBUILD |   15 +++
 2 files changed, 43 insertions(+)

Added: python-termcolor/trunk/PKGBUILD
===
--- python-termcolor/trunk/PKGBUILD (rev 0)
+++ python-termcolor/trunk/PKGBUILD 2013-07-03 11:33:28 UTC (rev 93412)
@@ -0,0 +1,28 @@
+# Maintainer: Tim Hatch t...@timhatch.com
+
+pkgbase=python-termcolor
+pkgname=('python-termcolor' 'python2-termcolor')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=ANSII Color formatting for output in terminal
+arch=('any')
+license=('GPL')
+url=http://pypi.python.org/pypi/termcolor;
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/t/termcolor/termcolor-$pkgver.tar.gz)
+conflicts=('python-termcolor')
+replaces=('python-termcolor')
+provides=('python-termcolor')
+md5sums=('043e89644f8909d462fbbfa511c768df')
+
+package_python-termcolor() {
+   depends=('python')
+   cd $srcdir/termcolor-$pkgver
+   python setup.py install --root=$pkgdir
+}
+
+package_python2-termcolor() {
+   depends=('python2')
+   cd $srcdir/termcolor-$pkgver
+   python2 setup.py install --root=$pkgdir
+}

Added: python2-mysql2pgsql/trunk/PKGBUILD
===
--- python2-mysql2pgsql/trunk/PKGBUILD  (rev 0)
+++ python2-mysql2pgsql/trunk/PKGBUILD  2013-07-03 11:33:28 UTC (rev 93412)
@@ -0,0 +1,15 @@
+pkgname=python2-mysql2pgsql
+pkgver=0.1.5
+pkgrel=1
+pkgdesc=Tool for migrating/converting from mysql to postgresql
+arch=(any)
+url=https://pypi.python.org/pypi/py-mysql2pgsql;
+license=('GPL')
+depends=('python2' 'python2-psycopg2' 'python2-yaml' 'python2-termcolor' 
'mysql-python')
+source=(https://pypi.python.org/packages/source/p/py-mysql2pgsql/py-mysql2pgsql-$pkgver.tar.gz)
+md5sums=('f9383fc558dff6f6c1e304465ff702da')
+
+package() {
+   cd $srcdir/py-mysql2pgsql-$pkgver
+   python2 setup.py install --root=$pkgdir
+}



[arch-commits] Commit in (8 files)

2013-07-03 Thread Sergej Pupykin
Date: Wednesday, July 3, 2013 @ 15:10:45
  Author: spupykin
Revision: 93444

Added:
  spice-gtk3/
  spice-gtk3/repos/
  spice-gtk3/trunk/
  spice-gtk3/trunk/PKGBUILD
  spice/
  spice/repos/
  spice/trunk/
  spice/trunk/PKGBUILD

---+
 spice-gtk3/trunk/PKGBUILD |   37 +
 spice/trunk/PKGBUILD  |   25 +
 2 files changed, 62 insertions(+)

Added: spice/trunk/PKGBUILD
===
--- spice/trunk/PKGBUILD(rev 0)
+++ spice/trunk/PKGBUILD2013-07-03 13:10:45 UTC (rev 93444)
@@ -0,0 +1,25 @@
+# Maintainer: Patryk Kowalczyk  patryk at kowalczyk dot ws
+
+pkgname=spice
+pkgver=0.12.3
+pkgrel=1
+pkgdesc=SPICE client and server
+arch=('i686' 'x86_64' 'arm')
+url=http://spice-space.org;
+license=('GPL')
+makedepends=(python2-pyparsing qemu)
+depends=(pixman spice-protocol alsa-utils libxrandr libxinerama libsasl mesa 
openssl)
+source=(http://spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --enable-opengl --enable-client
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}
+
+md5sums=('f33a682892f6793169f20298b2296449')

Added: spice-gtk3/trunk/PKGBUILD
===
--- spice-gtk3/trunk/PKGBUILD   (rev 0)
+++ spice-gtk3/trunk/PKGBUILD   2013-07-03 13:10:45 UTC (rev 93444)
@@ -0,0 +1,37 @@
+# Maintainer: Stefano Facchini stefano.facch...@gmail.com
+# Contributor: Jonathan Lestrelin za...@daemontux.org
+# Derived from the spice-gtk PKGBUILD by
+# Contributor: Lucio Zara penn...@gmail.com
+
+pkgname=spice-gtk3
+_pkgname=spice-gtk
+pkgver=0.20
+pkgrel=1
+pkgdesc=A Gtk client and libraries for SPICE remote desktop servers (gtk3 
version).
+arch=('x86_64' 'i686')
+url=http://spice-space.org;
+license=('GPL')
+makedepends=('intltool' 'vala' 'python2-pyparsing')
+depends=('libpulse' 'gtk3' 'spice' 'libusb' 'usbredir')
+conflicts=('spice-gtk')
+options=('!libtool')
+source=(http://www.spice-space.org/download/gtk/$_pkgname-$pkgver.tar.bz2;)
+sha256sums=('b1355823b0ceb2e118c1f9a9a602ccab78e1e2edf2d93f71fa42d3bc85ca75df')
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+
+  sed -i 's,/usr/bin/env python,/usr/bin/python2,' 
spice-common/spice_codegen.py
+
+  ./configure --prefix=/usr \
+  --with-gtk=3.0 \
+  --with-python \
+  --enable-vala
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+}



[arch-commits] Commit in (8 files)

2013-05-18 Thread Balló György
Date: Saturday, May 18, 2013 @ 12:55:58
  Author: bgyorgy
Revision: 91025

Move gloobus-preview from unsupported with 35 votes

Added:
  gloobus-preview/
  gloobus-preview/repos/
  gloobus-preview/trunk/
  gloobus-preview/trunk/PKGBUILD
  gloobus-preview/trunk/fix-gtksource-include.patch
  gloobus-preview/trunk/fix-unoconv.patch
  gloobus-preview/trunk/gloobus-preview.install
  gloobus-preview/trunk/use-xdg-open.patch

-+
 PKGBUILD|   85 ++
 fix-gtksource-include.patch |   39 +++
 fix-unoconv.patch   |   46 ++
 gloobus-preview.install |   12 +
 use-xdg-open.patch  |   20 +
 5 files changed, 202 insertions(+)

Added: gloobus-preview/trunk/PKGBUILD
===
--- gloobus-preview/trunk/PKGBUILD  (rev 0)
+++ gloobus-preview/trunk/PKGBUILD  2013-05-18 10:55:58 UTC (rev 91025)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=gloobus-preview
+pkgver=0.4.5.290
+_pkgver=0.4.5-ubuntu11~ppa290
+pkgrel=1
+pkgdesc=Gnome application designed to enable a full screen preview of any 
kind of file
+arch=('i686' 'x86_64')
+url=http://gloobus.net/;
+license=('GPL')
+depends=('gstreamer0.10-base-plugins' 'gtksourceview3' 'poppler-glib' 
'python2-dbus' 'python2-gconf' 'taglib' 'xdg-utils')
+makedepends=('boost' 'bzr' 'djvulibre' 'libspectre')
+optdepends=('djvulibre: Preview DjVu documents'
+'gstreamer0.10-bad-plugins: Extra media codecs'
+'gstreamer0.10-good-plugins: Extra media codecs'
+'gstreamer0.10-ffmpeg: Extra media codecs'
+'gstreamer0.10-ugly-plugins: Extra media codecs'
+'libspectre: Preview PostScript documents'
+'p7zip: View content of 7z archives'
+'unoconv: Preview LibreOffice compatible documents'
+'unrar: View content of RAR archives'
+'unzip: View content of .ZIP archives')
+options=('!libtool')
+install=$pkgname.install
+source=(https://launchpad.net/~gloobus-dev/+archive/$pkgname/+files/${pkgname}_$_pkgver.orig.tar.xz
+gloobus-sushi::bzr+lp:gloobus-sushi
+fix-gtksource-include.patch
+fix-unoconv.patch
+use-xdg-open.patch)
+md5sums=('27b3db2043ecaf47fa928940bbb4f32a'
+ 'SKIP'
+ 'ca15a3e31cec01d3d4fc5a4e1720f692'
+ '03379c173e67ad1b6804bc609336451d'
+ 'd6d9e2b3e001f0ea8440cccdf90480af')
+
+prepare() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' src/gloobus-preview-configuration
+
+  # Fix build
+  patch -Np1 -i $srcdir/fix-gtksource-include.patch
+  sed -i 's/-Werror//' configure.ac src/Makefile.am
+
+  # Fix unoconv support
+  patch -Np1 -i $srcdir/fix-unoconv.patch
+
+  # Use xdg-open
+  patch -Np1 -i $srcdir/use-xdg-open.patch
+
+  ### Prepare gloobus-sushi
+  cd $srcdir/gloobus-sushi
+
+  # Python2 fix
+  sed -i 's/python /python2 /' src/gloobus-sushi.in
+}
+
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+   --disable-static
+  make
+
+  ### Build gloobus-sushi
+  cd $srcdir/gloobus-sushi
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  ### Install gloobus-sushi
+  cd $srcdir/gloobus-sushi
+  make DESTDIR=$pkgdir install
+
+  # Rename service file to avoid conflict with sushi
+  mv 
$pkgdir/usr/share/dbus-1/services/{org.gnome.Sushi.service,net.gloobus.Sushi.service}
+}


Property changes on: gloobus-preview/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gloobus-preview/trunk/fix-gtksource-include.patch
===
--- gloobus-preview/trunk/fix-gtksource-include.patch   
(rev 0)
+++ gloobus-preview/trunk/fix-gtksource-include.patch   2013-05-18 10:55:58 UTC 
(rev 91025)
@@ -0,0 +1,39 @@
+diff -Naur 
gloobus-preview-0.4.5-ubuntu11~ppa290.orig/src/gloobus-preview-interface-text.h 
gloobus-preview-0.4.5-ubuntu11~ppa290/src/gloobus-preview-interface-text.h
+--- 
gloobus-preview-0.4.5-ubuntu11~ppa290.orig/src/gloobus-preview-interface-text.h 
   2012-04-06 15:07:29.0 +0200
 gloobus-preview-0.4.5-ubuntu11~ppa290/src/gloobus-preview-interface-text.h 
2013-05-17 06:27:37.833360264 +0200
+@@ -1,8 +1,7 @@
+ #ifndef _ITEXT_
+ #define _ITEXT_
+ 
+-#include gtksourceview/gtksourceview.h
+-#include gtksourceview/gtksourcelanguagemanager.h
++#include gtksourceview/gtksource.h
+ //sudo ln -s /usr/include/gtksourceview-2.0/gtksourceview/ 
/usr/include/gtksourceview
+ 
+ #include gloobus-preview-interface-main.h

[arch-commits] Commit in (8 files)

2013-05-12 Thread Andrzej Giniewicz
Date: Sunday, May 12, 2013 @ 11:41:18
  Author: aginiewicz
Revision: 90422

numexpr now supports python 3, so moving it to python-numexpr dir

Added:
  python-numexpr/
  python-numexpr/repos/community-i686/PKGBUILD
(from rev 90421, python2-numexpr/repos/community-i686/PKGBUILD)
  python-numexpr/repos/community-x86_64/PKGBUILD
(from rev 90421, python2-numexpr/repos/community-x86_64/PKGBUILD)
  python-numexpr/trunk/PKGBUILD
(from rev 90420, python2-numexpr/trunk/PKGBUILD)
Deleted:
  python-numexpr/repos/community-i686/PKGBUILD
  python-numexpr/repos/community-x86_64/PKGBUILD
  python-numexpr/trunk/PKGBUILD
  python2-numexpr/

+
 python-numexpr/repos/community-i686/PKGBUILD   |   52 +++
 python-numexpr/repos/community-x86_64/PKGBUILD |   52 +++
 python-numexpr/trunk/PKGBUILD  |   52 +++
 repos/community-i686/PKGBUILD  |   35 ---
 repos/community-x86_64/PKGBUILD|   35 ---
 trunk/PKGBUILD |   35 ---
 6 files changed, 156 insertions(+), 105 deletions(-)

Deleted: python-numexpr/repos/community-i686/PKGBUILD
===
--- python2-numexpr/repos/community-i686/PKGBUILD   2013-05-12 09:03:51 UTC 
(rev 90410)
+++ python-numexpr/repos/community-i686/PKGBUILD2013-05-12 09:41:18 UTC 
(rev 90422)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet binet@lblbox
-
-pkgname=python2-numexpr
-pkgver=2.0.1
-pkgrel=2
-pkgdesc=A JIT compiler for Python expressions
-url=http://code.google.com/p/numexpr/;
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('python2-numpy')
-makedepends=('python2-distribute')
-provides=('python-numexpr') # temporary compatibility because of rename
-replaces=('python-numexpr') # (there is no python 3 version yet)
-source=(http://numexpr.googlecode.com/files/numexpr-$pkgver.tar.gz)
-md5sums=('5cdc05c2ef8761daeae8a3182e468ba4')
-
-build() {
-  cd $srcdir/numexpr-$pkgver
-
-  python2 setup.py build
-}
-
-package() {
-  cd $srcdir/numexpr-$pkgver
-
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/python2| \
-$(find ${pkgdir} -name '*.py')
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-numexpr/repos/community-i686/PKGBUILD (from rev 90421, 
python2-numexpr/repos/community-i686/PKGBUILD)
===
--- python-numexpr/repos/community-i686/PKGBUILD
(rev 0)
+++ python-numexpr/repos/community-i686/PKGBUILD2013-05-12 09:41:18 UTC 
(rev 90422)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Sebastien Binet binet@lblbox
+
+pkgbase=python-numexpr
+pkgname=('python2-numexpr' 'python-numexpr')
+pkgver=2.1
+pkgrel=1
+pkgdesc=A JIT compiler for Python expressions
+url=http://code.google.com/p/numexpr/;
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('python2-distribute' 'python-distribute' 'python-numpy' 
'python2-numpy')
+source=(http://numexpr.googlecode.com/files/numexpr-$pkgver.tar.gz)
+md5sums=('8c138e81fb4214d05453da0fc88bf0d5')
+
+build() {
+  cd $srcdir
+  cp -a numexpr-$pkgver numexpr-py2-$pkgver
+
+  msg Building Python2
+  cd $srcdir/numexpr-py2-$pkgver
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/numexpr-$pkgver
+  python setup.py build
+}
+
+package_python2-numexpr() {
+  depends=('python2-numpy')
+
+  cd $srcdir/numexpr-py2-$pkgver
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  sed -i -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/python2| \
+$(find ${pkgdir} -name '*.py')
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python-numexpr() {
+  depends=('python-numpy')
+
+  cd $srcdir/numexpr-$pkgver
+
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: python-numexpr/repos/community-x86_64/PKGBUILD
===
--- python2-numexpr/repos/community-x86_64/PKGBUILD 2013-05-12 09:03:51 UTC 
(rev 90410)
+++ python-numexpr/repos/community-x86_64/PKGBUILD  2013-05-12 09:41:18 UTC 
(rev 90422)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet binet@lblbox
-
-pkgname=python2-numexpr
-pkgver=2.0.1
-pkgrel=2
-pkgdesc=A JIT compiler for Python expressions
-url=http://code.google.com/p/numexpr/;
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('python2-numpy')
-makedepends=('python2-distribute')
-provides=('python-numexpr') # temporary compatibility because of rename

[arch-commits] Commit in (8 files)

2013-04-27 Thread Daniel Wallace
Date: Sunday, April 28, 2013 @ 06:42:54
  Author: dwallace
Revision: 89208

move xe-guest-utilities to community

Added:
  xe-guest-utilities/
  xe-guest-utilities/repo/
  xe-guest-utilities/trunk/
  xe-guest-utilities/trunk/PKGBUILD
  xe-guest-utilities/trunk/ip_address.patch
  xe-guest-utilities/trunk/proc-xen.mount
  xe-guest-utilities/trunk/xe-daemon.service
  xe-guest-utilities/trunk/xe-linux-distribution.service

---+
 PKGBUILD  |   69 
 ip_address.patch  |   16 +
 proc-xen.mount|9 +
 xe-daemon.service |   12 ++
 xe-linux-distribution.service |   11 ++
 5 files changed, 117 insertions(+)

Added: xe-guest-utilities/trunk/PKGBUILD
===
--- xe-guest-utilities/trunk/PKGBUILD   (rev 0)
+++ xe-guest-utilities/trunk/PKGBUILD   2013-04-28 04:42:54 UTC (rev 89208)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at code gtmanfred com
+# Contributor: Phillip Smith fuka...@no-spam.gmail.com
+# Contributor: Krzysztof Raczkowski racz...@gnu-tech.pl
+
+pkgbase=xe-guest-utilities
+pkgname=('xe-guest-utilities' 'xenstore')
+pkgver=6.1.0
+pkgrel=4
+pkgdesc=Citrix XenServer Tools
+arch=('i686' 'x86_64')
+url=http://citrix.com/English/ps2/products/product.asp?contentID=683148ntref=hp_nav_US;
+license=('GPL' 'LGPL')
+makedepends=(python2)
+optdepends=('linux: DomU kernel for x86_64'
+ 'linux-xen: DomU kernel for i686'
+'kernel-lts-xen: DomU kernel for i686')
+source=(ftp://ftp.archlinux.org/other/community/$pkgbase/${pkgbase}_${pkgver}-1033.tar.gz;
+   'ip_address.patch'
+'xe-linux-distribution.service'
+'xe-daemon.service'
+'proc-xen.mount')
+md5sums=('26fd52ffc5ddeb7d3e510e6f272c2860'
+ '9bd39e95384056069f7faa870a28413a'
+ 'abf49bd0925142e51ce2875cd5e5ad45'
+ '43264c6954c9c036b260521653ade41f'
+ '3252fa21362fd55246f9d8b923070151')
+
+prepare(){
+  patch -d $srcdir/$pkgname-$pkgver -Np1 -i $srcdir/ip_address.patch
+  bsdtar xf $srcdir/$pkgname-$pkgver/xenstore-sources.tar.bz2
+}
+
+build() {
+  export CC=gcc
+  CFLAGS='-Wall -Wstrict-prototypes -Wno-unused-local-typedefs 
-Wno-sizeof-pointer-memaccess'
+  export CFLAGS
+  export PYTHON=python2
+  cd $srcdir/uclibc-sources
+  make -C tools/include
+  make -C tools/libxc
+  make -C tools/xenstore
+}
+
+package_xenstore() {
+  export CFLAGS+='-Wall -Wstrict-prototypes -Wno-unused-local-typedefs 
-Wno-sizeof-pointer-memaccess'
+  for f in include libxc xenstore; do
+[[ ! -d $srcdir/uclibc-sources/tools/$f ]]  continue
+make -C $srcdir/uclibc-sources/tools/$f DESTDIR=$pkgdir install
+  done
+  cd $srcdir/$pkgbase-$pkgver
+  install -Dm644 COPYING.LGPL 
$pkgdir/usr/share/licenses/$pkgname/COPYING.LGPL
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 $srcdir/proc-xen.mount 
$pkgdir/usr/lib/systemd/system/proc-xen.mount
+  install -Dm644 $srcdir/xe-linux-distribution.service 
$pkgdir/usr/lib/systemd/system/
+  install -Dm644 $srcdir/xe-daemon.service $pkgdir/usr/lib/systemd/system/
+}
+
+package_xe-guest-utilities(){
+  cd $srcdir/$pkgname-$pkgver
+  depends=('xenstore')
+  install -Dm755 xe-linux-distribution $pkgdir/usr/sbin/xe-linux-distribution
+  install -Dm755 xe-update-guest-attrs $pkgdir/usr/sbin/xe-update-guest-attrs
+  install -Dm755 xe-daemon $pkgdir/usr/sbin/xe-daemon
+  install -Dm644 xen-vcpu-hotplug.rules 
$pkgdir/usr/lib/udev/rules.d/10-xen-vcpu-hotplug.rules
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: xe-guest-utilities/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: xe-guest-utilities/trunk/ip_address.patch
===
--- xe-guest-utilities/trunk/ip_address.patch   (rev 0)
+++ xe-guest-utilities/trunk/ip_address.patch   2013-04-28 04:42:54 UTC (rev 
89208)
@@ -0,0 +1,16 @@
+diff -uNr a/xe-update-guest-attrs b/xe-update-guest-attrs
+--- a/xe-update-guest-attrs2012-09-25 12:45:14.0 +0200
 b/xe-update-guest-attrs2012-11-21 16:46:35.0 +0100
+@@ -177,9 +177,9 @@
+ #   collisions:0 txqueuelen:0 
+ #   RX bytes:3604609 (3.4 MiB)  TX bytes:3604609 (3.4 MiB)
+ 
+-ifs=`/sbin/ifconfig | sed -n -e 's/^\([a-z0-9]\+\).*/name \1/p' \
+--e 's/.*inet addr:\('$IPADDR_RE'\) .*/ipv4 \1/p' \
+--e 's+.*inet6 addr: \('$IPADDR6_RE'\)/.*+ipv6 \1+p' | \
++ifs=`ip addr show | sed -n -e 's/^[[:digit:]]*: \([a-z0-9]*\): .*/name \1 
/gp;' \
++-e 's/^[[:space:]]\{4\}inet \('${IPADDR_RE}'\)\/.*/ipv4 \1 /gp;' \
++-e 's/^[[:space:]]\{4\}inet6 \('${IPADDR6_RE}'\)\/.*/ipv6 \1 

[arch-commits] Commit in (8 files)

2013-03-02 Thread Bartłomiej Piotrowski
Date: Saturday, March 2, 2013 @ 22:39:00
  Author: bpiotrowski
Revision: 179063

community2extra: Moving mariadb from community to extra

Added:
  mariadb/
  mariadb/repos/
  mariadb/trunk/
  mariadb/trunk/PKGBUILD
  mariadb/trunk/mariadb-post.sh
  mariadb/trunk/mariadb-tmpfile.conf
  mariadb/trunk/mariadb.install
  mariadb/trunk/mariadb.service

--+
 PKGBUILD |  136 +
 mariadb-post.sh  |8 ++
 mariadb-tmpfile.conf |1 
 mariadb.install  |   44 +++
 mariadb.service  |   16 +
 5 files changed, 205 insertions(+)

Added: mariadb/trunk/PKGBUILD
===
--- mariadb/trunk/PKGBUILD  (rev 0)
+++ mariadb/trunk/PKGBUILD  2013-03-02 21:39:00 UTC (rev 179063)
@@ -0,0 +1,136 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+
+pkgbase=mariadb
+pkgname=('libmariadbclient' 'mariadb-clients' 'mariadb')
+pkgver=5.5.29
+pkgrel=4
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://mariadb.org/'
+makedepends=('cmake' 'openssl' 'zlib')
+options=('!libtool')
+source=(http://mirrors.supportex.net/$pkgbase/$pkgbase-$pkgver/kvm-tarbake-jaunty-x86/$pkgbase-$pkgver.tar.gz
+mariadb.service
+mariadb-post.sh
+mariadb-tmpfile.conf)
+sha256sums=('b0e25b5451dbf8e8c8bf243bbd0aeb264db0da2caceafc7e2c9fad77b8d4be74'
+'a6cf5446159fff16598d0d787dd3a3c30a53a656a5f876ddb608bc60e234d334'
+'368f9fd2454d80eb32abb8f29f703d1cf9553353fb9e1ae4529c4b851cb8c5dd'
+'2af318c52ae0fe5428e8a9245d1b0fc3bc5ce153842d1563329ceb1edfa83ddd')
+
+build() {
+  cd $srcdir
+  mkdir build
+  cd build
+
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONFDIR=/etc/mysql \
+-DMYSQL_DATADIR=/var/lib/mysql \
+-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
+-DDEFAULT_CHARSET=utf8 \
+-DDEFAULT_COLLATION=utf8_general_ci \
+-DENABLED_LOCAL_INFILE=ON \
+-DINSTALL_INFODIR=share/mysql/docs \
+-DINSTALL_MANDIR=share/man \
+-DINSTALL_PLUGINDIR=/usr/lib/mysql/plugin \
+-DINSTALL_SCRIPTDIR=bin \
+-DINSTALL_INCLUDEDIR=include/mysql \
+-DINSTALL_DOCREADMEDIR=share/mysql \
+-DINSTALL_SUPPORTFILESDIR=share/mysql \
+-DINSTALL_MYSQLSHAREDIR=share/mysql \
+-DINSTALL_DOCDIR=share/mysql/docs \
+-DINSTALL_SHAREDIR=share/mysql \
+-DWITH_READLINE=ON \
+-DWITH_ZLIB=system \
+-DWITH_SSL=system \
+-DWITH_LIBWRAP=OFF \
+-DWITH_EXTRA_CHARSETS=complex \
+-DWITH_EMBEDDED_SERVER=ON \
+-DWITH_ARCHIVE_STORAGE_ENGINE=1 \
+-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
+-DWITH_INNOBASE_STORAGE_ENGINE=1 \
+-DWITH_PARTITION_STORAGE_ENGINE=1 \
+-DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
+-DWITHOUT_FEDERATED_STORAGE_ENGINE=1 \
+-DWITHOUT_PBXT_STORAGE_ENGINE=1 \
+-DCMAKE_C_FLAGS=-fPIC ${CFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 
-fomit-frame-pointer \
+-DCMAKE_CXX_FLAGS=-fPIC ${CXXFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 
-felide-constructors -fno-rtti \
+-DWITH_MYSQLD_LDFLAGS=${LDFLAGS}
+
+
+  make
+}
+
+package_libmariadbclient() {
+  pkgdesc=MariaDB client libraries
+  depends=('openssl')
+  conflicts=('libmysqlclient')
+  provides=(libmysqlclient=$pkgver)
+  
+  cd $srcdir/build
+  for dir in include libmysql libmysqld libservices; do
+make -C $dir DESTDIR=$pkgdir install
+  done
+
+  install -d $pkgdir/usr/bin
+  install -m755 scripts/mysql_config $pkgdir/usr/bin/
+  install -d $pkgdir/usr/share/man/man1
+  for man in mysql_config mysql_client_test_embedded mysqltest_embedded; do
+install -m644 $srcdir/$pkgbase-$pkgver/man/$man.1 
$pkgdir/usr/share/man/man1/$man.1
+  done
+}
+
+package_mariadb-clients() {
+  pkgdesc=MariaDB client tools
+  depends=('libmariadbclient')
+  conflicts=('mysql-clients')
+  provides=(mysql-clients=$pkgver)
+  
+  cd $srcdir/build
+  make -C client DESTDIR=$pkgdir install
+
+  # install man pages
+  install -d $pkgdir/usr/share/man/man1
+  for man in mysql mysqladmin mysqlcheck mysqldump mysqlimport mysqlshow 
mysqlslap; do
+install -m644 $srcdir/$pkgbase-$pkgver/man/$man.1 
$pkgdir/usr/share/man/man1/$man.1
+  done
+
+  # provided by mariadb
+  rm $pkgdir/usr/bin/{mysql_{plugin,upgrade},mysqlbinlog,mysqltest}
+}
+
+package_mariadb() {
+  pkgdesc=A fast SQL database server, drop-in replacement for MySQL
+  backup=('etc/mysql/my.cnf')
+  install=mariadb.install
+  depends=('mariadb-clients')
+  conflicts=('mysql')
+  provides=(mysql=$pkgver)
+  optdepends=('perl-dbi' 'perl-dbd-mysql')
+  options=('emptydirs')
+
+  cd $srcdir/build
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 $pkgdir/usr/share/mysql/my-medium.cnf 
$pkgdir/etc/mysql/my.cnf
+  install -Dm755 $srcdir/mariadb-post.sh $pkgdir/usr/bin/mysqld-post
+  install -Dm644 $srcdir/mariadb.service 
$pkgdir/usr/lib/systemd/system/mysqld.service
+  install -Dm644 

[arch-commits] Commit in (8 files)

2013-02-25 Thread Daniel Wallace
Date: Monday, February 25, 2013 @ 23:06:14
  Author: dwallace
Revision: 84891

re make steam 

Added:
  steam/
  steam/repos/
  steam/trunk/
  steam/trunk/PKGBUILD
  steam/trunk/alsa_sdl_audiodriver.patch
  steam/trunk/lib32-flashplugin-path.patch
  steam/trunk/steam.install
Deleted:
  steam/

--+
 PKGBUILD |   53 +
 alsa_sdl_audiodriver.patch   |   14 ++
 lib32-flashplugin-path.patch |   10 +++
 steam.install|   26 
 4 files changed, 103 insertions(+)

Added: steam/trunk/PKGBUILD
===
--- steam/trunk/PKGBUILD(rev 0)
+++ steam/trunk/PKGBUILD2013-02-25 22:06:14 UTC (rev 84891)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: K900 k0009...@gmail.com
+pkgname=steam
+pkgver=1.0.0.34
+pkgrel=1
+pkgdesc=Digital distribution client bootstrap package
+arch=(i686 x86_64)
+url=http://steampowered.com/;
+license=('custom')
+depends=(
+  'bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl'
+  'dbus' 'freetype2'  'gdk-pixbuf2' 'ttf-font' 'zenity'
+  )
+if [[ $CARCH == x86_64 ]]; then
+  depends+=(lib32-mesa lib32-gcc-libs lib32-libx11)
+  optdepends=(
+  'lib32-ati-dri: for open source ATI driver users'
+  'lib32-catalyst-utils: for AMD Catalyst users'
+  'lib32-intel-dri: for open source Intel driver users'
+  'lib32-nouveau-dri: for Nouveau users'
+  'lib32-nvidia-utils: for NVIDIA proprietary blob users'
+  'lib32-flashplugin: for flash video'
+  )
+build() {
+patch -d $pkgname -Np1 -i $srcdir/lib32-flashplugin-path.patch
+#patch -d $pkgname -Np1 -i $srcdir/alsa_sdl_audiodriver.patch
+}
+else
+optdepends=('flashplugin: for flash videos')
+#build() {
+#patch -d $pkgname -Np1 -i $srcdir/alsa_sdl_audiodriver.patch
+#}
+fi
+install=steam.install
+source=(http://repo.steampowered.com/$pkgname/pool/$pkgname/s/$pkgname/${pkgname}_$pkgver.tar.gz;
+'lib32-flashplugin-path.patch'
+'alsa_sdl_audiodriver.patch')
+md5sums=('4ff9bf72b36a460d65ab3e57852f9bac'
+ '1d83a1df55d677f35ce415e0750f4448'
+ 'ac0e03d70f1101331598b2b32ed9bac3')
+
+package() {
+
+  # Install license
+  make -C $pkgname DESTDIR=$pkgdir install
+  
+  install -Dm644 $pkgdir/usr/share/doc/steam/steam_install_agreement.txt 
$pkgdir/usr/share/licenses/steam/LICENSE
+
+  # blank steamdeps because apt-get
+  ln -sf /bin/true $pkgdir/usr/bin/steamdeps
+}
+#vim: set ft=PKGBUILD sw=2 ts=2 et


Property changes on: steam/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: steam/trunk/alsa_sdl_audiodriver.patch
===
--- steam/trunk/alsa_sdl_audiodriver.patch  (rev 0)
+++ steam/trunk/alsa_sdl_audiodriver.patch  2013-02-25 22:06:14 UTC (rev 
84891)
@@ -0,0 +1,14 @@
+--- a/steam2013-02-15 14:43:40.0 -0500
 b/steam2013-02-17 23:26:31.951179106 -0500
+@@ -17,6 +17,11 @@
+ # Set up domain for script localization
+ export TEXTDOMAIN=steam
+ 
++# check if pulseaudio is installed and if it isn't, use alsa for 
SDL_AUDIODRIVER
++if ! pulseaudio --check /dev/null; then
++export SDL_AUDIODRIVER=alsa
++fi
++
+ function show_message()
+ {
+   style=$1

Added: steam/trunk/lib32-flashplugin-path.patch
===
--- steam/trunk/lib32-flashplugin-path.patch(rev 0)
+++ steam/trunk/lib32-flashplugin-path.patch2013-02-25 22:06:14 UTC (rev 
84891)
@@ -0,0 +1,10 @@
+--- a/steam2013-02-14 14:03:49.0 -0500
 b/steam2013-02-14 15:48:06.766152022 -0500
+@@ -51,6 +51,7 @@
+ 
+ function setup_variables()
+ {
++MOZ_PLUGIN_PATH=/usr/lib32/mozilla/plugins/
+   STEAMPACKAGE=${0##*/}
+   STEAMCONFIG=~/.steam
+   STEAMDATALINK=$STEAMCONFIG/$STEAMPACKAGE

Added: steam/trunk/steam.install
===
--- steam/trunk/steam.install   (rev 0)
+++ steam/trunk/steam.install   2013-02-25 22:06:14 UTC (rev 84891)
@@ -0,0 +1,26 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  echo if you are running x86_64, you need the lib32 opt depends for your 
driver
+  echo 
+  echo  if you are having problems with the steam license, remove .steam and 
.local/share/Steam
+}
+
+pre_install(){
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_upgrade(){
+  pre_install $1
+}
+
+post_remove() {
+   pre_install $1 removing
+}
+



[arch-commits] Commit in (8 files)

2013-02-21 Thread Massimiliano Torromeo
Date: Thursday, February 21, 2013 @ 14:50:48
  Author: mtorromeo
Revision: 84666

Move python{,2}-oauthlib and dependencies to [community]

Added:
  python-oauthlib/
  python-oauthlib/repos/
  python-oauthlib/trunk/
  python-oauthlib/trunk/PKGBUILD
  python-rsa/
  python-rsa/repos/
  python-rsa/trunk/
  python-rsa/trunk/PKGBUILD

+
 python-oauthlib/trunk/PKGBUILD |   44 +
 python-rsa/trunk/PKGBUILD  |   46 +++
 2 files changed, 90 insertions(+)

Added: python-oauthlib/trunk/PKGBUILD
===
--- python-oauthlib/trunk/PKGBUILD  (rev 0)
+++ python-oauthlib/trunk/PKGBUILD  2013-02-21 13:50:48 UTC (rev 84666)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-oauthlib
+pkgname=(python-oauthlib python2-oauthlib)
+pkgver=0.3.7
+pkgrel=1
+_libname=oauthlib
+pkgdesc=A generic, spec-compliant, thorough implementation of the OAuth 
request-signing logic
+arch=(any)
+url=https://github.com/idangazit/oauthlib;
+license=('BSD')
+source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz)
+makedepends=(python-distribute python2-distribute)
+
+build() {
+   cd $srcdir/$_libname-$pkgver
+   
+   rm -rf ../buildpy3; mkdir ../buildpy3
+   python setup.py build -b ../buildpy3
+   
+   rm -rf ../buildpy2; mkdir ../buildpy2
+   python2 setup.py build -b ../buildpy2
+}
+
+package_python-oauthlib() {
+   depends=(python-rsa)
+   
+   cd $srcdir/$_libname-$pkgver
+   rm -rf build; ln -s ../buildpy3 build
+   python setup.py install --skip-build -O1 --root=$pkgdir
+   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-oauthlib() {
+   depends=(python2-rsa)
+   
+   cd $srcdir/$_libname-$pkgver
+   rm -rf build; ln -s ../buildpy2 build
+   python2 setup.py install --skip-build -O1 --root=$pkgdir
+   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha256sums=('12b8fb9fa02a531c412bdc0fcb3a214e3da8c4075f19d6ca2c6d1a3636d2a000')


Property changes on: python-oauthlib/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python-rsa/trunk/PKGBUILD
===
--- python-rsa/trunk/PKGBUILD   (rev 0)
+++ python-rsa/trunk/PKGBUILD   2013-02-21 13:50:48 UTC (rev 84666)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-rsa
+pkgname=(python-rsa python2-rsa)
+pkgver=3.1.1
+pkgrel=2
+_libname=rsa
+pkgdesc=Pure-Python RSA implementation
+arch=(any)
+url=http://stuvel.eu/rsa;
+license=('BSD')
+source=(http://pypi.python.org/packages/source/r/$_libname/$_libname-$pkgver.tar.gz)
+makedepends=(python-distribute python2-distribute)
+
+build() {
+   cd $srcdir/$_libname-$pkgver
+   
+   rm -rf ../buildpy3; mkdir ../buildpy3
+   python setup.py build -b ../buildpy3
+   
+   rm -rf ../buildpy2; mkdir ../buildpy2
+   python2 setup.py build -b ../buildpy2
+}
+
+package_python-rsa() {
+   depends=(python-pyasn1)
+   
+   cd $srcdir/$_libname-$pkgver
+   rm -rf build; ln -s ../buildpy3 build
+   python setup.py install --skip-build -O1 --root=$pkgdir
+   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-rsa() {
+   depends=(python2-pyasn1)
+   
+   cd $srcdir/$_libname-$pkgver
+   rm -rf build; ln -s ../buildpy2 build
+   python2 setup.py install --skip-build -O1 --root=$pkgdir
+   install -m0644 -D LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+   
+   find $pkgdir/usr/bin -type f | while read f; do mv $f $f2; done
+}
+
+sha256sums=('ed83fe80602077bcbf91d14e41558c751d76527c7b88d44394e1e2900fddb7ba')


Property changes on: python-rsa/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2013-01-29 Thread Andrea Scarpino
Date: Tuesday, January 29, 2013 @ 10:12:48
  Author: andrea
Revision: 83300

Move espeakup from AUR

Added:
  espeakup/
  espeakup/repos/
  espeakup/trunk/
  espeakup/trunk/PKGBUILD
  espeakup/trunk/espeakup
  espeakup/trunk/espeakup.conf.d
  espeakup/trunk/espeakup.modules-load.d
  espeakup/trunk/espeakup.service

-+
 PKGBUILD|   36 
 espeakup|   43 +++
 espeakup.conf.d |6 ++
 espeakup.modules-load.d |1 +
 espeakup.service|   15 +++
 5 files changed, 101 insertions(+)

Added: espeakup/trunk/PKGBUILD
===
--- espeakup/trunk/PKGBUILD (rev 0)
+++ espeakup/trunk/PKGBUILD 2013-01-29 09:12:48 UTC (rev 83300)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Chris Brannon ch...@the-brannons.com
+# Contributor: Kyle k...@gmx.ca
+
+pkgname=espeakup
+pkgver=0.71
+pkgrel=7
+pkgdesc='Allows the Speakup screen review system to use the ESpeak 
synthesizer.'
+arch=('i686' 'x86_64')
+url=http://github.com/williamh/espeakup;
+license=('GPL3')
+#source=(ftp://linux-speakup.org/pub/linux/goodies/${pkgname}-${pkgver}.tar.bz2;
+# temporary location
+source=(http://the-brannons.com/espeakup-0.71.tar.bz2;
+espeakup espeakup.conf.d espeakup.service espeakup.modules-load.d)
+depends=(speakup-utils espeak)
+backup=(etc/conf.d/espeakup)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install 
+  install -m755 -D ${srcdir}/espeakup ${pkgdir}/etc/rc.d/espeakup
+  install -m644 -D ${srcdir}/espeakup.conf.d ${pkgdir}/etc/conf.d/espeakup
+  install -m644 -D ${srcdir}/espeakup.service 
${pkgdir}/usr/lib/systemd/system/espeakup.service
+  install -m644 -D ${srcdir}/espeakup.modules-load.d 
${pkgdir}/usr/lib/modules-load.d/espeakup.conf
+}
+md5sums=('03daa70b3db3f4f6fbb42c2ee428eda7'
+ '7cf0abd493710ed924b7bb7c8d279fb3'
+ '0f93974845b15efa12f5e7a74cc0eecd'
+ '2c80525983a700d3763d4c90c3ab79a8'
+ '75eb512d510d6701b6f63390475dd34f')

Added: espeakup/trunk/espeakup
===
--- espeakup/trunk/espeakup (rev 0)
+++ espeakup/trunk/espeakup 2013-01-29 09:12:48 UTC (rev 83300)
@@ -0,0 +1,43 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/conf.d/espeakup
+. /etc/rc.d/functions
+
+PID=`pidof espeakup`
+PIDFILE=/var/run/espeakup.pid
+case $1 in
+  start)
+stat_busy Starting Espeakup
+if [ -z $PID ]; then
+  if [ -f $PIDFILE ]; then
+rm $PIDFILE
+  fi
+  /usr/bin/espeakup $ESPEAKUP_ARGS
+  if [ $? -gt 0 ]; then
+stat_fail
+  else
+add_daemon espeakup
+stat_done
+  fi
+fi
+;;
+  stop)
+stat_busy Stopping Espeakup
+[ ! -z $PID ]   kill $PID  /dev/null
+if [ $? -gt 0 ]; then
+  stat_fail
+else
+  rm_daemon espeakup
+  stat_done
+fi
+;;
+  restart)
+$0 stop
+sleep 2
+$0 start
+;;
+  *)
+echo usage: $0 {start|stop|restart}  
+esac
+exit 0

Added: espeakup/trunk/espeakup.conf.d
===
--- espeakup/trunk/espeakup.conf.d  (rev 0)
+++ espeakup/trunk/espeakup.conf.d  2013-01-29 09:12:48 UTC (rev 83300)
@@ -0,0 +1,6 @@
+#
+# Arguments to be passed to espeakup.
+# Example:
+# ESPEAKUP_ARGS=--default-voice=fr
+# will tell espeakup to use the French voice.
+ESPEAKUP_ARGS=

Added: espeakup/trunk/espeakup.modules-load.d
===
--- espeakup/trunk/espeakup.modules-load.d  (rev 0)
+++ espeakup/trunk/espeakup.modules-load.d  2013-01-29 09:12:48 UTC (rev 
83300)
@@ -0,0 +1 @@
+speakup_soft

Added: espeakup/trunk/espeakup.service
===
--- espeakup/trunk/espeakup.service (rev 0)
+++ espeakup/trunk/espeakup.service 2013-01-29 09:12:48 UTC (rev 83300)
@@ -0,0 +1,15 @@
+[Unit]
+Description=Software speech output for Speakup
+# espeakup needs to start after the audio devices appear, hopefully this 
should go away in the future
+Wants=systemd-udev-settle.service
+After=systemd-udev-settle.service sound.target
+
+[Service]
+Type=forking
+PIDFile=/run/espeakup.pid
+ExecStart=/usr/bin/espeakup
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=always
+
+[Install]
+WantedBy=sound.target



[arch-commits] Commit in (8 files)

2013-01-27 Thread Pierre Schmitz
Date: Sunday, January 27, 2013 @ 17:21:20
  Author: pierre
Revision: 83163

extra2community: Moving misdnuser from extra to community

Added:
  misdnuser/
  misdnuser/repos/
  misdnuser/trunk/
  misdnuser/trunk/PKGBUILD
  misdnuser/trunk/c2faxrecv-mISDNcapid.service
  misdnuser/trunk/mISDNcapid.conf
  misdnuser/trunk/mISDNcapid.service
  misdnuser/trunk/misdncapid.rc

--+
 PKGBUILD |   50 +
 c2faxrecv-mISDNcapid.service |   11 +
 mISDNcapid.conf  |1 
 mISDNcapid.service   |   11 +
 misdncapid.rc|   45 
 5 files changed, 118 insertions(+)

Added: misdnuser/trunk/PKGBUILD
===
--- misdnuser/trunk/PKGBUILD(rev 0)
+++ misdnuser/trunk/PKGBUILD2013-01-27 16:21:20 UTC (rev 83163)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=misdnuser
+pkgver=2.0.17_20120917
+pkgrel=1
+pkgdesc=Tools and library for mISDN
+arch=('i686' 'x86_64')
+url=http://www.misdn.org;
+license=('GPL')
+depends=('isdn4k-utils' 'spandsp')
+backup=('etc/capi20.conf') 
+options=('!makeflags' '!libtool' '!strip')
+source=(ftp://ftp.archlinux.org/other/misdnuser/${pkgname}-${pkgver}.tar.gz
+misdncapid.rc
+mISDNcapid.service
+c2faxrecv-mISDNcapid.service
+mISDNcapid.conf)
+
+build() {
+  # only enable for debugging!
+  #export CFLAGS+= -g -O0
+  #export CXXFLAGS+= -g -O0
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-capi --enable-softdsp 
--with-mISDN_group=uucp
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m 755 ${srcdir}/misdncapid.rc ${pkgdir}/etc/rc.d/misdncapid
+  # fix udev rule
+  mkdir -p ${pkgdir}/usr/lib/udev/rules.d
+  mv ${pkgdir}/etc/udev/rules.d/45-misdn.rules ${pkgdir}/usr/lib/udev/rules.d
+  rm -r ${pkgdir}/etc/udev/
+  # add systemd files
+  install -D -m644 ${srcdir}/mISDNcapid.service 
${pkgdir}/usr/lib/systemd/system/mISDNcapid.service
+  # mISDNcapid:
+  # tends to crash on avmfritz card, add an extra systemd file for
+  # restarting the services until segfaults are fixed!
+  install -D -m644 ${srcdir}/c2faxrecv-mISDNcapid.service 
${pkgdir}/usr/lib/systemd/system/c2faxrecv-mISDNcapid.service
+  install -D -m644 ${srcdir}/mISDNcapid.conf 
${pkgdir}/usr/lib/tmpfiles.d/mISDNcapid.conf
+}
+md5sums=('4cdb52f2c0ff1a1426573ac5ef09e9f8'
+ '2009563b144de037ecb20f8d727a772e'
+ '8f305ee6e35fa12a8bec0632bfe7a076'
+ '32ead7f063e007c784aa883d441f33c2'
+ '42c3b46880a68c3883ee1ed00af34b45')


Property changes on: misdnuser/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: misdnuser/trunk/c2faxrecv-mISDNcapid.service
===
--- misdnuser/trunk/c2faxrecv-mISDNcapid.service
(rev 0)
+++ misdnuser/trunk/c2faxrecv-mISDNcapid.service2013-01-27 16:21:20 UTC 
(rev 83163)
@@ -0,0 +1,11 @@
+[Unit]
+Description=mISDN CAPI to fax receive
+Requires=faxq.service mISDNcapid.service
+After=faxq.service mISDNcapid.service
+
+[Service]
+ExecStart=/usr/bin/c2faxrecv
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target

Added: misdnuser/trunk/mISDNcapid.conf
===
--- misdnuser/trunk/mISDNcapid.conf (rev 0)
+++ misdnuser/trunk/mISDNcapid.conf 2013-01-27 16:21:20 UTC (rev 83163)
@@ -0,0 +1 @@
+D /var/run/mISDNcapid 0755 root root -

Added: misdnuser/trunk/mISDNcapid.service
===
--- misdnuser/trunk/mISDNcapid.service  (rev 0)
+++ misdnuser/trunk/mISDNcapid.service  2013-01-27 16:21:20 UTC (rev 83163)
@@ -0,0 +1,11 @@
+[Unit]
+Description=mISDN CAPI daemon
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/mISDNcapid
+ExecReload=/bin/kill -HUP $MAINPID
+Restart=on-abort
+
+[Install]
+WantedBy=multi-user.target

Added: misdnuser/trunk/misdncapid.rc
===
--- misdnuser/trunk/misdncapid.rc   (rev 0)
+++ misdnuser/trunk/misdncapid.rc   2013-01-27 16:21:20 UTC (rev 83163)
@@ -0,0 +1,45 @@
+#!/bin/bash
+
+# general config
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+PID=$(pidof -o %PPID /usr/sbin/mISDNcapid)
+case $1 in
+start)
+stat_busy Starting misdncapid
+   if [ ! -x /var/run/mISDNcapid ] ; then
+   install -m755 -d /var/run/mISDNcapid
+   fi
+
+   [ -z $PID ]  /usr/sbin/mISDNcapid /dev/null 21
+if [ $? -gt 0 ]; then
+

[arch-commits] Commit in (8 files)

2013-01-14 Thread Dan McGee
Date: Monday, January 14, 2013 @ 23:11:16
  Author: dan
Revision: 175137

Initial add of pgbouncer package

Added:
  pgbouncer/
  pgbouncer/repos/
  pgbouncer/trunk/
  pgbouncer/trunk/PKGBUILD
  pgbouncer/trunk/pgbouncer.ini
  pgbouncer/trunk/pgbouncer.install
  pgbouncer/trunk/pgbouncer.service
  pgbouncer/trunk/pgbouncer.tmpfiles.conf

-+
 PKGBUILD|   40 +++
 pgbouncer.ini   |   52 ++
 pgbouncer.install   |   20 +
 pgbouncer.service   |   11 +
 pgbouncer.tmpfiles.conf |2 +
 5 files changed, 125 insertions(+)

Added: pgbouncer/trunk/PKGBUILD
===
--- pgbouncer/trunk/PKGBUILD(rev 0)
+++ pgbouncer/trunk/PKGBUILD2013-01-15 04:11:16 UTC (rev 175137)
@@ -0,0 +1,40 @@
+# Maintainer: Dan McGee d...@archlinux.org
+
+pkgname=pgbouncer
+_dlid=3393
+pkgver=1.5.4
+pkgrel=2
+pkgdesc=A lightweight connection pooler for PostgreSQL
+arch=('i686' 'x86_64')
+url=http://pgfoundry.org/projects/pgbouncer;
+license=('BSD')
+depends=('libevent=2.0')
+makedepends=('asciidoc' 'xmlto')
+backup=('etc/pgbouncer/pgbouncer.ini')
+install=$pkgname.install
+source=(http://pgfoundry.org/frs/download.php/${_dlid}/${pkgname}-${pkgver}.tar.gz;
+pgbouncer.ini
+pgbouncer.service
+pgbouncer.tmpfiles.conf)
+md5sums=('9ffaf2e6232e18e676651429813732df'
+ '810813b9ef8891be382be9ffdd425edc'
+ '9036ba469f700d52fc49ed406da089a2'
+ 'ca2ced4d7616bab13c3209823778816a')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --disable-debug
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  install -D -m644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -D -m644 ../pgbouncer.ini $pkgdir/etc/pgbouncer/pgbouncer.ini
+  install -D -m644 ../pgbouncer.service 
$pkgdir/usr/lib/systemd/system/pgbouncer.service
+  install -D -m644 ../pgbouncer.tmpfiles.conf 
$pkgdir/usr/lib/tmpfiles.d/pgbouncer.conf
+  mkdir -p $pkgdir/var/log/pgbouncer
+}
+
+# vim:set ts=2 sw=2 et:

Added: pgbouncer/trunk/pgbouncer.ini
===
--- pgbouncer/trunk/pgbouncer.ini   (rev 0)
+++ pgbouncer/trunk/pgbouncer.ini   2013-01-15 04:11:16 UTC (rev 175137)
@@ -0,0 +1,52 @@
+[pgbouncer]
+logfile = /var/log/pgbouncer/pgbouncer.log
+pidfile = /run/pgbouncer/pgbouncer.pid
+
+;; ip address or * which means all ip-s
+;listen_addr = 127.0.0.1
+;listen_port = 6432
+
+unix_socket_dir = /run/postgresql
+unix_socket_mode = 0777
+
+; any, trust, plain, crypt, md5
+auth_type = trust
+auth_file = /etc/pgbouncer/userlist.txt
+
+; comma-separated list of users, who are allowed to change settings
+admin_users = postgres
+
+; comma-separated list of users who are just allowed to use SHOW command
+stats_users = stats, postgres
+
+; total number of clients that can connect
+max_client_conn = 100
+
+; default pool size.  20 is good number when transaction pooling
+; is in use, in session pooling it needs to be the number of
+; max clients you want to handle at any moment
+default_pool_size = 20
+
+
+;; database name = connect string
+;;
+;; connect string params:
+;;   dbname= host= port= user= password=
+;;   client_encoding= datestyle= timezone=
+;;   pool_size= connect_query=
+[databases]
+
+; foodb over unix socket
+;foodb =
+
+; redirect bardb to bazdb on localhost
+;bardb = host=localhost dbname=bazdb
+
+; acceess to dest database will go with single user
+;forcedb = host=127.0.0.1 port=300 user=baz password=foo 
client_encoding=UNICODE datestyle=ISO connect_query='SELECT 1'
+
+; use custom pool sizes
+;nondefaultdb = pool_size=50 reserve_pool=10
+
+; fallback connect string
+;* = host=testserver

Added: pgbouncer/trunk/pgbouncer.install
===
--- pgbouncer/trunk/pgbouncer.install   (rev 0)
+++ pgbouncer/trunk/pgbouncer.install   2013-01-15 04:11:16 UTC (rev 175137)
@@ -0,0 +1,20 @@
+post_install() {
+  if ! getent group pgbouncer /dev/null; then
+groupadd -r pgbouncer
+  fi
+  if ! getent passwd pgbouncer /dev/null; then
+useradd -c 'PGBouncer user' -r -g pgbouncer -d '/etc/pgbouncer' -s 
/bin/bash pgbouncer
+passwd -l pgbouncer /dev/null
+  fi
+  chown pgbouncer:pgbouncer /var/log/pgbouncer
+  systemd-tmpfiles --create pgbouncer.conf
+}
+
+post_remove() {
+  if getent passwd pgbouncer /dev/null; then
+userdel pgbouncer
+  fi
+  if getent group pgbouncer /dev/null; then
+groupdel pgbouncer
+  fi
+}

Added: pgbouncer/trunk/pgbouncer.service
===
--- pgbouncer/trunk/pgbouncer.service   (rev 0)
+++ pgbouncer/trunk/pgbouncer.service   2013-01-15 

[arch-commits] Commit in (8 files)

2013-01-12 Thread andyrtr
Date: Saturday, January 12, 2013 @ 03:27:50
  Author: andyrtr
Revision: 175038

add man2html (build dep for X2go) and X2goclient

Added:
  man2html/
  man2html/repos/
  man2html/trunk/
  man2html/trunk/PKGBUILD
  x2goclient/
  x2goclient/repos/
  x2goclient/trunk/
  x2goclient/trunk/PKGBUILD

---+
 man2html/trunk/PKGBUILD   |   24 +
 x2goclient/trunk/PKGBUILD |   50 
 2 files changed, 74 insertions(+)

Added: man2html/trunk/PKGBUILD
===
--- man2html/trunk/PKGBUILD (rev 0)
+++ man2html/trunk/PKGBUILD 2013-01-12 08:27:50 UTC (rev 175038)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Paolo PalmaWay Palmieri palma...@gmx.it
+
+pkgname=man2html
+pkgver=3.0.1
+pkgrel=3
+pkgdesc=A Unix manpage-to-HTML converter
+arch=('i686' 'x86_64')
+url=http://www.oac.uci.edu/indiv/ehood/man2html.html;
+license=('GPL')
+depends=('man')
+makedepends=('perl')
+source=(http://www.oac.uci.edu/indiv/ehood/tar/$pkgname$pkgver.tar.gz)
+md5sums=('1c0d28c83225d0ebc845f2386c8f8384')
+
+build() {
+  cd ${srcdir}/${pkgname}${pkgver}
+
+  install -d ${pkgdir}/usr/bin ${pkgdir}/usr/share/man/man1 || return 1
+  perl install.me -batch -binpath ${pkgdir}/usr/bin -manpath 
${pkgdir}/usr/share/man || return 1
+}


Property changes on: man2html/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: x2goclient/trunk/PKGBUILD
===
--- x2goclient/trunk/PKGBUILD   (rev 0)
+++ x2goclient/trunk/PKGBUILD   2013-01-12 08:27:50 UTC (rev 175038)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Gerhard Brauer ger...@archlinux.de
+# Contributor: Richard Murri ad...@richardmurri.com
+
+pkgname=x2goclient
+pkgver=4.0.0.1
+pkgrel=1
+pkgdesc=x2go qt4 client
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.x2go.org;
+depends=('qt' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm')
+makedepends=('man2html')
+#options=('!makeflags')
+source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('e8786329cfe97652d337f71caa71f432')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+#  ln -s ${srcdir}/${pkgname}-${pkgver}/x2go-logos/x2go-logo.svg 
${srcdir}/${pkgname}-${pkgver}/svg/x2gologo.svg
+
+  #sed -i 's/linux-g++/unix/g' x2goclient.pro
+#  qmake x2goclient.pro
+#return 1
+
+#  make clean
+  sed -i s:qmake-qt4:qmake:g Makefile
+  make PREFIX=/usr #build_client
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make PREFIX=/usr DESTDIR=$pkgdir install #build_client install
+
+  # install client binary
+  install -D -m755 x2goclient $pkgdir/usr/bin/x2goclient
+
+  # install icons
+  install -D -m644 icons/128x128/x2goclient.png 
$pkgdir/usr/share/x2goclient/icons/x2goclient.png
+  install -D -m644 icons/128x128/x2goclient.png 
$pkgdir/usr/share/pixmaps/x2goclient.png
+  install -D -m644 icons/16x16/x2goclient.png 
$pkgdir/usr/share/icons/hicolor/16x16/apps/x2goclient.png
+  install -D -m644 icons/32x32/x2goclient.png 
$pkgdir/usr/share/icons/hicolor/32x32/apps/x2goclient.png
+  install -D -m644 icons/64x64/x2goclient.png 
$pkgdir/usr/share/icons/hicolor/64x64/apps/x2goclient.png
+  install -D -m644 icons/128x128/x2goclient.png 
$pkgdir/usr/share/icons/hicolor/128x128/apps/x2goclient.png
+
+  # install desktop entry
+  install -D -m644 desktop/x2goclient.desktop 
$pkgdir/usr/share/applications/x2goclient.desktop
+}


Property changes on: x2goclient/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (8 files)

2012-10-03 Thread Jan Steffens
Date: Wednesday, October 3, 2012 @ 12:34:46
  Author: heftig
Revision: 167898

add gst ugly and libav

Added:
  gst-libav/
  gst-libav/repos/
  gst-libav/trunk/
  gst-libav/trunk/PKGBUILD
  gst-plugins-ugly/
  gst-plugins-ugly/repos/
  gst-plugins-ugly/trunk/
  gst-plugins-ugly/trunk/PKGBUILD

-+
 gst-libav/trunk/PKGBUILD|   35 +++
 gst-plugins-ugly/trunk/PKGBUILD |   38 ++
 2 files changed, 73 insertions(+)

Added: gst-libav/trunk/PKGBUILD
===
--- gst-libav/trunk/PKGBUILD(rev 0)
+++ gst-libav/trunk/PKGBUILD2012-10-03 16:34:46 UTC (rev 167898)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-libav
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=Gstreamer libav Plugin
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('gst-plugins-base-libs' 'bzip2')
+makedepends=('yasm')
+options=(!libtool !emptydirs)
+provides=(gst-ffmpeg=$pkgver-pkgrel)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+md5sums=('49c8b54eaae25da2c866a59b284b31ea')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --with-libav-extra-configure=--enable-runtime-cpudetect 
\
+--with-package-name=GStreamer libav Plugin (Archlinux) \
+--with-package-origin=http://www.archlinux.org/;
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}


Property changes on: gst-libav/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gst-plugins-ugly/trunk/PKGBUILD
===
--- gst-plugins-ugly/trunk/PKGBUILD (rev 0)
+++ gst-plugins-ugly/trunk/PKGBUILD 2012-10-03 16:34:46 UTC (rev 167898)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gst-plugins-ugly
+pkgver=1.0.0
+pkgrel=1
+pkgdesc=GStreamer Multimedia Framework Ugly Plugins
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://gstreamer.freedesktop.org/;
+depends=('gst-plugins-base-libs' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 
'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr')
+options=(!libtool !emptydirs)
+source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
+#opencore-amr.patch)
+md5sums=('7f20303caf4305278573fb7ef73a07b7')
+ #'d8feb6c99bfaff8be6b2c48ea4e98e47')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i '/AC_PATH_XTRA/d' configure.ac
+  autoreconf
+  #patch -Np0 -i ${srcdir}/opencore-amr.patch
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-experimental \
+--with-package-name=GStreamer Ugly Plugins (Archlinux) \
+--with-package-origin=http://www.archlinux.org/;
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}


Property changes on: gst-plugins-ugly/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


  1   2   >