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

Levente Polyak anthraxx at archlinux.org
Mon Nov 14 17:48:17 UTC 2016


    Date: Monday, November 14, 2016 @ 17:48:17
  Author: anthraxx
Revision: 195843

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

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

---------------------------+
 /PKGBUILD                 |  134 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   29 ---------
 community-x86_64/PKGBUILD |   29 ---------
 3 files changed, 134 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-11-14 17:48:08 UTC (rev 195842)
+++ community-i686/PKGBUILD	2016-11-14 17:48:17 UTC (rev 195843)
@@ -1,29 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-# Contributor: jason ryan <jasonwryan at gmail.com>
-
-pkgname=profanity
-pkgver=0.5.0
-pkgrel=2
-epoch=1
-pkgdesc='Console based XMPP client'
-url='http://www.profanity.im'
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('curl' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme')
-checkdepends=('cmocka')
-source=(${pkgname}-${pkgver}.tar.gz::http://www.profanity.im/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('65625f0ed0b1e87c6cd4ec9dc85076a971b899b9b39d5707d32d1977a450b910ff760e339bfacd0d0906740bd299c018877b6720071d92c805fca095631e7163')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: profanity/repos/community-i686/PKGBUILD (from rev 195842, profanity/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-11-14 17:48:17 UTC (rev 195843)
@@ -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=3
+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:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-11-14 17:48:08 UTC (rev 195842)
+++ community-x86_64/PKGBUILD	2016-11-14 17:48:17 UTC (rev 195843)
@@ -1,29 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-# Contributor: jason ryan <jasonwryan at gmail.com>
-
-pkgname=profanity
-pkgver=0.5.0
-pkgrel=2
-epoch=1
-pkgdesc='Console based XMPP client'
-url='http://www.profanity.im'
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('curl' 'expat' 'glib2' 'libotr' 'libmesode' 'libnotify' 'gpgme')
-checkdepends=('cmocka')
-source=(${pkgname}-${pkgver}.tar.gz::http://www.profanity.im/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('65625f0ed0b1e87c6cd4ec9dc85076a971b899b9b39d5707d32d1977a450b910ff760e339bfacd0d0906740bd299c018877b6720071d92c805fca095631e7163')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: profanity/repos/community-x86_64/PKGBUILD (from rev 195842, profanity/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-11-14 17:48:17 UTC (rev 195843)
@@ -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=3
+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