[arch-commits] Commit in yate/repos (6 files)

Sergej Pupykin spupykin at archlinux.org
Mon May 29 08:03:17 UTC 2017


    Date: Monday, May 29, 2017 @ 08:03:15
  Author: spupykin
Revision: 230782

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

Added:
  yate/repos/community-staging-i686/PKGBUILD
    (from rev 230781, yate/trunk/PKGBUILD)
  yate/repos/community-staging-i686/yate.service
    (from rev 230781, yate/trunk/yate.service)
  yate/repos/community-staging-x86_64/PKGBUILD
    (from rev 230781, yate/trunk/PKGBUILD)
  yate/repos/community-staging-x86_64/yate.service
    (from rev 230781, yate/trunk/yate.service)
Deleted:
  yate/repos/community-staging-i686/PKGBUILD
  yate/repos/community-staging-x86_64/PKGBUILD

---------------------------------------+
 /PKGBUILD                             |   78 ++++++++++++++++++++++++++++++++
 community-staging-i686/PKGBUILD       |   36 --------------
 community-staging-i686/yate.service   |   14 +++++
 community-staging-x86_64/PKGBUILD     |   36 --------------
 community-staging-x86_64/yate.service |   14 +++++
 5 files changed, 106 insertions(+), 72 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===================================================================
--- community-staging-i686/PKGBUILD	2017-05-29 07:19:06 UTC (rev 230781)
+++ community-staging-i686/PKGBUILD	2017-05-29 08:03:15 UTC (rev 230782)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
-# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
-# Contributor: Yejun Yang <yejunx AT gmail DOT com>
-# Contributor: Biru Ionut <ionut at archlinux.ro>
-
-pkgname=yate
-pkgver=5.5.0
-pkgrel=2
-pkgdesc="Next-generation telephony engine"
-arch=('i686' 'x86_64')
-url="http://www.yate.ro/"
-license=('GPL')
-depends=('speex' 'gsm' 'postgresql-libs' 'libmariadb' 'alsa-lib' 'openssl-1.0' 'sqlite')
-makedepends=('qt4')
-optdepends=('qt4')
-options=(!makeflags)
-source=("http://yate.null.ro/tarballs/yate5/yate-${pkgver}-1.tar.gz")
-sha256sums=('a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676')
-
-build() {
-  cd $srcdir/${pkgname}
-  export LDFLAGS="${LDFLAGS//-Wl,--as-needed}"
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  ./configure --prefix=/usr \
-              --sysconfdir=/etc \
-              --with-libpq \
-              --with-mysql \
-              --without-openh323
-  make
-}
-
-package(){
-  cd $srcdir/${pkgname}
-  make DESTDIR=$pkgdir install
-}

Copied: yate/repos/community-staging-i686/PKGBUILD (from rev 230781, yate/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2017-05-29 08:03:15 UTC (rev 230782)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
+# Contributor: Yejun Yang <yejunx AT gmail DOT com>
+# Contributor: Biru Ionut <ionut at archlinux.ro>
+
+pkgname=yate
+pkgver=5.5.0
+pkgrel=3
+pkgdesc="Next-generation telephony engine"
+arch=('i686' 'x86_64')
+url="http://www.yate.ro/"
+license=('GPL')
+depends=('speex' 'gsm' 'postgresql-libs' 'libmariadb' 'alsa-lib' 'openssl-1.0' 'sqlite')
+makedepends=('qt4')
+optdepends=('qt4')
+options=(!makeflags)
+source=("http://yate.null.ro/tarballs/yate5/yate-${pkgver}-1.tar.gz"
+	"yate.service")
+sha256sums=('a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676'
+            '73eab39a0ba884a4c36ca7c8f1faea4000301a0e795544b74cba78d90de5e302')
+
+build() {
+  cd $srcdir/${pkgname}
+  export LDFLAGS="${LDFLAGS//-Wl,--as-needed}"
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  ./configure --prefix=/usr \
+              --sysconfdir=/etc \
+              --with-libpq \
+              --with-mysql \
+              --without-openh323
+  make
+}
+
+package(){
+  cd $srcdir/${pkgname}
+  make DESTDIR=$pkgdir install
+  install -Dm0644 "$srcdir"/yate.service "$pkgdir"/usr/lib/systemd/system/yate.service
+}

Copied: yate/repos/community-staging-i686/yate.service (from rev 230781, yate/trunk/yate.service)
===================================================================
--- community-staging-i686/yate.service	                        (rev 0)
+++ community-staging-i686/yate.service	2017-05-29 08:03:15 UTC (rev 230782)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Next-generation telephony engine
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/yate
+StandardOutput=syslog
+Restart=always
+RestartSec=60
+RuntimeDirectory=yate
+
+[Install]
+WantedBy=multi-user.target

Deleted: community-staging-x86_64/PKGBUILD
===================================================================
--- community-staging-x86_64/PKGBUILD	2017-05-29 07:19:06 UTC (rev 230781)
+++ community-staging-x86_64/PKGBUILD	2017-05-29 08:03:15 UTC (rev 230782)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
-# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
-# Contributor: Yejun Yang <yejunx AT gmail DOT com>
-# Contributor: Biru Ionut <ionut at archlinux.ro>
-
-pkgname=yate
-pkgver=5.5.0
-pkgrel=2
-pkgdesc="Next-generation telephony engine"
-arch=('i686' 'x86_64')
-url="http://www.yate.ro/"
-license=('GPL')
-depends=('speex' 'gsm' 'postgresql-libs' 'libmariadb' 'alsa-lib' 'openssl-1.0' 'sqlite')
-makedepends=('qt4')
-optdepends=('qt4')
-options=(!makeflags)
-source=("http://yate.null.ro/tarballs/yate5/yate-${pkgver}-1.tar.gz")
-sha256sums=('a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676')
-
-build() {
-  cd $srcdir/${pkgname}
-  export LDFLAGS="${LDFLAGS//-Wl,--as-needed}"
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  ./configure --prefix=/usr \
-              --sysconfdir=/etc \
-              --with-libpq \
-              --with-mysql \
-              --without-openh323
-  make
-}
-
-package(){
-  cd $srcdir/${pkgname}
-  make DESTDIR=$pkgdir install
-}

Copied: yate/repos/community-staging-x86_64/PKGBUILD (from rev 230781, yate/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-05-29 08:03:15 UTC (rev 230782)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
+# Contributor: Yejun Yang <yejunx AT gmail DOT com>
+# Contributor: Biru Ionut <ionut at archlinux.ro>
+
+pkgname=yate
+pkgver=5.5.0
+pkgrel=3
+pkgdesc="Next-generation telephony engine"
+arch=('i686' 'x86_64')
+url="http://www.yate.ro/"
+license=('GPL')
+depends=('speex' 'gsm' 'postgresql-libs' 'libmariadb' 'alsa-lib' 'openssl-1.0' 'sqlite')
+makedepends=('qt4')
+optdepends=('qt4')
+options=(!makeflags)
+source=("http://yate.null.ro/tarballs/yate5/yate-${pkgver}-1.tar.gz"
+	"yate.service")
+sha256sums=('a9fc472df082e92d578efa3de54689e10ee1a24fdd67a9cc928db7c2e1568676'
+            '73eab39a0ba884a4c36ca7c8f1faea4000301a0e795544b74cba78d90de5e302')
+
+build() {
+  cd $srcdir/${pkgname}
+  export LDFLAGS="${LDFLAGS//-Wl,--as-needed}"
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  ./configure --prefix=/usr \
+              --sysconfdir=/etc \
+              --with-libpq \
+              --with-mysql \
+              --without-openh323
+  make
+}
+
+package(){
+  cd $srcdir/${pkgname}
+  make DESTDIR=$pkgdir install
+  install -Dm0644 "$srcdir"/yate.service "$pkgdir"/usr/lib/systemd/system/yate.service
+}

Copied: yate/repos/community-staging-x86_64/yate.service (from rev 230781, yate/trunk/yate.service)
===================================================================
--- community-staging-x86_64/yate.service	                        (rev 0)
+++ community-staging-x86_64/yate.service	2017-05-29 08:03:15 UTC (rev 230782)
@@ -0,0 +1,14 @@
+[Unit]
+Description=Next-generation telephony engine
+
+[Service]
+Type=simple
+User=nobody
+ExecStart=/usr/bin/yate
+StandardOutput=syslog
+Restart=always
+RestartSec=60
+RuntimeDirectory=yate
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list