[arch-commits] Commit in telepathy-qt/repos (4 files)
Antonio Rojas
arojas at archlinux.org
Sat May 16 11:40:41 UTC 2015
Date: Saturday, May 16, 2015 @ 13:40:41
Author: arojas
Revision: 239445
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
telepathy-qt/repos/extra-i686/PKGBUILD
(from rev 239444, telepathy-qt/trunk/PKGBUILD)
telepathy-qt/repos/extra-x86_64/PKGBUILD
(from rev 239444, telepathy-qt/trunk/PKGBUILD)
Deleted:
telepathy-qt/repos/extra-i686/PKGBUILD
telepathy-qt/repos/extra-x86_64/PKGBUILD
-----------------------+
/PKGBUILD | 130 ++++++++++++++++++++++++++++++++++++++++++++++++
extra-i686/PKGBUILD | 62 ----------------------
extra-x86_64/PKGBUILD | 62 ----------------------
3 files changed, 130 insertions(+), 124 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2015-05-16 11:40:17 UTC (rev 239444)
+++ extra-i686/PKGBUILD 2015-05-16 11:40:41 UTC (rev 239445)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgbase=telepathy-qt
-pkgname=('telepathy-qt4' 'telepathy-qt5')
-pkgver=0.9.5
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://telepathy.freedesktop.org/wiki/"
-license=('LGPL')
-makedepends=('qt4' 'telepathy-farstream' 'libxslt' 'python2' 'cmake' 'doxygen' 'qt5-base')
-options=('staticlibs')
-source=("http://telepathy.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc})
-md5sums=('22c0daa7e4f7e48e779f703c9b27b816'
- 'SKIP')
-
-prepare() {
- mkdir build{,-qt4}
-}
-
-build() {
- cd build
- cmake ../${pkgbase}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DPYTHON_EXECUTABLE=/usr/bin/python2 \
- -DENABLE_EXAMPLES=OFF \
- -DENABLE_TESTS=OFF
- make
- cd ..
-
- cd build-qt4
- cmake ../${pkgbase}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DPYTHON_EXECUTABLE=/usr/bin/python2 \
- -DDESIRED_QT_VERSION=4 \
- -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
- -DENABLE_EXAMPLES=OFF \
- -DENABLE_TESTS=OFF
- make
-}
-
-package_telepathy-qt4() {
- pkgdesc="A library for Qt4-based Telepathy clients"
- depends=('qt4' 'telepathy-farstream')
- conflicts=('telepathy-qt')
- replaces=('telepathy-qt')
- provides=('telepathy-qt')
-
- cd build-qt4
- make DESTDIR="$pkgdir" install
-}
-
-package_telepathy-qt5() {
- pkgdesc="A library for Qt5-based Telepathy clients"
- depends=('qt5-base' 'telepathy-farstream')
-
- cd build
- make DESTDIR="$pkgdir" install
-}
Copied: telepathy-qt/repos/extra-i686/PKGBUILD (from rev 239444, telepathy-qt/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-05-16 11:40:41 UTC (rev 239445)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgbase=telepathy-qt
+pkgname=(telepathy-qt4 telepathy-qt5)
+pkgver=0.9.6
+pkgrel=1
+arch=(i686 x86_64)
+url="http://telepathy.freedesktop.org/wiki/"
+license=(LGPL)
+makedepends=(qt4 telepathy-farstream libxslt python2 cmake doxygen qt5-base)
+options=(staticlibs)
+source=("http://telepathy.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc})
+md5sums=('1f18935f30dcf90282a2d6d65fcde752'
+ 'SKIP')
+validpgpkeys=('AA33B0D27868E36C151780F0FE0B6D736B1195ED') # Alexandr Akulich
+
+prepare() {
+ mkdir build{,-qt4}
+}
+
+build() {
+ cd build
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+ -DDESIRED_QT_VERSION=5 \
+ -DENABLE_EXAMPLES=OFF \
+ -DENABLE_TESTS=OFF
+ make
+ cd ..
+
+ cd build-qt4
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+ -DDESIRED_QT_VERSION=4 \
+ -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
+ -DENABLE_EXAMPLES=OFF \
+ -DENABLE_TESTS=OFF
+ make
+}
+
+package_telepathy-qt4() {
+ pkgdesc="A library for Qt4-based Telepathy clients"
+ depends=(qt4 telepathy-farstream)
+ conflicts=(telepathy-qt)
+ replaces=(telepathy-qt)
+ provides=(telepathy-qt)
+
+ cd build-qt4
+ make DESTDIR="$pkgdir" install
+}
+
+package_telepathy-qt5() {
+ pkgdesc="A library for Qt5-based Telepathy clients"
+ depends=(qt5-base telepathy-farstream)
+
+ cd build
+ make DESTDIR="$pkgdir" install
+}
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2015-05-16 11:40:17 UTC (rev 239444)
+++ extra-x86_64/PKGBUILD 2015-05-16 11:40:41 UTC (rev 239445)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgbase=telepathy-qt
-pkgname=('telepathy-qt4' 'telepathy-qt5')
-pkgver=0.9.5
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://telepathy.freedesktop.org/wiki/"
-license=('LGPL')
-makedepends=('qt4' 'telepathy-farstream' 'libxslt' 'python2' 'cmake' 'doxygen' 'qt5-base')
-options=('staticlibs')
-source=("http://telepathy.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc})
-md5sums=('22c0daa7e4f7e48e779f703c9b27b816'
- 'SKIP')
-
-prepare() {
- mkdir build{,-qt4}
-}
-
-build() {
- cd build
- cmake ../${pkgbase}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DPYTHON_EXECUTABLE=/usr/bin/python2 \
- -DENABLE_EXAMPLES=OFF \
- -DENABLE_TESTS=OFF
- make
- cd ..
-
- cd build-qt4
- cmake ../${pkgbase}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DPYTHON_EXECUTABLE=/usr/bin/python2 \
- -DDESIRED_QT_VERSION=4 \
- -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
- -DENABLE_EXAMPLES=OFF \
- -DENABLE_TESTS=OFF
- make
-}
-
-package_telepathy-qt4() {
- pkgdesc="A library for Qt4-based Telepathy clients"
- depends=('qt4' 'telepathy-farstream')
- conflicts=('telepathy-qt')
- replaces=('telepathy-qt')
- provides=('telepathy-qt')
-
- cd build-qt4
- make DESTDIR="$pkgdir" install
-}
-
-package_telepathy-qt5() {
- pkgdesc="A library for Qt5-based Telepathy clients"
- depends=('qt5-base' 'telepathy-farstream')
-
- cd build
- make DESTDIR="$pkgdir" install
-}
Copied: telepathy-qt/repos/extra-x86_64/PKGBUILD (from rev 239444, telepathy-qt/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2015-05-16 11:40:41 UTC (rev 239445)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgbase=telepathy-qt
+pkgname=(telepathy-qt4 telepathy-qt5)
+pkgver=0.9.6
+pkgrel=1
+arch=(i686 x86_64)
+url="http://telepathy.freedesktop.org/wiki/"
+license=(LGPL)
+makedepends=(qt4 telepathy-farstream libxslt python2 cmake doxygen qt5-base)
+options=(staticlibs)
+source=("http://telepathy.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz"{,.asc})
+md5sums=('1f18935f30dcf90282a2d6d65fcde752'
+ 'SKIP')
+validpgpkeys=('AA33B0D27868E36C151780F0FE0B6D736B1195ED') # Alexandr Akulich
+
+prepare() {
+ mkdir build{,-qt4}
+}
+
+build() {
+ cd build
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+ -DDESIRED_QT_VERSION=5 \
+ -DENABLE_EXAMPLES=OFF \
+ -DENABLE_TESTS=OFF
+ make
+ cd ..
+
+ cd build-qt4
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+ -DDESIRED_QT_VERSION=4 \
+ -DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 \
+ -DENABLE_EXAMPLES=OFF \
+ -DENABLE_TESTS=OFF
+ make
+}
+
+package_telepathy-qt4() {
+ pkgdesc="A library for Qt4-based Telepathy clients"
+ depends=(qt4 telepathy-farstream)
+ conflicts=(telepathy-qt)
+ replaces=(telepathy-qt)
+ provides=(telepathy-qt)
+
+ cd build-qt4
+ make DESTDIR="$pkgdir" install
+}
+
+package_telepathy-qt5() {
+ pkgdesc="A library for Qt5-based Telepathy clients"
+ depends=(qt5-base telepathy-farstream)
+
+ cd build
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list