[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2020-04-06 Thread Antonio Rojas via arch-commits
Date: Monday, April 6, 2020 @ 21:20:54
  Author: arojas
Revision: 379706

Qt 5.15 beta3 rebuild

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |   11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-06 21:15:04 UTC (rev 379705)
+++ PKGBUILD2020-04-06 21:20:54 UTC (rev 379706)
@@ -5,18 +5,23 @@
 pkgbase=kate
 pkgname=(kwrite kate)
 pkgver=20.03.90
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 license=(GPL LGPL FDL)
 makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor threadweaver kactivities kuserfeedback)
-source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz"{,.sig}
+ 
kate-revert-qt5.15-port.patch::"https://cgit.kde.org/kate.git/patch/?id=eb144cb9";)
 sha256sums=('408f6b7b933fa7d9f634087900532d9c7fd91a3a87860e309494c961078ec7ed'
-'SKIP')
+'SKIP'
+'79581243cb45d514e7d50eb951471a42c1a3548c550be0b782e331aae94f3974')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../kate-revert-qt5.15-port.patch
 }
 
 build() {


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2019-11-18 Thread Antonio Rojas via arch-commits
Date: Monday, November 18, 2019 @ 15:21:40
  Author: arojas
Revision: 369236

Fix conflicts

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-18 15:06:04 UTC (rev 369235)
+++ PKGBUILD2019-11-18 15:21:40 UTC (rev 369236)
@@ -5,7 +5,7 @@
 pkgbase=kate
 pkgname=(kwrite kate)
 pkgver=19.11.80
-pkgrel=2
+pkgrel=3
 arch=(x86_64)
 license=(GPL LGPL FDL)
 makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor threadweaver kactivities)
@@ -44,7 +44,7 @@
   rm -r "$pkgdir"/usr/lib/qt/plugins/ktexteditor \
 "$pkgdir"/usr/share/doc/HTML/*/{kate,katepart} \
 "$pkgdir"/usr/share/katexmltools \
-
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{ktexteditorpreviewplugin,lspclient}.mo
 \
+
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{ktexteditorpreviewplugin,lspclient,tabswitcherplugin}.mo
 \
 "$pkgdir"/usr/share/plasma/plasmoids
 }
 


[arch-commits] Commit in kate/kde-unstable (PKGBUILD kate-fix-po-build.patch)

2019-11-18 Thread Antonio Rojas via arch-commits
Date: Monday, November 18, 2019 @ 15:01:39
  Author: arojas
Revision: 369233

Fix doc installation, add optdepends for LSP languages support

Modified:
  kate/kde-unstable/PKGBUILD
  kate/kde-unstable/kate-fix-po-build.patch

-+
 PKGBUILD|   11 +++
 kate-fix-po-build.patch |2 +-
 2 files changed, 8 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-18 14:47:08 UTC (rev 369232)
+++ PKGBUILD2019-11-18 15:01:39 UTC (rev 369233)
@@ -5,7 +5,7 @@
 pkgbase=kate
 pkgname=(kwrite kate)
 pkgver=19.11.80
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 license=(GPL LGPL FDL)
 makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor threadweaver kactivities)
@@ -13,7 +13,7 @@
  kate-fix-po-build.patch)
 sha256sums=('9fda7e964bb44a8d27a7f31f174439af88b93db82418219fc5a2c84e9db399f2'
 'SKIP'
-'0f7812029a773251b408e369f2915ae72d4c2a72aaf73b8d0da5a5af8c65b0f1')
+'64fe3eb0b8a2fa1bb6d067448c30056517338b41d9005324ae564a7c0ad7b30f')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
@@ -53,8 +53,11 @@
   groups=(kde-applications kdebase)
   url="https://www.kde.org/applications/utilities/kate/";
   depends=(knewstuff ktexteditor threadweaver kactivities kitemmodels 
hicolor-icon-theme)
-  optdepends=('konsole: open a terminal in Kate')
-
+  optdepends=('konsole: open a terminal in Kate'
+  'clang: C and C++ LSP support'
+  'python-language-server: Python LSP support'
+  'texlab: LaTeX LSP support'
+  'rust: Rust LSP support')
   cd build
   make DESTDIR="$pkgdir" install
 

Modified: kate-fix-po-build.patch
===
--- kate-fix-po-build.patch 2019-11-18 14:47:08 UTC (rev 369232)
+++ kate-fix-po-build.patch 2019-11-18 15:01:39 UTC (rev 369233)
@@ -6,7 +6,7 @@
  file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
  kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
  endif()
-+find_package(KF5I18n)
++find_package(KF5 COMPONENTS I18n DocTools)
  ki18n_install(po)
  if (KF5DocTools_FOUND)
   kdoctools_install(po)


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2017-11-17 Thread Antonio Rojas
Date: Friday, November 17, 2017 @ 19:19:32
  Author: arojas
Revision: 310301

Fix conflicts

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-17 19:03:13 UTC (rev 310300)
+++ PKGBUILD2017-11-17 19:19:32 UTC (rev 310301)
@@ -6,7 +6,7 @@
 pkgbase=kate
 pkgname=(kwrite kate)
 pkgver=17.11.80
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 license=(GPL LGPL FDL)
 makedepends=(extra-cmake-modules kdoctools python plasma-framework knewstuff 
ktexteditor threadweaver kitemmodels kactivities)
@@ -43,7 +43,7 @@
   rm -r "$pkgdir"/usr/lib/qt/plugins/ktexteditor \
 "$pkgdir"/usr/share/doc/HTML/*/{kate,katepart} \
 "$pkgdir"/usr/share/katexmltools \
-
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{kterustcompletion,tabswitcherplugin}.mo
 \
+
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{kterustcompletion,tabswitcherplugin,ktexteditorpreviewplugin}.mo
 \
 "$pkgdir"/usr/share/plasma/plasmoids
 }
 


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2017-04-07 Thread Antonio Rojas
Date: Friday, April 7, 2017 @ 23:02:20
  Author: arojas
Revision: 292498

Fix translations

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |   22 --
 1 file changed, 12 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-07 22:52:53 UTC (rev 292497)
+++ PKGBUILD2017-04-07 23:02:20 UTC (rev 292498)
@@ -7,7 +7,7 @@
 pkgname=('kwrite'
  'kate')
 pkgver=17.03.90
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'
@@ -16,6 +16,7 @@
 sha256sums=('44c78b31b1ae36ef38a362108882a28a24476510b2bd0746fc3095ecdc68914e'
 'SKIP')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+options=(!emptydirs)
 
 prepare() {
   mkdir -p build
@@ -41,11 +42,15 @@
   conflicts=('kdebase-kwrite')
   provides=('kdebase-kwrite')
 
-  cd build/kwrite
+  cd build
   make DESTDIR="${pkgdir}" install
 
-  cd ../../build/doc/kwrite
-  make DESTDIR="${pkgdir}" install
+  find "$pkgdir" -type f -name '*kate*' -exec rm {} \;
+  rm -r "$pkgdir"/usr/lib/qt/plugins/ktexteditor \
+"$pkgdir"/usr/share/doc/HTML/*/{kate,katepart} \
+"$pkgdir"/usr/share/katexmltools \
+
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{kterustcompletion,tabswitcherplugin}.mo
 \
+"$pkgdir"/usr/share/plasma/plasmoids
 }
 
 package_kate() {
@@ -58,12 +63,9 @@
   provides=('kdesdk-kate')
   optdepends=('konsole: open a terminal in Kate')
 
-  cd build/kate
+  cd build
   make DESTDIR="${pkgdir}" install
 
-  cd ../../build/doc/kate
-  make DESTDIR="${pkgdir}" install
-
-  cd ../../../build/addons
-  make DESTDIR="${pkgdir}" install
+  find "$pkgdir" -type f -name '*kwrite*' -exec rm {} \;
+  rm -r "$pkgdir"/usr/share/doc/HTML/*/kwrite
 }


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2017-04-05 Thread Antonio Rojas
Date: Wednesday, April 5, 2017 @ 15:06:29
  Author: arojas
Revision: 292165

Reenable git plugin

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-05 15:04:03 UTC (rev 292164)
+++ PKGBUILD2017-04-05 15:06:29 UTC (rev 292165)
@@ -7,7 +7,7 @@
 pkgname=('kwrite'
  'kate')
 pkgver=17.03.80
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2017-03-30 Thread Antonio Rojas
Date: Thursday, March 30, 2017 @ 11:27:38
  Author: arojas
Revision: 291852

Disable libgit support until Qt is ported to openssl 1.1

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-30 11:13:19 UTC (rev 291851)
+++ PKGBUILD2017-03-30 11:27:38 UTC (rev 291852)
@@ -7,7 +7,7 @@
 pkgname=('kwrite'
  'kate')
 pkgver=17.03.80
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'
@@ -36,7 +36,7 @@
   pkgdesc="Text Editor"
   groups=('kde-applications' 'kdebase')
   url="https://www.kde.org/applications/utilities/kwrite/";
-  depends=('ktexteditor' 'kded' 'kactivities' 'hicolor-icon-theme')
+  depends=('ktexteditor' 'kactivities' 'hicolor-icon-theme')
   replaces=('kdebase-kwrite')
   conflicts=('kdebase-kwrite')
   provides=('kdebase-kwrite')
@@ -52,7 +52,7 @@
   pkgdesc="Advanced Text Editor"
   groups=('kde-applications' 'kdebase')
   url="https://www.kde.org/applications/utilities/kate/";
-  depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 
'kactivities' 'hicolor-icon-theme')
+  depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kitemmodels' 
'kactivities' 'hicolor-icon-theme')
   replaces=('kdesdk-kate')
   conflicts=('kdesdk-kate')
   provides=('kdesdk-kate')


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2017-03-25 Thread Antonio Rojas
Date: Saturday, March 25, 2017 @ 17:26:35
  Author: arojas
Revision: 291622

libgit2 0.25 rebuild

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-25 16:48:24 UTC (rev 291621)
+++ PKGBUILD2017-03-25 17:26:35 UTC (rev 291622)
@@ -7,7 +7,7 @@
 pkgname=('kwrite'
  'kate')
 pkgver=17.03.80
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2016-03-31 Thread Antonio Rojas
Date: Thursday, March 31, 2016 @ 22:52:56
  Author: arojas
Revision: 263709

libgit 0.24 rebuild

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-31 20:25:06 UTC (rev 263708)
+++ PKGBUILD2016-03-31 20:52:56 UTC (rev 263709)
@@ -7,7 +7,7 @@
 pkgname=('kwrite'
  'kate')
 pkgver=16.03.80
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2015-11-21 Thread Antonio Rojas
Date: Saturday, November 21, 2015 @ 09:22:04
  Author: arojas
Revision: 251775

Simplify dependencies

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-21 08:10:47 UTC (rev 251774)
+++ PKGBUILD2015-11-21 08:22:04 UTC (rev 251775)
@@ -1,5 +1,6 @@
 # $Id$
 # Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
 # Contributor: Andrea Scarpino 
 
 pkgbase=kate
@@ -6,11 +7,11 @@
 pkgname=('kwrite'
  'kate')
 pkgver=15.11.80
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
-depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 
'kactivities-frameworks')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 
'knewstuff' 'ktexteditor'
+ 'threadweaver' 'kitemmodels' 'kactivities-frameworks')
 
source=("http://download.kde.org/unstable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
 sha1sums=('dbbb4bbb3cb05c443670ef572975101cdd57e6e6')
 
@@ -34,6 +35,7 @@
   pkgdesc="Text Editor"
   groups=('kde-applications' 'kdebase')
   url="http://www.kde.org/applications/utilities/kwrite/";
+  depends=('ktexteditor' 'kded' 'kactivities-frameworks' 'hicolor-icon-theme')
   install='kwrite.install'
   replaces=('kdebase-kwrite')
   conflicts=('kdebase-kwrite')
@@ -50,6 +52,7 @@
   pkgdesc="Advanced Text Editor"
   groups=('kde-applications' 'kdebase')
   url="http://www.kde.org/applications/utilities/kate/";
+  depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 
'kactivities-frameworks' 'hicolor-icon-theme')
   install='kate.install'
   replaces=('kdesdk-kate')
   conflicts=('kdesdk-kate')


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2015-07-28 Thread Antonio Rojas
Date: Tuesday, July 28, 2015 @ 22:16:40
  Author: arojas
Revision: 242616

Add kactivities dependency

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-28 20:14:24 UTC (rev 242615)
+++ PKGBUILD2015-07-28 20:16:40 UTC (rev 242616)
@@ -9,7 +9,7 @@
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
-depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels')
+depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 
'kactivities-frameworks')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
 
source=("http://download.kde.org/unstable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";)
 sha1sums=('4ac36fd53220b1c08829dd48e005df2ba46b32e5')


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2015-04-06 Thread Antonio Rojas
Date: Monday, April 6, 2015 @ 21:09:18
  Author: arojas
Revision: 235543

Add missing docs (FS#44476)

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-06 19:07:58 UTC (rev 235542)
+++ PKGBUILD2015-04-06 19:09:18 UTC (rev 235543)
@@ -60,9 +60,12 @@
   cd build/kate
   make DESTDIR="${pkgdir}" install
 
-  cd ../../build/doc/kate
+  cd "$srcdir"/build/addons
   make DESTDIR="${pkgdir}" install
 
-  cd ../../../build/addons
+  cd "$srcdir"/build/doc/kate
   make DESTDIR="${pkgdir}" install
+
+  cd "$srcdir"/build/doc/katepart
+  make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in kate/kde-unstable (PKGBUILD)

2015-03-14 Thread Antonio Rojas
Date: Saturday, March 14, 2015 @ 12:19:05
  Author: arojas
Revision: 233786

kate is in kdebase

Modified:
  kate/kde-unstable/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-14 11:17:51 UTC (rev 233785)
+++ PKGBUILD2015-03-14 11:19:05 UTC (rev 233786)
@@ -49,7 +49,7 @@
 
 package_kate() {
   pkgdesc="Advanced Text Editor"
-  groups=('kde' 'kdesdk')
+  groups=('kde' 'kdebase')
   url="http://www.kde.org/applications/utilities/kate/";
   install='kate.install'
   replaces=('kdesdk-kate')