[arch-commits] Commit in opensips/repos (10 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Mon Mar 4 11:36:32 UTC 2013


    Date: Monday, March 4, 2013 @ 12:36:32
  Author: spupykin
Revision: 85642

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

Added:
  opensips/repos/community-staging-i686/
  opensips/repos/community-staging-i686/PKGBUILD
    (from rev 85641, opensips/trunk/PKGBUILD)
  opensips/repos/community-staging-i686/opensips.init
    (from rev 85641, opensips/trunk/opensips.init)
  opensips/repos/community-staging-i686/opensips.install
    (from rev 85641, opensips/trunk/opensips.install)
  opensips/repos/community-staging-i686/opensips.service
    (from rev 85641, opensips/trunk/opensips.service)
  opensips/repos/community-staging-x86_64/
  opensips/repos/community-staging-x86_64/PKGBUILD
    (from rev 85641, opensips/trunk/PKGBUILD)
  opensips/repos/community-staging-x86_64/opensips.init
    (from rev 85641, opensips/trunk/opensips.init)
  opensips/repos/community-staging-x86_64/opensips.install
    (from rev 85641, opensips/trunk/opensips.install)
  opensips/repos/community-staging-x86_64/opensips.service
    (from rev 85641, opensips/trunk/opensips.service)

-------------------------------------------+
 community-staging-i686/PKGBUILD           |   79 ++++++++++++++++++++++++++++
 community-staging-i686/opensips.init      |   50 +++++++++++++++++
 community-staging-i686/opensips.install   |    5 +
 community-staging-i686/opensips.service   |   11 +++
 community-staging-x86_64/PKGBUILD         |   79 ++++++++++++++++++++++++++++
 community-staging-x86_64/opensips.init    |   50 +++++++++++++++++
 community-staging-x86_64/opensips.install |    5 +
 community-staging-x86_64/opensips.service |   11 +++
 8 files changed, 290 insertions(+)

Copied: opensips/repos/community-staging-i686/PKGBUILD (from rev 85641, opensips/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=opensips
+pkgver=1.8.1
+pkgrel=4
+pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, location server, redirect server ..."
+url="http://www.opensips.org"
+depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
+makedepends=('postgresql-libs>=8.4.1' 'unixodbc' 'libldap>=2.4.18' 'libmariadbclient'
+	     'lynx' 'libxslt')
+optdepends=('postgresql-libs'
+	    'unixodbc'
+	    'libldap'
+	    'libmariadbclient'
+	    'libsasl'
+	    'python2'
+	    'pcre')
+backup=("etc/opensips/opensips.cfg"
+	"etc/opensips/dictionary.radius"
+	"etc/opensips/opensipsctlrc")
+arch=('i686' 'x86_64')
+license=('GPL')
+install=opensips.install
+options=('!emptydirs' 'zipman' '!makeflags' 'docs')
+source=(http://opensips.org/pub/opensips/$pkgver/src/opensips-${pkgver}_src.tar.gz
+	opensips.init
+	opensips.service)
+md5sums=('4a7cc708a5fba6ab3d1a3aa0aaa85d77'
+         '685fbe00826df1285b410d4610dcbb0c'
+         '0d80ef75b5c10324e6db790b7741c2eb')
+
+build()
+{
+  cd $srcdir/$pkgname-$pkgver-tls/
+
+  # python2 fix
+  for file in $(find . -name '*.py' -print); do
+    sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+    sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+
+  make \
+	include_modules="ldap db_mysql db_postgres db_unixodbc presence presence_xml h350" \
+	TLS=1 LIBDIR=lib
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver-tls/
+
+  make \
+	include_modules="ldap db_mysql db_postgres db_unixodbc presence presence_xml h350" \
+	TLS=1 DESTDIR=$pkgdir/usr LIBDIR=lib install
+
+  # Conforms to the arch packaging standards (http://wiki.archlinux.org/index.php/Arch_Packaging_Standards)
+  mkdir -p $pkgdir/etc/
+  mv $pkgdir/usr/etc/opensips/ $pkgdir/etc/
+  sed -i 's#mpath=".*lib/opensips/modules/"#mpath="/usr/lib/opensips/modules/"#' $pkgdir/etc/opensips/opensips.cfg
+
+  # Install starting script
+  mkdir -p $pkgdir/etc/rc.d/
+  cp ../opensips.init $pkgdir/etc/rc.d/opensips
+  chmod 755 $pkgdir/etc/rc.d/opensips
+
+  # fix bad paths
+  cd $pkgdir/usr/share
+  find -type f -exec sed -i "s#$pkgdir##" {} \;
+
+  cd $pkgdir/usr/lib/opensips/opensipsctl
+  find -type f -exec sed -i "s#$pkgdir##" {} \;
+
+  cd $pkgdir/usr/sbin
+  sed -i "s#$pkgdir##" opensipsctl opensipsdbctl osipsconsole
+
+  cd $pkgdir/etc
+  find -type f -exec sed -i "s#$pkgdir##" {} \;
+
+  install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service
+}

Copied: opensips/repos/community-staging-i686/opensips.init (from rev 85641, opensips/trunk/opensips.init)
===================================================================
--- community-staging-i686/opensips.init	                        (rev 0)
+++ community-staging-i686/opensips.init	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+BINNAME=opensips
+OSRDIR=/usr/sbin
+OPENSIPS=$OSRDIR/$BINNAME
+
+TMPDIR=/var/tmp
+CORE=$TMPDIR/core
+
+ETC=/etc/opensips/opensips.cfg
+PIDFILE=/var/run/opensips.pid
+
+case "$1" in
+  start)
+    stat_busy "Starting OpenSIPS server"
+    cd $TMPDIR
+    $OPENSIPS -f $ETC -w $TMPDIR -P $PIDFILE 2>&1 > /dev/null
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon opensips
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping OpenSIPS server"
+    if [ -r $PIDFILE ]
+    then
+	cat $PIDFILE | xargs kill
+	if [ $? -gt 0 ]; then
+	  stat_fail
+	else
+	  rm_daemon opensips
+	  stat_done
+	fi
+    else
+	stat_fail
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 3
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"  
+esac

Copied: opensips/repos/community-staging-i686/opensips.install (from rev 85641, opensips/trunk/opensips.install)
===================================================================
--- community-staging-i686/opensips.install	                        (rev 0)
+++ community-staging-i686/opensips.install	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,5 @@
+post_install() 
+{
+  echo "To use MySQL, you should install mysql package and run '/usr/sbin/openser_mysql.sh create'"
+  /bin/true
+}

Copied: opensips/repos/community-staging-i686/opensips.service (from rev 85641, opensips/trunk/opensips.service)
===================================================================
--- community-staging-i686/opensips.service	                        (rev 0)
+++ community-staging-i686/opensips.service	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,11 @@
+[Unit]
+Description=OpenSIPS daemon
+After=network.target remote-fs.target nss-lookup.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/opensips.pid
+ExecStart=/usr/bin/opensips -f /etc/opensips/opensips.cfg -w /var/tmp -P /var/run/opensips.pid
+
+[Install]
+WantedBy=multi-user.target

Copied: opensips/repos/community-staging-x86_64/PKGBUILD (from rev 85641, opensips/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=opensips
+pkgver=1.8.1
+pkgrel=4
+pkgdesc="An Open Source SIP Server able to act as a SIP proxy, registrar, location server, redirect server ..."
+url="http://www.opensips.org"
+depends=('gcc-libs' 'openssl' 'db' 'attr' 'libxml2')
+makedepends=('postgresql-libs>=8.4.1' 'unixodbc' 'libldap>=2.4.18' 'libmariadbclient'
+	     'lynx' 'libxslt')
+optdepends=('postgresql-libs'
+	    'unixodbc'
+	    'libldap'
+	    'libmariadbclient'
+	    'libsasl'
+	    'python2'
+	    'pcre')
+backup=("etc/opensips/opensips.cfg"
+	"etc/opensips/dictionary.radius"
+	"etc/opensips/opensipsctlrc")
+arch=('i686' 'x86_64')
+license=('GPL')
+install=opensips.install
+options=('!emptydirs' 'zipman' '!makeflags' 'docs')
+source=(http://opensips.org/pub/opensips/$pkgver/src/opensips-${pkgver}_src.tar.gz
+	opensips.init
+	opensips.service)
+md5sums=('4a7cc708a5fba6ab3d1a3aa0aaa85d77'
+         '685fbe00826df1285b410d4610dcbb0c'
+         '0d80ef75b5c10324e6db790b7741c2eb')
+
+build()
+{
+  cd $srcdir/$pkgname-$pkgver-tls/
+
+  # python2 fix
+  for file in $(find . -name '*.py' -print); do
+    sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+    sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+
+  make \
+	include_modules="ldap db_mysql db_postgres db_unixodbc presence presence_xml h350" \
+	TLS=1 LIBDIR=lib
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver-tls/
+
+  make \
+	include_modules="ldap db_mysql db_postgres db_unixodbc presence presence_xml h350" \
+	TLS=1 DESTDIR=$pkgdir/usr LIBDIR=lib install
+
+  # Conforms to the arch packaging standards (http://wiki.archlinux.org/index.php/Arch_Packaging_Standards)
+  mkdir -p $pkgdir/etc/
+  mv $pkgdir/usr/etc/opensips/ $pkgdir/etc/
+  sed -i 's#mpath=".*lib/opensips/modules/"#mpath="/usr/lib/opensips/modules/"#' $pkgdir/etc/opensips/opensips.cfg
+
+  # Install starting script
+  mkdir -p $pkgdir/etc/rc.d/
+  cp ../opensips.init $pkgdir/etc/rc.d/opensips
+  chmod 755 $pkgdir/etc/rc.d/opensips
+
+  # fix bad paths
+  cd $pkgdir/usr/share
+  find -type f -exec sed -i "s#$pkgdir##" {} \;
+
+  cd $pkgdir/usr/lib/opensips/opensipsctl
+  find -type f -exec sed -i "s#$pkgdir##" {} \;
+
+  cd $pkgdir/usr/sbin
+  sed -i "s#$pkgdir##" opensipsctl opensipsdbctl osipsconsole
+
+  cd $pkgdir/etc
+  find -type f -exec sed -i "s#$pkgdir##" {} \;
+
+  install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service
+}

Copied: opensips/repos/community-staging-x86_64/opensips.init (from rev 85641, opensips/trunk/opensips.init)
===================================================================
--- community-staging-x86_64/opensips.init	                        (rev 0)
+++ community-staging-x86_64/opensips.init	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+BINNAME=opensips
+OSRDIR=/usr/sbin
+OPENSIPS=$OSRDIR/$BINNAME
+
+TMPDIR=/var/tmp
+CORE=$TMPDIR/core
+
+ETC=/etc/opensips/opensips.cfg
+PIDFILE=/var/run/opensips.pid
+
+case "$1" in
+  start)
+    stat_busy "Starting OpenSIPS server"
+    cd $TMPDIR
+    $OPENSIPS -f $ETC -w $TMPDIR -P $PIDFILE 2>&1 > /dev/null
+    if [ $? -gt 0 ]; then
+      stat_fail
+    else
+      add_daemon opensips
+      stat_done
+    fi
+    ;;
+  stop)
+    stat_busy "Stopping OpenSIPS server"
+    if [ -r $PIDFILE ]
+    then
+	cat $PIDFILE | xargs kill
+	if [ $? -gt 0 ]; then
+	  stat_fail
+	else
+	  rm_daemon opensips
+	  stat_done
+	fi
+    else
+	stat_fail
+    fi
+    ;;
+  restart)
+    $0 stop
+    sleep 3
+    $0 start
+    ;;
+  *)
+    echo "usage: $0 {start|stop|restart}"  
+esac

Copied: opensips/repos/community-staging-x86_64/opensips.install (from rev 85641, opensips/trunk/opensips.install)
===================================================================
--- community-staging-x86_64/opensips.install	                        (rev 0)
+++ community-staging-x86_64/opensips.install	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,5 @@
+post_install() 
+{
+  echo "To use MySQL, you should install mysql package and run '/usr/sbin/openser_mysql.sh create'"
+  /bin/true
+}

Copied: opensips/repos/community-staging-x86_64/opensips.service (from rev 85641, opensips/trunk/opensips.service)
===================================================================
--- community-staging-x86_64/opensips.service	                        (rev 0)
+++ community-staging-x86_64/opensips.service	2013-03-04 11:36:32 UTC (rev 85642)
@@ -0,0 +1,11 @@
+[Unit]
+Description=OpenSIPS daemon
+After=network.target remote-fs.target nss-lookup.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/opensips.pid
+ExecStart=/usr/bin/opensips -f /etc/opensips/opensips.cfg -w /var/tmp -P /var/run/opensips.pid
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list