diff options
Diffstat (limited to 'user/kpeople')
-rw-r--r-- | user/kpeople/APKBUILD | 9 | ||||
-rw-r--r-- | user/kpeople/dont-crash-test.patch | 12 |
2 files changed, 3 insertions, 18 deletions
diff --git a/user/kpeople/APKBUILD b/user/kpeople/APKBUILD index 6a2fbf1b2..186200857 100644 --- a/user/kpeople/APKBUILD +++ b/user/kpeople/APKBUILD @@ -1,7 +1,7 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=kpeople -pkgver=5.74.0 +pkgver=5.94.0 pkgrel=0 pkgdesc="Provides access to all contacts and groups them by physical person" url="https://api.kde.org/frameworks/kpeople/html/index.html" @@ -14,9 +14,7 @@ depends_dev="qt5-qtbase-dev qt5-qtdeclarative-dev kcoreaddons-dev ki18n-dev makedepends="$depends_dev cmake extra-cmake-modules python3 doxygen graphviz qt5-qttools-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" -source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kpeople-$pkgver.tar.xz - dont-crash-test.patch - " +source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kpeople-$pkgver.tar.xz" build() { if [ "$CBUILD" != "$CHOST" ]; then @@ -42,5 +40,4 @@ package() { make DESTDIR="$pkgdir" install } -sha512sums="c85ed5e3010d25153957159f6bda46882dbe806b9029aeeb5326ecde6b8e4f3a43bd37a57104757563f1ee7014fb216385c962a25bc0438cf4633bb4b41016cc kpeople-5.74.0.tar.xz -77df2aefcdfb8e5b9c2fef7a6bfd79066819b0c6958b9e2f8fe94860155aaae9c284a110a15a189cd5b423dc7aa017b952196370f60a4fb382ed7eb77f15abd9 dont-crash-test.patch" +sha512sums="257765a7591759118a5b76e66c67e7eb5bd2b2eaef9dce1eb7694824081ea830a87cce90465d1920961dac969fc33a8763afe1ea6080ee9f4b907fb3000a8be3 kpeople-5.94.0.tar.xz" diff --git a/user/kpeople/dont-crash-test.patch b/user/kpeople/dont-crash-test.patch deleted file mode 100644 index e133618be..000000000 --- a/user/kpeople/dont-crash-test.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/autotests/personsmodeltest.cpp b/autotests/personsmodeltest.cpp -index 3e5b9a5..ee2123b 100644 ---- a/autotests/personsmodeltest.cpp -+++ b/autotests/personsmodeltest.cpp -@@ -119,6 +119,7 @@ void PersonsModelTest::gettersTests() - { - // Find the index for "kpeople://1" using the QAIModel method - QModelIndexList indexList = m_model->match(m_model->index(0,0,QModelIndex()), KPeople::PersonsModel::PersonUriRole, QVariant(QStringLiteral("kpeople://1")), 1); -+ QCOMPARE(indexList.isEmpty(), false); - QModelIndex personIndex = indexList.first(); - - // Now get the index using our method |