[arch-commits] Commit in krusader/repos (10 files)

Lukas Jirkovsky stativ at nymeria.archlinux.org
Thu Aug 8 11:37:12 UTC 2013


    Date: Thursday, August 8, 2013 @ 13:37:12
  Author: stativ
Revision: 95266

archrelease: copy trunk to community-i686, community-x86_64

Added:
  krusader/repos/community-i686/PKGBUILD
    (from rev 95265, krusader/trunk/PKGBUILD)
  krusader/repos/community-i686/kde_bug309119.diff
    (from rev 95265, krusader/trunk/kde_bug309119.diff)
  krusader/repos/community-i686/krusader.install
    (from rev 95265, krusader/trunk/krusader.install)
  krusader/repos/community-x86_64/PKGBUILD
    (from rev 95265, krusader/trunk/PKGBUILD)
  krusader/repos/community-x86_64/kde_bug309119.diff
    (from rev 95265, krusader/trunk/kde_bug309119.diff)
  krusader/repos/community-x86_64/krusader.install
    (from rev 95265, krusader/trunk/krusader.install)
Deleted:
  krusader/repos/community-i686/PKGBUILD
  krusader/repos/community-i686/krusader.install
  krusader/repos/community-x86_64/PKGBUILD
  krusader/repos/community-x86_64/krusader.install

-------------------------------------+
 /PKGBUILD                           |   82 ++++++++++++++++++++++++++++++++++
 /krusader.install                   |   22 +++++++++
 community-i686/PKGBUILD             |   36 --------------
 community-i686/kde_bug309119.diff   |   21 ++++++++
 community-i686/krusader.install     |   11 ----
 community-x86_64/PKGBUILD           |   36 --------------
 community-x86_64/kde_bug309119.diff |   21 ++++++++
 community-x86_64/krusader.install   |   11 ----
 8 files changed, 146 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-08-08 11:37:04 UTC (rev 95265)
+++ community-i686/PKGBUILD	2013-08-08 11:37:12 UTC (rev 95266)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Alexander Baldeck <alexander at archlinux.org>
-# Contributor: Lucien Immink <l.immink at student.fnt.hvu.nl>
-
-pkgname=krusader
-pkgver=2.4.0beta3
-_pkgver=2.4.0-beta3
-pkgrel=2
-pkgdesc="An alternative file manager for KDE resembling Midnight Commander"
-arch=('i686' 'x86_64')
-url="http://krusader.sourceforge.net/"
-license=('GPL')
-depends=('kdebase-runtime' 'kdebase-lib' 'kdebase-katepart')
-makedepends=('cmake' 'automoc4' 'kdeutils-ark')
-optdepends=('kdebase-keditbookmarks: to edit bookmarks'
-            'kdeutils-ark: extract archive with right-click'
-            'kdebase-konsole: open an embedded terminal')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2")
-md5sums=('62a02db3f213bb76805ca6c958e9e263')
-
-build() {
-  cd "$srcdir/$pkgname-$_pkgver"
-
-  cmake . \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$_pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: krusader/repos/community-i686/PKGBUILD (from rev 95265, krusader/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-08-08 11:37:12 UTC (rev 95266)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
+# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Alexander Baldeck <alexander at archlinux.org>
+# Contributor: Lucien Immink <l.immink at student.fnt.hvu.nl>
+
+pkgname=krusader
+pkgver=2.4.0beta3
+_pkgver=2.4.0-beta3
+pkgrel=3
+pkgdesc="An alternative file manager for KDE resembling Midnight Commander"
+arch=('i686' 'x86_64')
+url="http://krusader.sourceforge.net/"
+license=('GPL')
+depends=('kdebase-runtime' 'kdebase-lib' 'kdebase-katepart')
+makedepends=('cmake' 'automoc4' 'kdeutils-ark')
+optdepends=('kdebase-keditbookmarks: to edit bookmarks'
+            'kdeutils-ark: extract archive with right-click'
+            'kdebase-konsole: open an embedded terminal')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2"
+        "kde_bug309119.diff")
+md5sums=('62a02db3f213bb76805ca6c958e9e263'
+         '5e9952f6ac38e5ce323eb95ca6f20db6')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgver"
+
+  # fix KDE bug 309119 - "New directory" dialog: can't clear all typed text
+  patch -Np1 < "$srcdir/kde_bug309119.diff"
+
+  cmake . \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: krusader/repos/community-i686/kde_bug309119.diff (from rev 95265, krusader/trunk/kde_bug309119.diff)
===================================================================
--- community-i686/kde_bug309119.diff	                        (rev 0)
+++ community-i686/kde_bug309119.diff	2013-08-08 11:37:12 UTC (rev 95266)
@@ -0,0 +1,21 @@
+commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9
+Author: Jan Lepper <jan_lepper at gmx.de>
+Date:   Wed Jan 2 21:38:52 2013 +0100
+
+    FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all typed text
+    return QValidator::Intermediate instead of Invalid when input is empty
+    BUG: 309119
+
+diff --git a/krusader/Panel/panelfunc.cpp b/krusader/Panel/panelfunc.cpp
+index 2f696da..8935ddf 100644
+--- a/krusader/Panel/panelfunc.cpp
++++ b/krusader/Panel/panelfunc.cpp
+@@ -100,7 +100,7 @@ class FilePathValidator : public QValidator
+ {
+ public:
+     virtual State validate(QString &input, int &pos) const {
+-        return input.isEmpty() ? Invalid : Acceptable;
++            return input.isEmpty() ? Intermediate : Acceptable;
+     }
+ };
+ 

Deleted: community-i686/krusader.install
===================================================================
--- community-i686/krusader.install	2013-08-08 11:37:04 UTC (rev 95265)
+++ community-i686/krusader.install	2013-08-08 11:37:12 UTC (rev 95266)
@@ -1,11 +0,0 @@
-post_install() {
-	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-	post_install
-}
-
-post_remove() {
-	post_install
-}

Copied: krusader/repos/community-i686/krusader.install (from rev 95265, krusader/trunk/krusader.install)
===================================================================
--- community-i686/krusader.install	                        (rev 0)
+++ community-i686/krusader.install	2013-08-08 11:37:12 UTC (rev 95266)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-08-08 11:37:04 UTC (rev 95265)
+++ community-x86_64/PKGBUILD	2013-08-08 11:37:12 UTC (rev 95266)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: Alexander Baldeck <alexander at archlinux.org>
-# Contributor: Lucien Immink <l.immink at student.fnt.hvu.nl>
-
-pkgname=krusader
-pkgver=2.4.0beta3
-_pkgver=2.4.0-beta3
-pkgrel=2
-pkgdesc="An alternative file manager for KDE resembling Midnight Commander"
-arch=('i686' 'x86_64')
-url="http://krusader.sourceforge.net/"
-license=('GPL')
-depends=('kdebase-runtime' 'kdebase-lib' 'kdebase-katepart')
-makedepends=('cmake' 'automoc4' 'kdeutils-ark')
-optdepends=('kdebase-keditbookmarks: to edit bookmarks'
-            'kdeutils-ark: extract archive with right-click'
-            'kdebase-konsole: open an embedded terminal')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2")
-md5sums=('62a02db3f213bb76805ca6c958e9e263')
-
-build() {
-  cd "$srcdir/$pkgname-$_pkgver"
-
-  cmake . \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$_pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: krusader/repos/community-x86_64/PKGBUILD (from rev 95265, krusader/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-08-08 11:37:12 UTC (rev 95266)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 149613 2012-02-08 20:20:01Z pierre $
+# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: Alexander Baldeck <alexander at archlinux.org>
+# Contributor: Lucien Immink <l.immink at student.fnt.hvu.nl>
+
+pkgname=krusader
+pkgver=2.4.0beta3
+_pkgver=2.4.0-beta3
+pkgrel=3
+pkgdesc="An alternative file manager for KDE resembling Midnight Commander"
+arch=('i686' 'x86_64')
+url="http://krusader.sourceforge.net/"
+license=('GPL')
+depends=('kdebase-runtime' 'kdebase-lib' 'kdebase-katepart')
+makedepends=('cmake' 'automoc4' 'kdeutils-ark')
+optdepends=('kdebase-keditbookmarks: to edit bookmarks'
+            'kdeutils-ark: extract archive with right-click'
+            'kdebase-konsole: open an embedded terminal')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.bz2"
+        "kde_bug309119.diff")
+md5sums=('62a02db3f213bb76805ca6c958e9e263'
+         '5e9952f6ac38e5ce323eb95ca6f20db6')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgver"
+
+  # fix KDE bug 309119 - "New directory" dialog: can't clear all typed text
+  patch -Np1 < "$srcdir/kde_bug309119.diff"
+
+  cmake . \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: krusader/repos/community-x86_64/kde_bug309119.diff (from rev 95265, krusader/trunk/kde_bug309119.diff)
===================================================================
--- community-x86_64/kde_bug309119.diff	                        (rev 0)
+++ community-x86_64/kde_bug309119.diff	2013-08-08 11:37:12 UTC (rev 95266)
@@ -0,0 +1,21 @@
+commit 5cb23ac98046a07d5db3a52b41e3a42544eb13f9
+Author: Jan Lepper <jan_lepper at gmx.de>
+Date:   Wed Jan 2 21:38:52 2013 +0100
+
+    FIXED: [ 309119 ] Wrong "New directory" dialog behavior: can't clear all typed text
+    return QValidator::Intermediate instead of Invalid when input is empty
+    BUG: 309119
+
+diff --git a/krusader/Panel/panelfunc.cpp b/krusader/Panel/panelfunc.cpp
+index 2f696da..8935ddf 100644
+--- a/krusader/Panel/panelfunc.cpp
++++ b/krusader/Panel/panelfunc.cpp
+@@ -100,7 +100,7 @@ class FilePathValidator : public QValidator
+ {
+ public:
+     virtual State validate(QString &input, int &pos) const {
+-        return input.isEmpty() ? Invalid : Acceptable;
++            return input.isEmpty() ? Intermediate : Acceptable;
+     }
+ };
+ 

Deleted: community-x86_64/krusader.install
===================================================================
--- community-x86_64/krusader.install	2013-08-08 11:37:04 UTC (rev 95265)
+++ community-x86_64/krusader.install	2013-08-08 11:37:12 UTC (rev 95266)
@@ -1,11 +0,0 @@
-post_install() {
-	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-	post_install
-}
-
-post_remove() {
-	post_install
-}

Copied: krusader/repos/community-x86_64/krusader.install (from rev 95265, krusader/trunk/krusader.install)
===================================================================
--- community-x86_64/krusader.install	                        (rev 0)
+++ community-x86_64/krusader.install	2013-08-08 11:37:12 UTC (rev 95266)
@@ -0,0 +1,11 @@
+post_install() {
+	xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+	post_install
+}
+
+post_remove() {
+	post_install
+}




More information about the arch-commits mailing list