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

Andrea Scarpino andrea at nymeria.archlinux.org
Sat Dec 21 07:54:45 UTC 2013


    Date: Saturday, December 21, 2013 @ 08:54:45
  Author: andrea
Revision: 202281

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  attica/repos/kde-unstable-i686/
  attica/repos/kde-unstable-i686/PKGBUILD
    (from rev 202280, attica/trunk/PKGBUILD)
  attica/repos/kde-unstable-x86_64/PKGBUILD
    (from rev 202280, attica/trunk/PKGBUILD)
Deleted:
  attica/repos/kde-unstable-x86_64/PKGBUILD

------------------------------+
 /PKGBUILD                    |   63 +++++++++++++++++++++++++++++++++++++++++
 kde-unstable-i686/PKGBUILD   |   63 +++++++++++++++++++++++++++++++++++++++++
 kde-unstable-x86_64/PKGBUILD |   63 -----------------------------------------
 3 files changed, 126 insertions(+), 63 deletions(-)

Copied: attica/repos/kde-unstable-i686/PKGBUILD (from rev 202280, attica/trunk/PKGBUILD)
===================================================================
--- kde-unstable-i686/PKGBUILD	                        (rev 0)
+++ kde-unstable-i686/PKGBUILD	2013-12-21 07:54:45 UTC (rev 202281)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+
+pkgbase=attica
+#pkgname=('attica-qt4' 'attica-qt5')
+pkgname=('attica-qt5')
+pkgver=v0.4.2.r14.ga84850f
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+license=('LGPL')
+#makedepends=('extra-cmake-modules' 'qt4' 'qt5-base' 'git')
+makedepends=('extra-cmake-modules' 'qt5-base' 'git')
+source=("git://anongit.kde.org/${pkgbase}.git")
+#source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('SKIP')
+
+pkgver() {
+  cd ${pkgbase}
+  git describe --long --tags | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
+}
+
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
+build() {
+#  cd build
+#  cmake ../${pkgbase} \
+#    -DCMAKE_BUILD_TYPE=Release \
+#    -DCMAKE_INSTALL_PREFIX=/usr \
+#    -DATTICA_ENABLE_TESTS=OFF \
+#    -DQT4_BUILD=ON
+#  make
+
+  cd build-qt5
+  cmake ../${pkgbase} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/opt/kf5 \
+    -DATTICA_ENABLE_TESTS=OFF \
+    -DQT4_BUILD=OFF
+  make
+}
+
+package_attica-qt4() {
+  pkgdesc='A Qt4 library that implements the Open Collaboration Services API'
+  depends=('qt4')
+  provides=('attica')
+  conflicts=('attica')
+  replaces=('attica')
+
+  cd build
+  make DESTDIR="${pkgdir}" install
+}
+
+package_attica-qt5() {
+  pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
+  depends=('qt5-base')
+
+  cd build-qt5
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kde-unstable-x86_64/PKGBUILD
===================================================================
--- kde-unstable-x86_64/PKGBUILD	2013-12-21 07:52:57 UTC (rev 202280)
+++ kde-unstable-x86_64/PKGBUILD	2013-12-21 07:54:45 UTC (rev 202281)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-
-pkgbase=attica
-#pkgname=('attica-qt4' 'attica-qt5')
-pkgname=('attica-qt5')
-pkgver=v0.4.2.r14.ga84850f
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kdesupport/attica'
-license=('LGPL')
-#makedepends=('extra-cmake-modules' 'qt4' 'qt5-base' 'git')
-makedepends=('extra-cmake-modules' 'qt5-base' 'git')
-source=("git://anongit.kde.org/${pkgbase}.git")
-#source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('SKIP')
-
-pkgver() {
-  cd ${pkgbase}
-  git describe --long --tags | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
-}
-
-prepare() {
-  mkdir build
-  mkdir build-qt5
-}
-
-build() {
-#  cd build
-#  cmake ../${pkgbase} \
-#    -DCMAKE_BUILD_TYPE=Release \
-#    -DCMAKE_INSTALL_PREFIX=/usr \
-#    -DATTICA_ENABLE_TESTS=OFF \
-#    -DQT4_BUILD=ON
-#  make
-
-  cd build-qt5
-  cmake ../${pkgbase} \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/opt/kf5 \
-    -DATTICA_ENABLE_TESTS=OFF \
-    -DQT4_BUILD=OFF
-  make
-}
-
-package_attica-qt4() {
-  pkgdesc='A Qt4 library that implements the Open Collaboration Services API'
-  depends=('qt4')
-  provides=('attica')
-  conflicts=('attica')
-  replaces=('attica')
-
-  cd build
-  make DESTDIR="${pkgdir}" install
-}
-
-package_attica-qt5() {
-  pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
-  depends=('qt5-base')
-
-  cd build-qt5
-  make DESTDIR="${pkgdir}" install
-}

Copied: attica/repos/kde-unstable-x86_64/PKGBUILD (from rev 202280, attica/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD	                        (rev 0)
+++ kde-unstable-x86_64/PKGBUILD	2013-12-21 07:54:45 UTC (rev 202281)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+
+pkgbase=attica
+#pkgname=('attica-qt4' 'attica-qt5')
+pkgname=('attica-qt5')
+pkgver=v0.4.2.r14.ga84850f
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+license=('LGPL')
+#makedepends=('extra-cmake-modules' 'qt4' 'qt5-base' 'git')
+makedepends=('extra-cmake-modules' 'qt5-base' 'git')
+source=("git://anongit.kde.org/${pkgbase}.git")
+#source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('SKIP')
+
+pkgver() {
+  cd ${pkgbase}
+  git describe --long --tags | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
+}
+
+prepare() {
+  mkdir build
+  mkdir build-qt5
+}
+
+build() {
+#  cd build
+#  cmake ../${pkgbase} \
+#    -DCMAKE_BUILD_TYPE=Release \
+#    -DCMAKE_INSTALL_PREFIX=/usr \
+#    -DATTICA_ENABLE_TESTS=OFF \
+#    -DQT4_BUILD=ON
+#  make
+
+  cd build-qt5
+  cmake ../${pkgbase} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/opt/kf5 \
+    -DATTICA_ENABLE_TESTS=OFF \
+    -DQT4_BUILD=OFF
+  make
+}
+
+package_attica-qt4() {
+  pkgdesc='A Qt4 library that implements the Open Collaboration Services API'
+  depends=('qt4')
+  provides=('attica')
+  conflicts=('attica')
+  replaces=('attica')
+
+  cd build
+  make DESTDIR="${pkgdir}" install
+}
+
+package_attica-qt5() {
+  pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
+  depends=('qt5-base')
+
+  cd build-qt5
+  make DESTDIR="${pkgdir}" install
+}




More information about the arch-commits mailing list