[arch-commits] Commit in dtkcore/repos/community-x86_64 (4 files)
Felix Yan
felixonmars at archlinux.org
Thu Sep 6 15:15:54 UTC 2018
Date: Thursday, September 6, 2018 @ 15:15:54
Author: felixonmars
Revision: 377647
archrelease: copy trunk to community-x86_64
Added:
dtkcore/repos/community-x86_64/PKGBUILD
(from rev 377646, dtkcore/trunk/PKGBUILD)
dtkcore/repos/community-x86_64/fix-symbol.patch
(from rev 377646, dtkcore/trunk/fix-symbol.patch)
Deleted:
dtkcore/repos/community-x86_64/PKGBUILD
dtkcore/repos/community-x86_64/fix-symbol.patch
------------------+
PKGBUILD | 63 ++++++++++++++++++++++++++---------------------------
fix-symbol.patch | 60 +++++++++++++++++++++++++-------------------------
2 files changed, 62 insertions(+), 61 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-09-06 15:15:33 UTC (rev 377646)
+++ PKGBUILD 2018-09-06 15:15:54 UTC (rev 377647)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Josip Ponjavic <josipponjavic at gmail dot com>
-# Contributor: Xu Fasheng <fasheng.xu[AT]gmail.com>
-
-pkgname=dtkcore
-pkgver=2.0.9
-pkgrel=1
-epoch=1
-pkgdesc='DTK core modules'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dtkcore"
-license=('GPL3')
-depends=('qt5-base' 'gsettings-qt')
-makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkcore/archive/$pkgver.tar.gz"
- fix-symbol.patch)
-sha512sums=('cb0dddeaabdce4004e4049ae2143458c031708f091d98046e6517d92edd003f7b6d4e8a96252be060d49246659b405c183129193a746e9001612cae0b41bc5a9'
- '0b3e8e673136b755029e926c7acabb033fea7d89c4b80d85d1c3419faffdcfb6f8ed75214ed9a4226ae2ee7925c797e73e5acbb6f679d6d98879c15965f0b773')
-
-build() {
- cd dtkcore-$pkgver
- patch -p1 -i ../fix-symbol.patch
- qmake-qt5 PREFIX=/usr
- make
-}
-
-package() {
- cd dtkcore-$pkgver
- make INSTALL_ROOT="$pkgdir" install
-}
Copied: dtkcore/repos/community-x86_64/PKGBUILD (from rev 377646, dtkcore/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-09-06 15:15:54 UTC (rev 377647)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Josip Ponjavic <josipponjavic at gmail dot com>
+# Contributor: Xu Fasheng <fasheng.xu[AT]gmail.com>
+
+pkgname=dtkcore
+pkgver=2.0.9.4
+pkgrel=1
+epoch=1
+pkgdesc='DTK core modules'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dtkcore"
+license=('GPL3')
+depends=('qt5-base' 'gsettings-qt')
+makedepends=('qt5-tools' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkcore/archive/$pkgver.tar.gz"
+ fix-symbol.patch)
+sha512sums=('724b1345fccacc0af8f1284d7c3852c82a06ffde0125de0faccf133265c7e2d3fb17d88abae81d805eb95c81a12166e6ad91bc91202b932ad824f9f086b4c4a1'
+ '0b3e8e673136b755029e926c7acabb033fea7d89c4b80d85d1c3419faffdcfb6f8ed75214ed9a4226ae2ee7925c797e73e5acbb6f679d6d98879c15965f0b773')
+
+build() {
+ cd dtkcore-$pkgver
+ patch -p1 -i ../fix-symbol.patch
+ echo $VERSION
+ qmake-qt5 PREFIX=/usr
+ make
+}
+
+package() {
+ cd dtkcore-$pkgver
+ make INSTALL_ROOT="$pkgdir" install
+}
Deleted: fix-symbol.patch
===================================================================
--- fix-symbol.patch 2018-09-06 15:15:33 UTC (rev 377646)
+++ fix-symbol.patch 2018-09-06 15:15:54 UTC (rev 377647)
@@ -1,30 +0,0 @@
-diff --git a/src/filesystem/dpathbuf.h b/src/filesystem/dpathbuf.h
-index 3aa7609..85df90d 100644
---- a/src/filesystem/dpathbuf.h
-+++ b/src/filesystem/dpathbuf.h
-@@ -26,7 +26,10 @@ DCORE_BEGIN_NAMESPACE
- class LIBDTKCORESHARED_EXPORT DPathBuf
- {
- public:
-- DPathBuf(const QString &path);
-+ DPathBuf(const QString &path)
-+ {
-+ m_path = QDir(path).absolutePath();
-+ }
-
- DPathBuf operator/(const QString &p) const
- {
-diff --git a/src/filesystem/filesystem.pri b/src/filesystem/filesystem.pri
-index c8d81a0..e561867 100644
---- a/src/filesystem/filesystem.pri
-+++ b/src/filesystem/filesystem.pri
-@@ -14,8 +14,7 @@ SOURCES += \
- $$PWD/dbasefilewatcher.cpp \
- $$PWD/dfilewatcher.cpp \
- $$PWD/dfilewatchermanager.cpp \
-- $$PWD/dstandardpaths.cpp \
-- $$PWD/dpathbuf.cpp
-+ $$PWD/dstandardpaths.cpp
-
- linux {
- SOURCES += \
Copied: dtkcore/repos/community-x86_64/fix-symbol.patch (from rev 377646, dtkcore/trunk/fix-symbol.patch)
===================================================================
--- fix-symbol.patch (rev 0)
+++ fix-symbol.patch 2018-09-06 15:15:54 UTC (rev 377647)
@@ -0,0 +1,30 @@
+diff --git a/src/filesystem/dpathbuf.h b/src/filesystem/dpathbuf.h
+index 3aa7609..85df90d 100644
+--- a/src/filesystem/dpathbuf.h
++++ b/src/filesystem/dpathbuf.h
+@@ -26,7 +26,10 @@ DCORE_BEGIN_NAMESPACE
+ class LIBDTKCORESHARED_EXPORT DPathBuf
+ {
+ public:
+- DPathBuf(const QString &path);
++ DPathBuf(const QString &path)
++ {
++ m_path = QDir(path).absolutePath();
++ }
+
+ DPathBuf operator/(const QString &p) const
+ {
+diff --git a/src/filesystem/filesystem.pri b/src/filesystem/filesystem.pri
+index c8d81a0..e561867 100644
+--- a/src/filesystem/filesystem.pri
++++ b/src/filesystem/filesystem.pri
+@@ -14,8 +14,7 @@ SOURCES += \
+ $$PWD/dbasefilewatcher.cpp \
+ $$PWD/dfilewatcher.cpp \
+ $$PWD/dfilewatchermanager.cpp \
+- $$PWD/dstandardpaths.cpp \
+- $$PWD/dpathbuf.cpp
++ $$PWD/dstandardpaths.cpp
+
+ linux {
+ SOURCES += \
More information about the arch-commits
mailing list