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

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Sun Dec 25 16:32:32 UTC 2016


    Date: Sunday, December 25, 2016 @ 16:32:31
  Author: bpiotrowski
Revision: 201913

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

Added:
  profanity/repos/community-staging-i686/
  profanity/repos/community-staging-i686/PKGBUILD
    (from rev 201912, profanity/trunk/PKGBUILD)
  profanity/repos/community-staging-x86_64/
  profanity/repos/community-staging-x86_64/PKGBUILD
    (from rev 201912, profanity/trunk/PKGBUILD)

-----------------------------------+
 community-staging-i686/PKGBUILD   |   67 ++++++++++++++++++++++++++++++++++++
 community-staging-x86_64/PKGBUILD |   67 ++++++++++++++++++++++++++++++++++++
 2 files changed, 134 insertions(+)

Copied: profanity/repos/community-staging-i686/PKGBUILD (from rev 201912, profanity/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-12-25 16:32:31 UTC (rev 201913)
@@ -0,0 +1,67 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: jason ryan <jasonwryan at gmail.com>
+
+pkgbase=profanity
+pkgname=('profanity' 'profanity-gtk')
+pkgver=0.5.0
+pkgrel=4
+epoch=1
+pkgdesc='Console based XMPP client'
+url='http://www.profanity.im'
+arch=('i686' 'x86_64')
+license=('GPL3')
+makedepends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme' 'python' 'gtk2')
+checkdepends=('cmocka')
+source=(${pkgname}-${pkgver}.tar.gz::http://www.profanity.im/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('65625f0ed0b1e87c6cd4ec9dc85076a971b899b9b39d5707d32d1977a450b910ff760e339bfacd0d0906740bd299c018877b6720071d92c805fca095631e7163')
+
+prepare() {
+  cp -a ${pkgname}-${pkgver}{,-gtk}
+}
+
+build() {
+  msg "Building non-gtk variant..."
+  (cd ${pkgname}-${pkgver}
+    ./configure \
+      --prefix=/usr \
+      --disable-icons \
+      --enable-notifications \
+      --enable-python-plugins \
+      --enable-c-plugins \
+      --enable-plugins \
+      --enable-otr \
+      --enable-pgp
+    make
+  )
+  msg "Building gtk variant..."
+  (cd ${pkgname}-${pkgver}-gtk
+    ./configure \
+      --prefix=/usr \
+      --enable-icons \
+      --enable-notifications \
+      --enable-python-plugins \
+      --enable-c-plugins \
+      --enable-plugins \
+      --enable-otr \
+      --enable-pgp
+    make
+  )
+}
+
+package_profanity() {
+  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme' 'python')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+package_profanity-gtk() {
+  pkgdesc='Console based XMPP client (gtk support)'
+  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme' 'python' 'gtk2')
+  provides=('profanity')
+  conflicts=('profanity')
+  cd ${pkgbase}-${pkgver}-gtk
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: profanity/repos/community-staging-x86_64/PKGBUILD (from rev 201912, profanity/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-12-25 16:32:31 UTC (rev 201913)
@@ -0,0 +1,67 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: jason ryan <jasonwryan at gmail.com>
+
+pkgbase=profanity
+pkgname=('profanity' 'profanity-gtk')
+pkgver=0.5.0
+pkgrel=4
+epoch=1
+pkgdesc='Console based XMPP client'
+url='http://www.profanity.im'
+arch=('i686' 'x86_64')
+license=('GPL3')
+makedepends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme' 'python' 'gtk2')
+checkdepends=('cmocka')
+source=(${pkgname}-${pkgver}.tar.gz::http://www.profanity.im/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('65625f0ed0b1e87c6cd4ec9dc85076a971b899b9b39d5707d32d1977a450b910ff760e339bfacd0d0906740bd299c018877b6720071d92c805fca095631e7163')
+
+prepare() {
+  cp -a ${pkgname}-${pkgver}{,-gtk}
+}
+
+build() {
+  msg "Building non-gtk variant..."
+  (cd ${pkgname}-${pkgver}
+    ./configure \
+      --prefix=/usr \
+      --disable-icons \
+      --enable-notifications \
+      --enable-python-plugins \
+      --enable-c-plugins \
+      --enable-plugins \
+      --enable-otr \
+      --enable-pgp
+    make
+  )
+  msg "Building gtk variant..."
+  (cd ${pkgname}-${pkgver}-gtk
+    ./configure \
+      --prefix=/usr \
+      --enable-icons \
+      --enable-notifications \
+      --enable-python-plugins \
+      --enable-c-plugins \
+      --enable-plugins \
+      --enable-otr \
+      --enable-pgp
+    make
+  )
+}
+
+package_profanity() {
+  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme' 'python')
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+package_profanity-gtk() {
+  pkgdesc='Console based XMPP client (gtk support)'
+  depends=('curl' 'ncurses' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme' 'python' 'gtk2')
+  provides=('profanity')
+  conflicts=('profanity')
+  cd ${pkgbase}-${pkgver}-gtk
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list