[arch-commits] Commit in telepathy-kde-common-internals/repos/extra-x86_64 (3 files)

Antonio Rojas arojas at archlinux.org
Thu Dec 12 13:22:28 UTC 2019


    Date: Thursday, December 12, 2019 @ 13:22:24
  Author: arojas
Revision: 370916

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD
    (from rev 370915, telepathy-kde-common-internals/trunk/PKGBUILD)
Deleted:
  telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD
  telepathy-kde-common-internals/repos/extra-x86_64/missing-qtxml-include.patch

-----------------------------+
 PKGBUILD                    |   79 +++++++++++++++++++-----------------------
 missing-qtxml-include.patch |   41 ---------------------
 2 files changed, 37 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-12-12 13:22:14 UTC (rev 370915)
+++ PKGBUILD	2019-12-12 13:22:24 UTC (rev 370916)
@@ -1,42 +0,0 @@
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Laurent Carlier <lordheavym at gmail.com>
-# Contributor: Antonio Rojas <arojas at archlinux.org>
-
-pkgname=telepathy-kde-common-internals
-_pkgname=ktp-common-internals
-pkgver=19.08.3
-pkgrel=2
-pkgdesc='Common components for KDE-Telepathy'
-arch=(x86_64)
-url='https://community.kde.org/Real-Time_Communication_and_Collaboration'
-license=(GPL)
-groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
-depends=(knotifyconfig ktexteditor kpeople telepathy-logger-qt kaccounts-integration libotr hicolor-icon-theme telepathy-accounts-signon)
-makedepends=(extra-cmake-modules kdoctools doxygen)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$_pkgname-$pkgver.tar.xz"{,.sig}
-         missing-qtxml-include.patch)
-sha256sums=('7ec6466ebaa0f4acb7e38707b013989ef0a7d50bad5520d1a53fcf17b5ef5670'
-            'SKIP'
-            'fa663928e61d83de9f92d45fea384d0be2142317d531206e9998b394eaa7c5f8')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid at kde.org>
-              F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck at kde.org>
-
-prepare() {
-  mkdir -p build
-
-  cd $_pkgname-$pkgver
-  patch -p1 -i ../missing-qtxml-include.patch
-}
-
-build() {
-  cd build
-  cmake ../$_pkgname-$pkgver \
-    -DCMAKE_INSTALL_LIBEXECDIR=lib \
-    -DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: telepathy-kde-common-internals/repos/extra-x86_64/PKGBUILD (from rev 370915, telepathy-kde-common-internals/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-12-12 13:22:24 UTC (rev 370916)
@@ -0,0 +1,37 @@
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=telepathy-kde-common-internals
+_pkgname=ktp-common-internals
+pkgver=19.12.0
+pkgrel=1
+pkgdesc='Common components for KDE-Telepathy'
+arch=(x86_64)
+url='https://community.kde.org/Real-Time_Communication_and_Collaboration'
+license=(GPL)
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
+depends=(knotifyconfig ktexteditor kpeople telepathy-logger-qt kaccounts-integration libotr hicolor-icon-theme telepathy-accounts-signon)
+makedepends=(extra-cmake-modules kdoctools doxygen)
+source=("https://download.kde.org/stable/release-service/$pkgver/src/$_pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('26b49336bca848f82254077f025f4e11f6742bcbe6d97a4503bcd5971631d245'
+            'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid at kde.org>
+              F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck at kde.org>
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$_pkgname-$pkgver \
+    -DCMAKE_INSTALL_LIBEXECDIR=lib \
+    -DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: missing-qtxml-include.patch
===================================================================
--- missing-qtxml-include.patch	2019-12-12 13:22:14 UTC (rev 370915)
+++ missing-qtxml-include.patch	2019-12-12 13:22:24 UTC (rev 370916)
@@ -1,41 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index fec462e..ae98604 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -20,8 +20,10 @@ set (KTP_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_M
- set (KTP_MESSAGE_FILTER_FRAMEWORK_VERSION "5")
- 
- find_package (Qt5 REQUIRED CONFIG COMPONENTS
-+              DBus
-               Qml
--              Test)
-+              Test
-+              Xml)
- 
- find_package (KF5 5.11 REQUIRED COMPONENTS
-               CoreAddons
-diff --git a/KTp/CMakeLists.txt b/KTp/CMakeLists.txt
-index 85d578b..ffbce10 100644
---- a/KTp/CMakeLists.txt
-+++ b/KTp/CMakeLists.txt
-@@ -91,6 +91,8 @@ set_target_properties(KTpCommonInternals PROPERTIES
- 
- target_link_libraries (KTpCommonInternals
-                 PUBLIC
-+                    Qt5::DBus
-+                    Qt5::Xml
-                     KF5::Wallet #included from wallet-interface.h
-                     ${TELEPATHY_QT5_LIBRARIES}
-                 PRIVATE
-diff --git a/KTp/OTR/CMakeLists.txt b/KTp/OTR/CMakeLists.txt
-index 12e28de..0743e25 100644
---- a/KTp/OTR/CMakeLists.txt
-+++ b/KTp/OTR/CMakeLists.txt
-@@ -28,6 +28,7 @@ generate_export_header(KTpOTR)
- 
- target_link_libraries (KTpOTR
-                         PUBLIC
-+                            Qt5::DBus
-                             ${TELEPATHY_QT5_LIBRARIES}
-                         PRIVATE
-                             KF5::I18n



More information about the arch-commits mailing list