[arch-commits] Commit in unrealircd/repos (12 files)

2017-02-17 Thread Sergej Pupykin
Date: Friday, February 17, 2017 @ 21:20:15
  Author: spupykin
Revision: 212988

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

Added:
  unrealircd/repos/community-staging-i686/
  unrealircd/repos/community-staging-i686/PKGBUILD
(from rev 212987, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-staging-i686/install.pl
(from rev 212987, unrealircd/trunk/install.pl)
  unrealircd/repos/community-staging-i686/unrealircd.install
(from rev 212987, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-staging-i686/unrealircd.service
(from rev 212987, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-staging-i686/unrealircd.tmpfiles.d
(from rev 212987, unrealircd/trunk/unrealircd.tmpfiles.d)
  unrealircd/repos/community-staging-x86_64/
  unrealircd/repos/community-staging-x86_64/PKGBUILD
(from rev 212987, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-staging-x86_64/install.pl
(from rev 212987, unrealircd/trunk/install.pl)
  unrealircd/repos/community-staging-x86_64/unrealircd.install
(from rev 212987, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-staging-x86_64/unrealircd.service
(from rev 212987, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-staging-x86_64/unrealircd.tmpfiles.d
(from rev 212987, unrealircd/trunk/unrealircd.tmpfiles.d)

+
 community-staging-i686/PKGBUILD|   68 +++
 community-staging-i686/install.pl  |5 +
 community-staging-i686/unrealircd.install  |   11 +++
 community-staging-i686/unrealircd.service  |   12 
 community-staging-i686/unrealircd.tmpfiles.d   |1 
 community-staging-x86_64/PKGBUILD  |   68 +++
 community-staging-x86_64/install.pl|5 +
 community-staging-x86_64/unrealircd.install|   11 +++
 community-staging-x86_64/unrealircd.service|   12 
 community-staging-x86_64/unrealircd.tmpfiles.d |1 
 10 files changed, 194 insertions(+)

Copied: unrealircd/repos/community-staging-i686/PKGBUILD (from rev 212987, 
unrealircd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-02-17 21:20:15 UTC (rev 212988)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Zerial 
+
+pkgname=unrealircd
+pkgver=4.0.11
+pkgrel=2
+pkgdesc="Open Source IRC Server"
+arch=('i686' 'x86_64')
+url="http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares' 'tre' 'pcre2')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf')
+install=unrealircd.install
+source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
+   unrealircd.service
+   unrealircd.tmpfiles.d
+   install.pl)
+sha256sums=('6733dad62ce29fa082c9901cfadd79f0fdbfcde204979c1264ab29791d2a67ff'
+'0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
+'2b2efb4b87b5b270e87fc0187ac1c559d41a41e6c81615182dc2bdd18bfcaccd'
+'43f07093ada8eb5c954f9e2e189610575906c690c0953fec041d4f2d31210d85')
+
+prepare() {
+  cd "$srcdir"/unrealircd-$pkgver
+  sed -i \
+-e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
+-e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
+Makefile.in
+}
+
+build() {
+  cd "$srcdir"/unrealircd-$pkgver
+  ./configure \
+--with-pidfile=/run/unrealircd/ircd.pid \
+--with-showlistmodes \
+--enable-ssl=/usr \
+--with-bindir=/usr/bin \
+--with-datadir=/var/lib/unrealircd \
+--with-confdir=/etc/unrealircd \
+--with-modulesdir=/usr/lib/unrealircd \
+--with-logdir=/var/log/unrealircd \
+--with-cachedir=/var/cache/unrealircd \
+--with-docdir=/usr/share/doc/unrealircd \
+--with-tmpdir=/tmp \
+--with-scriptdir=/usr \
+--with-nick-history=2000 \
+--with-sendq=300 \
+--with-permissions=0644 \
+--with-fd-setsize=1024 \
+--enable-dynamic-linking
+  make
+}
+
+package() {
+  cd "$srcdir"/unrealircd-$pkgver
+
+  export pkgdir
+  make INSTALL="$srcdir"/install.pl install
+  mv "$pkgdir"/usr/unrealircd "$pkgdir"/etc/unrealircd/unrealircd
+  cp "$pkgdir"/etc/unrealircd/examples/example.conf 
"$pkgdir"/etc/unrealircd/unrealircd.conf
+  rm -rf "$pkgdir"/tmp
+
+  install -Dm0644 "$srcdir"/unrealircd.service 
"$pkgdir"/usr/lib/systemd/system/unrealircd.service
+  install -Dm0644 "$srcdir"/unrealircd.tmpfiles.d 
"$pkgdir"/usr/lib/tmpfiles.d/unrealircd.conf
+}

Copied: unrealircd/repos/community-staging-i686/install.pl (from rev 212987, 
unrealircd/trunk/install.pl)
===
--- community-staging-i686/install.pl   (rev 0)
+++ community-staging-i686/install.pl  

[arch-commits] Commit in unrealircd/repos (12 files)

2016-03-03 Thread Bartłomiej Piotrowski
Date: Thursday, March 3, 2016 @ 12:15:27
  Author: bpiotrowski
Revision: 164448

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

Added:
  unrealircd/repos/community-staging-i686/
  unrealircd/repos/community-staging-i686/PKGBUILD
(from rev 164447, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-staging-i686/install.pl
(from rev 164447, unrealircd/trunk/install.pl)
  unrealircd/repos/community-staging-i686/unrealircd.install
(from rev 164447, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-staging-i686/unrealircd.service
(from rev 164447, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-staging-i686/unrealircd.tmpfiles.d
(from rev 164447, unrealircd/trunk/unrealircd.tmpfiles.d)
  unrealircd/repos/community-staging-x86_64/
  unrealircd/repos/community-staging-x86_64/PKGBUILD
(from rev 164447, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-staging-x86_64/install.pl
(from rev 164447, unrealircd/trunk/install.pl)
  unrealircd/repos/community-staging-x86_64/unrealircd.install
(from rev 164447, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-staging-x86_64/unrealircd.service
(from rev 164447, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-staging-x86_64/unrealircd.tmpfiles.d
(from rev 164447, unrealircd/trunk/unrealircd.tmpfiles.d)

+
 community-staging-i686/PKGBUILD|   68 +++
 community-staging-i686/install.pl  |5 +
 community-staging-i686/unrealircd.install  |   12 
 community-staging-i686/unrealircd.service  |   12 
 community-staging-i686/unrealircd.tmpfiles.d   |1 
 community-staging-x86_64/PKGBUILD  |   68 +++
 community-staging-x86_64/install.pl|5 +
 community-staging-x86_64/unrealircd.install|   12 
 community-staging-x86_64/unrealircd.service|   12 
 community-staging-x86_64/unrealircd.tmpfiles.d |1 
 10 files changed, 196 insertions(+)

Copied: unrealircd/repos/community-staging-i686/PKGBUILD (from rev 164447, 
unrealircd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-03 11:15:27 UTC (rev 164448)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Zerial 
+
+pkgname=unrealircd
+pkgver=4.0.1
+pkgrel=3
+pkgdesc="Open Source IRC Server"
+arch=('i686' 'x86_64')
+url="http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf')
+install=unrealircd.install
+source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
+   unrealircd.service
+   unrealircd.tmpfiles.d
+   install.pl)
+md5sums=('f513a190d5549f00ab030373b912e861'
+ '677d8de0bae770488a2c1730f9475a51'
+ '3ec519ea7dbe99696eb6c51dfc0d382a'
+ '3a23792b03420fc578cf6688b1574ae3')
+
+prepare() {
+  cd $srcdir/unrealircd-$pkgver
+  sed -i \
+-e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
+-e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
+Makefile.in
+}
+
+build() {
+  cd $srcdir/unrealircd-$pkgver
+  ./configure \
+--with-pidfile=/run/unrealircd/ircd.pid \
+--with-showlistmodes \
+--enable-ssl=/usr \
+--with-bindir=/usr/bin \
+--with-datadir=/var/lib/unrealircd \
+--with-confdir=/etc/unrealircd \
+--with-modulesdir=/usr/lib/unrealircd \
+--with-logdir=/var/log/unrealircd \
+--with-cachedir=/var/cache/unrealircd \
+--with-docdir=/usr/share/doc/unrealircd \
+--with-tmpdir=/tmp \
+--with-scriptdir=/usr \
+--with-nick-history=2000 \
+--with-sendq=300 \
+--with-permissions=0644 \
+--with-fd-setsize=1024 \
+--enable-dynamic-linking
+  make
+}
+
+package() {
+  cd $srcdir/unrealircd-$pkgver
+
+  export pkgdir
+  make INSTALL=$srcdir/install.pl install
+  mv $pkgdir/usr/unrealircd $pkgdir/etc/unrealircd/unrealircd
+  cp $pkgdir/etc/unrealircd/examples/example.conf 
$pkgdir/etc/unrealircd/unrealircd.conf
+  rm -rf $pkgdir/tmp
+
+  install -Dm0644 $srcdir/unrealircd.service 
$pkgdir/usr/lib/systemd/system/unrealircd.service
+  install -Dm0644 $srcdir/unrealircd.tmpfiles.d 
$pkgdir/usr/lib/tmpfiles.d/unrealircd.conf
+}

Copied: unrealircd/repos/community-staging-i686/install.pl (from rev 164447, 
unrealircd/trunk/install.pl)
===
--- community-staging-i686/install.pl   (rev 0)
+++ community-staging-i686/install.pl   2016-03-03 11:15:27 UTC (rev 164448)
@@ -0,0 +1,5 @@
+#!/usr/bin/perl -w
+use Env qw(pkgdir);
+my $last = pop @ARGV;
+my $cmd = "/usr/bin/install ".(join ' ',@ARGV)." 

[arch-commits] Commit in unrealircd/repos (12 files)

2013-07-31 Thread Sergej Pupykin
Date: Wednesday, July 31, 2013 @ 09:46:49
  Author: spupykin
Revision: 94846

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

Added:
  unrealircd/repos/community-i686/PKGBUILD
(from rev 94845, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-i686/arch-fixes.patch
(from rev 94845, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-i686/unrealircd.service
(from rev 94845, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 94845, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/arch-fixes.patch
(from rev 94845, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 94845, unrealircd/trunk/unrealircd.service)
Deleted:
  unrealircd/repos/community-i686/PKGBUILD
  unrealircd/repos/community-i686/arch-fixes.patch
  unrealircd/repos/community-i686/unrealircd.service
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/arch-fixes.patch
  unrealircd/repos/community-x86_64/unrealircd.service

-+
 /PKGBUILD   |  144 +++
 /arch-fixes.patch   |  178 ++
 /unrealircd.service |   24 
 community-i686/PKGBUILD |   72 -
 community-i686/arch-fixes.patch |   89 -
 community-i686/unrealircd.service   |   12 --
 community-x86_64/PKGBUILD   |   72 -
 community-x86_64/arch-fixes.patch   |   89 -
 community-x86_64/unrealircd.service |   12 --
 9 files changed, 346 insertions(+), 346 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-31 07:46:25 UTC (rev 94845)
+++ community-i686/PKGBUILD 2013-07-31 07:46:49 UTC (rev 94846)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Zerial ferna...@zerial.org
-
-pkgname=unrealircd
-pkgver=3.2.10
-pkgrel=5
-pkgdesc=Open Source IRC Server
-arch=('i686' 'x86_64')
-url=http://unrealircd.com;
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf'
-   'etc/conf.d/unrealircd')
-source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
-   unrealircd.service
-   arch-fixes.patch)
-md5sums=('05b0bbdbfab9ffc2304f7595951d7cec'
- '93276a1cd426e4a811c072c35fc31e94'
- '77807313c4578f2c30286b9f9e3fb21c')
-
-build() {
-  cd $srcdir/Unreal$pkgver
-
-  patch -p1 $srcdir/arch-fixes.patch
-
-  ac_cv_ip6=yes ./configure --with-showlistmodes \
-  --enable-hub --enable-prefixaq --with-listen=5 \
-  --with-dpath=/etc/unrealircd \
-  --with-spath=/usr/bin \
-  --with-nick-history=2000 --with-sendq=300 \
-  --with-bufferpool=18 --with-hostname=archlinux \
-  --with-permissions=0600 --with-fd-setsize=1024 \
-  --enable-dynamic-linking \
-  --enable-ziplinks \
-  --enable-ssl \
-  --enable-inet6 \
-  --enable-libcurl=/usr \
-  --with-system-cares
-
-  make
-}
-
-package() {
-  cd $srcdir/Unreal$pkgver
-
-  mkdir -p $pkgdir/etc/unrealircd
-  mkdir -p $pkgdir/usr/bin
-
-  make IRCDDIR=$pkgdir/etc/unrealircd BINDIR=$pkgdir/usr/bin install
-
-  mv $srcdir/Unreal$pkgver/src/ircd $pkgdir/usr/bin/unrealircd
-  mv $srcdir/Unreal$pkgver/doc/example.conf 
$pkgdir/etc/unrealircd/unrealircd.conf
-  mkdir -p $pkgdir/usr/lib/unrealircd
-  mv $pkgdir/etc/unrealircd/modules $pkgdir/usr/lib/unrealircd/
-  ln -s /usr/lib/unrealircd/modules $pkgdir/etc/unrealircd/modules
-
-  # log
-  mkdir -p $pkgdir/var/log/unrealircd/
-  touch $pkgdir/var/log/unrealircd/ircd.log
-  ln -s /var/log/unrealircd/ircd.log $pkgdir/etc/unrealircd/ircd.log
-
-  mkdir -p $pkgdir/etc/conf.d/
-  echo 'UNREALIRCD_USER=root' $pkgdir/etc/conf.d/unrealircd
-
-  find $pkgdir/usr -type f -exec chmod ugo+r {} \;
-  find $pkgdir/usr -type d -exec chmod ugo+rx {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: unrealircd/repos/community-i686/PKGBUILD (from rev 94845, 
unrealircd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-31 07:46:49 UTC (rev 94846)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+
+pkgname=unrealircd
+pkgver=3.2.10.1
+pkgrel=1
+pkgdesc=Open Source IRC Server
+arch=('i686' 'x86_64')
+url=http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf'
+   'etc/conf.d/unrealircd')
+source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
+   

[arch-commits] Commit in unrealircd/repos (12 files)

2013-06-03 Thread Sergej Pupykin
Date: Monday, June 3, 2013 @ 15:56:49
  Author: spupykin
Revision: 92284

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

Added:
  unrealircd/repos/community-i686/PKGBUILD
(from rev 92283, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-i686/arch-fixes.patch
(from rev 92283, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-i686/unrealircd.service
(from rev 92283, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 92283, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/arch-fixes.patch
(from rev 92283, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 92283, unrealircd/trunk/unrealircd.service)
Deleted:
  unrealircd/repos/community-i686/PKGBUILD
  unrealircd/repos/community-i686/arch-fixes.patch
  unrealircd/repos/community-i686/unrealircd.service
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/arch-fixes.patch
  unrealircd/repos/community-x86_64/unrealircd.service

-+
 /PKGBUILD   |  144 +++
 /arch-fixes.patch   |  178 ++
 /unrealircd.service |   24 
 community-i686/PKGBUILD |   72 -
 community-i686/arch-fixes.patch |   89 -
 community-i686/unrealircd.service   |   12 --
 community-x86_64/PKGBUILD   |   72 -
 community-x86_64/arch-fixes.patch   |   89 -
 community-x86_64/unrealircd.service |   12 --
 9 files changed, 346 insertions(+), 346 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-06-03 13:56:29 UTC (rev 92283)
+++ community-i686/PKGBUILD 2013-06-03 13:56:49 UTC (rev 92284)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Zerial ferna...@zerial.org
-
-pkgname=unrealircd
-pkgver=3.2.10
-pkgrel=4
-pkgdesc=Open Source IRC Server
-arch=('i686' 'x86_64')
-url=http://unrealircd.com;
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf'
-   'etc/conf.d/unrealircd')
-source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
-   unrealircd.service
-   arch-fixes.patch)
-md5sums=('05b0bbdbfab9ffc2304f7595951d7cec'
- '93276a1cd426e4a811c072c35fc31e94'
- '77807313c4578f2c30286b9f9e3fb21c')
-
-build() {
-  cd $srcdir/Unreal$pkgver
-
-  patch -p1 $srcdir/arch-fixes.patch
-
-  ./configure --with-showlistmodes \
-  --enable-hub --enable-prefixaq --with-listen=5 \
-  --with-dpath=/etc/unrealircd \
-  --with-spath=/usr/bin \
-  --with-nick-history=2000 --with-sendq=300 \
-  --with-bufferpool=18 --with-hostname=archlinux \
-  --with-permissions=0600 --with-fd-setsize=1024 \
-  --enable-dynamic-linking \
-  --enable-ziplinks \
-  --enable-ssl \
-  --enable-ipv6 \
-  --enable-libcurl=/usr \
-  --with-system-cares
-
-  make
-}
-
-package() {
-  cd $srcdir/Unreal$pkgver
-
-  mkdir -p $pkgdir/etc/unrealircd
-  mkdir -p $pkgdir/usr/bin
-
-  make IRCDDIR=$pkgdir/etc/unrealircd BINDIR=$pkgdir/usr/bin install
-
-  mv $srcdir/Unreal$pkgver/src/ircd $pkgdir/usr/bin/unrealircd
-  mv $srcdir/Unreal$pkgver/doc/example.conf 
$pkgdir/etc/unrealircd/unrealircd.conf
-  mkdir -p $pkgdir/usr/lib/unrealircd
-  mv $pkgdir/etc/unrealircd/modules $pkgdir/usr/lib/unrealircd/
-  ln -s /usr/lib/unrealircd/modules $pkgdir/etc/unrealircd/modules
-
-  # log
-  mkdir -p $pkgdir/var/log/unrealircd/
-  touch $pkgdir/var/log/unrealircd/ircd.log
-  ln -s /var/log/unrealircd/ircd.log $pkgdir/etc/unrealircd/ircd.log
-
-  mkdir -p $pkgdir/etc/conf.d/
-  echo 'UNREALIRCD_USER=root' $pkgdir/etc/conf.d/unrealircd
-
-  find $pkgdir/usr -type f -exec chmod ugo+r {} \;
-  find $pkgdir/usr -type d -exec chmod ugo+rx {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: unrealircd/repos/community-i686/PKGBUILD (from rev 92283, 
unrealircd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-06-03 13:56:49 UTC (rev 92284)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+
+pkgname=unrealircd
+pkgver=3.2.10
+pkgrel=5
+pkgdesc=Open Source IRC Server
+arch=('i686' 'x86_64')
+url=http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf'
+   'etc/conf.d/unrealircd')
+source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
+   unrealircd.service
+ 

[arch-commits] Commit in unrealircd/repos (12 files)

2013-05-28 Thread Sergej Pupykin
Date: Tuesday, May 28, 2013 @ 13:39:34
  Author: spupykin
Revision: 91815

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

Added:
  unrealircd/repos/community-i686/PKGBUILD
(from rev 91814, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-i686/arch-fixes.patch
(from rev 91814, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-i686/unrealircd.service
(from rev 91814, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 91814, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/arch-fixes.patch
(from rev 91814, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 91814, unrealircd/trunk/unrealircd.service)
Deleted:
  unrealircd/repos/community-i686/PKGBUILD
  unrealircd/repos/community-i686/arch-fixes.patch
  unrealircd/repos/community-i686/unrealircd.service
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/arch-fixes.patch
  unrealircd/repos/community-x86_64/unrealircd.service

-+
 /PKGBUILD   |  144 +++
 /arch-fixes.patch   |  178 ++
 /unrealircd.service |   24 
 community-i686/PKGBUILD |   71 -
 community-i686/arch-fixes.patch |   89 -
 community-i686/unrealircd.service   |   12 --
 community-x86_64/PKGBUILD   |   71 -
 community-x86_64/arch-fixes.patch   |   89 -
 community-x86_64/unrealircd.service |   12 --
 9 files changed, 346 insertions(+), 344 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-28 11:39:14 UTC (rev 91814)
+++ community-i686/PKGBUILD 2013-05-28 11:39:34 UTC (rev 91815)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Zerial ferna...@zerial.org
-
-pkgname=unrealircd
-pkgver=3.2.10
-pkgrel=2
-pkgdesc=Open Source IRC Server
-arch=('i686' 'x86_64')
-url=http://unrealircd.com;
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf'
-   'etc/conf.d/unrealircd')
-source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
-   unrealircd.service
-   arch-fixes.patch)
-md5sums=('05b0bbdbfab9ffc2304f7595951d7cec'
- '2103ce8a4a4e79f6955920bfebea0202'
- '77807313c4578f2c30286b9f9e3fb21c')
-
-build() {
-  cd $srcdir/Unreal$pkgver
-
-  patch -p1 $srcdir/arch-fixes.patch
-
-  ./configure --with-showlistmodes \
-  --enable-hub --enable-prefixaq --with-listen=5 \
-  --with-dpath=/etc/unrealircd \
-  --with-spath=/usr/bin \
-  --with-nick-history=2000 --with-sendq=300 \
-  --with-bufferpool=18 --with-hostname=archlinux \
-  --with-permissions=0600 --with-fd-setsize=1024 \
-  --enable-dynamic-linking \
-  --enable-ziplinks \
-  --enable-ssl \
-  --enable-libcurl=/usr \
-  --with-system-cares
-
-  make
-}
-
-package() {
-  cd $srcdir/Unreal$pkgver
-
-  mkdir -p $pkgdir/etc/unrealircd
-  mkdir -p $pkgdir/usr/bin
-
-  make IRCDDIR=$pkgdir/etc/unrealircd BINDIR=$pkgdir/usr/bin install
-
-  mv $srcdir/Unreal$pkgver/src/ircd $pkgdir/usr/bin/unrealircd
-  mv $srcdir/Unreal$pkgver/doc/example.conf 
$pkgdir/etc/unrealircd/unrealircd.conf
-  mkdir -p $pkgdir/usr/lib/unrealircd
-  mv $pkgdir/etc/unrealircd/modules $pkgdir/usr/lib/unrealircd/
-  ln -s /usr/lib/unrealircd/modules $pkgdir/etc/unrealircd/modules
-
-  # log
-  mkdir -p $pkgdir/var/log/unrealircd/
-  touch $pkgdir/var/log/unrealircd/ircd.log
-  ln -s /var/log/unrealircd/ircd.log $pkgdir/etc/unrealircd/ircd.log
-
-  mkdir -p $pkgdir/etc/conf.d/
-  echo 'UNREALIRCD_USER=root' $pkgdir/etc/conf.d/unrealircd
-
-  find $pkgdir/usr -type f -exec chmod ugo+r {} \;
-  find $pkgdir/usr -type d -exec chmod ugo+rx {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: unrealircd/repos/community-i686/PKGBUILD (from rev 91814, 
unrealircd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-28 11:39:34 UTC (rev 91815)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+
+pkgname=unrealircd
+pkgver=3.2.10
+pkgrel=3
+pkgdesc=Open Source IRC Server
+arch=('i686' 'x86_64')
+url=http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf'
+   'etc/conf.d/unrealircd')
+source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
+   unrealircd.service
+   arch-fixes.patch)

[arch-commits] Commit in unrealircd/repos (12 files)

2013-05-28 Thread Sergej Pupykin
Date: Tuesday, May 28, 2013 @ 19:38:11
  Author: spupykin
Revision: 91865

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

Added:
  unrealircd/repos/community-i686/PKGBUILD
(from rev 91864, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-i686/arch-fixes.patch
(from rev 91864, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-i686/unrealircd.service
(from rev 91864, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 91864, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/arch-fixes.patch
(from rev 91864, unrealircd/trunk/arch-fixes.patch)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 91864, unrealircd/trunk/unrealircd.service)
Deleted:
  unrealircd/repos/community-i686/PKGBUILD
  unrealircd/repos/community-i686/arch-fixes.patch
  unrealircd/repos/community-i686/unrealircd.service
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/arch-fixes.patch
  unrealircd/repos/community-x86_64/unrealircd.service

-+
 /PKGBUILD   |  144 +++
 /arch-fixes.patch   |  178 ++
 /unrealircd.service |   24 
 community-i686/PKGBUILD |   72 -
 community-i686/arch-fixes.patch |   89 -
 community-i686/unrealircd.service   |   12 --
 community-x86_64/PKGBUILD   |   72 -
 community-x86_64/arch-fixes.patch   |   89 -
 community-x86_64/unrealircd.service |   12 --
 9 files changed, 346 insertions(+), 346 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-28 17:37:51 UTC (rev 91864)
+++ community-i686/PKGBUILD 2013-05-28 17:38:11 UTC (rev 91865)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Zerial ferna...@zerial.org
-
-pkgname=unrealircd
-pkgver=3.2.10
-pkgrel=3
-pkgdesc=Open Source IRC Server
-arch=('i686' 'x86_64')
-url=http://unrealircd.com;
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf'
-   'etc/conf.d/unrealircd')
-source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
-   unrealircd.service
-   arch-fixes.patch)
-md5sums=('05b0bbdbfab9ffc2304f7595951d7cec'
- 'd31a55726865177b5753a4c20e9692bf'
- '77807313c4578f2c30286b9f9e3fb21c')
-
-build() {
-  cd $srcdir/Unreal$pkgver
-
-  patch -p1 $srcdir/arch-fixes.patch
-
-  ./configure --with-showlistmodes \
-  --enable-hub --enable-prefixaq --with-listen=5 \
-  --with-dpath=/etc/unrealircd \
-  --with-spath=/usr/bin \
-  --with-nick-history=2000 --with-sendq=300 \
-  --with-bufferpool=18 --with-hostname=archlinux \
-  --with-permissions=0600 --with-fd-setsize=1024 \
-  --enable-dynamic-linking \
-  --enable-ziplinks \
-  --enable-ssl \
-  --enable-ipv6 \
-  --enable-libcurl=/usr \
-  --with-system-cares
-
-  make
-}
-
-package() {
-  cd $srcdir/Unreal$pkgver
-
-  mkdir -p $pkgdir/etc/unrealircd
-  mkdir -p $pkgdir/usr/bin
-
-  make IRCDDIR=$pkgdir/etc/unrealircd BINDIR=$pkgdir/usr/bin install
-
-  mv $srcdir/Unreal$pkgver/src/ircd $pkgdir/usr/bin/unrealircd
-  mv $srcdir/Unreal$pkgver/doc/example.conf 
$pkgdir/etc/unrealircd/unrealircd.conf
-  mkdir -p $pkgdir/usr/lib/unrealircd
-  mv $pkgdir/etc/unrealircd/modules $pkgdir/usr/lib/unrealircd/
-  ln -s /usr/lib/unrealircd/modules $pkgdir/etc/unrealircd/modules
-
-  # log
-  mkdir -p $pkgdir/var/log/unrealircd/
-  touch $pkgdir/var/log/unrealircd/ircd.log
-  ln -s /var/log/unrealircd/ircd.log $pkgdir/etc/unrealircd/ircd.log
-
-  mkdir -p $pkgdir/etc/conf.d/
-  echo 'UNREALIRCD_USER=root' $pkgdir/etc/conf.d/unrealircd
-
-  find $pkgdir/usr -type f -exec chmod ugo+r {} \;
-  find $pkgdir/usr -type d -exec chmod ugo+rx {} \;
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: unrealircd/repos/community-i686/PKGBUILD (from rev 91864, 
unrealircd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-28 17:38:11 UTC (rev 91865)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Zerial ferna...@zerial.org
+
+pkgname=unrealircd
+pkgver=3.2.10
+pkgrel=4
+pkgdesc=Open Source IRC Server
+arch=('i686' 'x86_64')
+url=http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf'
+   'etc/conf.d/unrealircd')
+source=(http://www.unrealircd.com/downloads/Unreal$pkgver.tar.gz
+   unrealircd.service
+