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

2015-03-27 Thread Antonio Rojas
Date: Friday, March 27, 2015 @ 21:48:41
  Author: arojas
Revision: 235186

Make libwlocate optional

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-27 20:06:42 UTC (rev 235185)
+++ PKGBUILD2015-03-27 20:48:41 UTC (rev 235186)
@@ -34,9 +34,9 @@
 }
 
 package_kdeedu-marble() {
-  depends=('kdebase-runtime' 'libwlocate')
+  depends=('kdebase-runtime')
   optdepends=('gpsd: GPS support'
-'quazip: reading and displaying KMZ files')
+'quazip: reading and displaying KMZ files' 'libwlocate: WLAN based 
geolocation')
   groups=('kde-applications' 'kdeedu')
   install=$pkgname.install
 
@@ -49,9 +49,9 @@
 
 package_marble-qt() {
   pkgdesc=Desktop Globe (Qt version)
-  depends=('qt5-svg' 'qt5-webkit' 'qt5-script' 'libwlocate')
+  depends=('qt5-svg' 'qt5-webkit' 'qt5-script')
   optdepends=('gpsd: GPS support'
-  'quazip: reading and displaying KMZ files')
+  'quazip: reading and displaying KMZ files' 'libwlocate: WLAN based 
geolocation')
   conflicts=('kdeedu-marble')
   install=$pkgname.install  
 


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

2015-03-26 Thread Antonio Rojas
Date: Thursday, March 26, 2015 @ 23:20:57
  Author: arojas
Revision: 234992

Enable wlan geolocation support, add missing quazip makedepends

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-03-26 22:00:09 UTC (rev 234991)
+++ PKGBUILD2015-03-26 22:20:57 UTC (rev 234992)
@@ -10,7 +10,7 @@
 url=http://kde.org/applications/education/marble/;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
-makedepends=('kdelibs' 'qt5-svg' 'qt5-webkit' 'qt5-script' 'qt5-tools' 'cmake' 
'automoc4' 'gpsd')
+makedepends=('kdelibs' 'qt5-svg' 'qt5-webkit' 'qt5-script' 'qt5-tools' 'cmake' 
'automoc4' 'gpsd' 'quazip' 'libwlocate')
 
source=(http://download.kde.org/unstable/applications/${pkgver}/src/marble-${pkgver}.tar.xz;)
 sha1sums=('24b84755a8bb776f4829d46961e1ec3623c9021d')
 
@@ -34,7 +34,7 @@
 }
 
 package_kdeedu-marble() {
-  depends=('kdebase-runtime')
+  depends=('kdebase-runtime' 'libwlocate')
   optdepends=('gpsd: GPS support'
 'quazip: reading and displaying KMZ files')
   groups=('kde-applications' 'kdeedu')
@@ -49,7 +49,7 @@
 
 package_marble-qt() {
   pkgdesc=Desktop Globe (Qt version)
-  depends=('qt5-svg' 'qt5-webkit' 'qt5-script')
+  depends=('qt5-svg' 'qt5-webkit' 'qt5-script' 'libwlocate')
   optdepends=('gpsd: GPS support'
   'quazip: reading and displaying KMZ files')
   conflicts=('kdeedu-marble')


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

2015-03-15 Thread Antonio Rojas
Date: Sunday, March 15, 2015 @ 14:34:00
  Author: arojas
Revision: 233870

Don't ship mobile and qt4 versions (FS#37963), add qt5 version

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

--+
 PKGBUILD |   46 --
 1 file changed, 36 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-15 10:49:42 UTC (rev 233869)
+++ PKGBUILD2015-03-15 13:34:00 UTC (rev 233870)
@@ -2,24 +2,20 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: Andrea Scarpino and...@archlinux.org
 
-pkgname=kdeedu-marble
+pkgbase=kdeedu-marble
+pkgname=('kdeedu-marble' 'marble-qt')
 pkgver=15.03.90
-pkgrel=1
+pkgrel=2
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4' 'gpsd')
-optdepends=('gpsd: GPS support'
-'quazip: reading and displaying KMZ files')
-install=${pkgname}.install
+makedepends=('kdelibs' 'qt5-svg' 'qt5-webkit' 'qt5-script' 'qt5-tools' 'cmake' 
'automoc4' 'gpsd')
 
source=(http://download.kde.org/unstable/applications/${pkgver}/src/marble-${pkgver}.tar.xz;)
 sha1sums=('6199ef73c3404812e4a8496496db9ea6033f5399')
 
 prepare() {
-  mkdir build
+  mkdir -p build{,-qt}
 }
 
 build() {
@@ -29,9 +25,39 @@
 -DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr
   make
+
+  cd ../build-qt
+  cmake ../marble-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DQT5BUILD=TRUE \
+-DCMAKE_INSTALL_PREFIX=/usr
 }
 
-package() {
+package_kdeedu-marble() {
+  depends=('kdebase-runtime')
+  optdepends=('gpsd: GPS support'
+'quazip: reading and displaying KMZ files')
+  groups=('kde' 'kdeedu')
+  install=$pkgname.install
+
   cd build
   make DESTDIR=${pkgdir} install
+# remove mobile and qt4 versions
+  rm -r $pkgdir/usr/bin/marble-*
+  rm -r $pkgdir/usr/share/applications/kde4/marble-*
 }
+
+package_marble-qt() {
+  pkgdesc=Desktop Globe (Qt version)
+  depends=('qt5-svg' 'qt5-webkit' 'qt5-script')
+  optdepends=('gpsd: GPS support'
+  'quazip: reading and displaying KMZ files')
+  conflicts=('kdeedu-marble')
+  install=$pkgname.install  
+
+  cd build-qt
+  make DESTDIR=${pkgdir} install
+# remove mobile version
+  rm -r $pkgdir/usr/bin/marble-{mobile,touch}
+  rm -r $pkgdir/usr/share/applications/marble-{mobile,touch}.desktop
+}


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

2014-08-03 Thread Sven-Hendrik Haase
Date: Sunday, August 3, 2014 @ 14:19:14
  Author: svenstaro
Revision: 218580

upgpkg: kdeedu-marble 4.13.97-1

kde 4.14 rc1

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-08-03 12:19:11 UTC (rev 218579)
+++ PKGBUILD2014-08-03 12:19:14 UTC (rev 218580)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.13.95
+pkgver=4.13.97
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -15,7 +15,7 @@
 'quazip: reading and displaying KMZ files')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('1a7b4e4f48fb588381f913e1721842ce8e8005e9')
+sha1sums=('50e09f0f8caf88af4d643ead22e4bc02457ab106')
 
 prepare() {
   mkdir build



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

2013-07-18 Thread Sven-Hendrik Haase
Date: Friday, July 19, 2013 @ 00:22:47
  Author: svenstaro
Revision: 190892

upgpkg: kdeedu-marble 4.10.95-2

rebuild

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-18 22:22:46 UTC (rev 190891)
+++ PKGBUILD2013-07-18 22:22:47 UTC (rev 190892)
@@ -3,7 +3,7 @@
 
 pkgname=kdeedu-marble
 pkgver=4.10.95
-pkgrel=1
+pkgrel=2
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
 arch=('i686' 'x86_64')



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

2013-07-16 Thread Sven-Hendrik Haase
Date: Tuesday, July 16, 2013 @ 20:20:57
  Author: svenstaro
Revision: 190176

upgpkg: kdeedu-marble 4.10.95-1

upstream 4.11rc1

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-16 18:20:54 UTC (rev 190175)
+++ PKGBUILD2013-07-16 18:20:57 UTC (rev 190176)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.10.90
+pkgver=4.10.95
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('1b8fc2dd107262fa791df175fad7318ccf3b348a')
+sha1sums=('5f118e29cefdf89365d5e6be86d9eeefd9bb2ca3')
 
 build() {
   mkdir build



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

2013-01-31 Thread Andrea Scarpino
Date: Thursday, January 31, 2013 @ 12:18:12
  Author: andrea
Revision: 176388

KDE 4.10

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-31 11:18:08 UTC (rev 176387)
+++ PKGBUILD2013-01-31 11:18:12 UTC (rev 176388)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.9.98
+pkgver=4.10.0
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -13,8 +13,8 @@
 makedepends=('cmake' 'automoc4' 'gpsd')
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('de7649064844e8d86f316937f9807d9c338b1d87')
+source=(http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.xz;)
+sha1sums=('c1db6b1785ca1ad230de6da0e67ee84bf7e3a2cd')
 
 build() {
   cd ${srcdir}



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

2013-01-17 Thread Andrea Scarpino
Date: Thursday, January 17, 2013 @ 09:05:22
  Author: andrea
Revision: 175382

KDE 4.10 RC3

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-17 14:05:18 UTC (rev 175381)
+++ PKGBUILD2013-01-17 14:05:22 UTC (rev 175382)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.9.97
+pkgver=4.9.98
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('f6a98355b51a3583d15d9cf01505c1d7e2cc7804')
+sha1sums=('de7649064844e8d86f316937f9807d9c338b1d87')
 
 build() {
   cd ${srcdir}



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

2013-01-16 Thread Andrea Scarpino
Date: Wednesday, January 16, 2013 @ 18:59:52
  Author: andrea
Revision: 175237

Tests are enabled by default in KDE 4.10 RC3

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-16 23:59:49 UTC (rev 175236)
+++ PKGBUILD2013-01-16 23:59:52 UTC (rev 175237)
@@ -22,6 +22,7 @@
   cd build
   cmake ../marble-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
 -DCMAKE_INSTALL_PREFIX=/usr
   make
 }



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

2013-01-04 Thread Andrea Scarpino
Date: Friday, January 4, 2013 @ 09:36:05
  Author: andrea
Revision: 174327

KDE 4.10 RC2

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-04 14:36:01 UTC (rev 174326)
+++ PKGBUILD2013-01-04 14:36:05 UTC (rev 174327)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.9.95
+pkgver=4.9.97
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('f790b6de61d5ebe28d047baad3b2e00cfd06139b')
+sha1sums=('f6a98355b51a3583d15d9cf01505c1d7e2cc7804')
 
 build() {
   cd ${srcdir}



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

2012-12-19 Thread Andrea Scarpino
Date: Wednesday, December 19, 2012 @ 09:53:08
  Author: andrea
Revision: 173372

KDE 4.10 RC1

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-12-19 14:53:05 UTC (rev 173371)
+++ PKGBUILD2012-12-19 14:53:08 UTC (rev 173372)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.9.90
+pkgver=4.9.95
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('4d8d651464f10316edb04166739cf04d54c5812d')
+sha1sums=('f790b6de61d5ebe28d047baad3b2e00cfd06139b')
 
 build() {
   cd ${srcdir}



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

2012-12-02 Thread Andrea Scarpino
Date: Sunday, December 2, 2012 @ 06:19:34
  Author: andrea
Revision: 172325

KDE 4.10 beta2

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-12-02 11:19:31 UTC (rev 172324)
+++ PKGBUILD2012-12-02 11:19:34 UTC (rev 172325)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.9.80
+pkgver=4.9.90
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('449f3e87b5d111e36730ebaf321f5081dded028d')
+sha1sums=('4d8d651464f10316edb04166739cf04d54c5812d')
 
 build() {
   cd ${srcdir}



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

2012-07-11 Thread Andrea Scarpino
Date: Wednesday, July 11, 2012 @ 16:50:50
  Author: andrea
Revision: 163267

KDE 4.9 RC2

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-07-11 20:50:47 UTC (rev 163266)
+++ PKGBUILD2012-07-11 20:50:50 UTC (rev 163267)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.8.95
+pkgver=4.8.97
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('621fd58567c43f73fdb0ae3b078efa9e8e9eb56e')
+sha1sums=('218cb42ccb8946ee1bb8f35b770e0f8b7c9b5ebb')
 
 build() {
   cd ${srcdir}



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

2012-06-27 Thread Andrea Scarpino
Date: Wednesday, June 27, 2012 @ 02:22:06
  Author: andrea
Revision: 162448

KDE 4.9 RC1

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-27 06:22:03 UTC (rev 162447)
+++ PKGBUILD2012-06-27 06:22:06 UTC (rev 162448)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.8.90
+pkgver=4.8.95
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('ac78b82f1101bd6af351cbc69802fc6e45fe48be')
+sha1sums=('621fd58567c43f73fdb0ae3b078efa9e8e9eb56e')
 
 build() {
   cd ${srcdir}



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

2012-06-11 Thread Andrea Scarpino
Date: Tuesday, June 12, 2012 @ 01:42:36
  Author: andrea
Revision: 161525

KDE 4.9beta2

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-12 05:42:33 UTC (rev 161524)
+++ PKGBUILD2012-06-12 05:42:36 UTC (rev 161525)
@@ -2,8 +2,8 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.8.80
-pkgrel=2
+pkgver=4.8.90
+pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('9cf35d867f1336c5d42bbb3fa90a8310742d5008')
+sha1sums=('ac78b82f1101bd6af351cbc69802fc6e45fe48be')
 
 build() {
   cd ${srcdir}



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

2012-05-31 Thread Andrea Scarpino
Date: Thursday, May 31, 2012 @ 16:37:40
  Author: andrea
Revision: 160286

New set of tarballs

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-05-31 20:37:37 UTC (rev 160285)
+++ PKGBUILD2012-05-31 20:37:40 UTC (rev 160286)
@@ -3,7 +3,7 @@
 
 pkgname=kdeedu-marble
 pkgver=4.8.80
-pkgrel=1
+pkgrel=2
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('gpsd: gps support')
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.xz;)
-sha1sums=('d3f6b27cda2710d48dfa2873dc09f4b0bccbcb09')
+sha1sums=('9cf35d867f1336c5d42bbb3fa90a8310742d5008')
 
 build() {
   cd ${srcdir}



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

2011-07-24 Thread Andrea Scarpino
Date: Sunday, July 24, 2011 @ 18:45:52
  Author: andrea
Revision: 132504

KDE 4.7.0

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-24 22:45:49 UTC (rev 132503)
+++ PKGBUILD2011-07-24 22:45:52 UTC (rev 132504)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.6.95
+pkgver=4.7.0
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -12,9 +12,9 @@
 depends=('kdebase-runtime' 'gpsd')
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
-source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.bz2;
+source=(http://download.kde.org/stable/${pkgver}/src/marble-${pkgver}.tar.bz2;
 'gpsd-2.96.patch')
-sha1sums=('f70645d42f246e38e912d84d4009ec0795be4c31'
+sha1sums=('bbe08a57a33e06fceea3a51aed1406bc71ee02a9'
   'f44dfd3bb384e631d59b93d7dda3413795da8183')
 
 build() {



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

2011-07-12 Thread Andrea Scarpino
Date: Tuesday, July 12, 2011 @ 13:46:45
  Author: andrea
Revision: 131293

KDE 4.7RC2

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-07-12 17:46:39 UTC (rev 131292)
+++ PKGBUILD2011-07-12 17:46:45 UTC (rev 131293)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.6.90
+pkgver=4.6.95
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.bz2;
 'gpsd-2.96.patch')
-sha1sums=('cff7862fef00e7848c8c9bb55f1ee1ba847c1ac3'
+sha1sums=('f70645d42f246e38e912d84d4009ec0795be4c31'
   'f44dfd3bb384e631d59b93d7dda3413795da8183')
 
 build() {



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

2011-06-24 Thread Andrea Scarpino
Date: Friday, June 24, 2011 @ 08:42:41
  Author: andrea
Revision: 128540

KDE 4.7RC1

Modified:
  kdeedu-marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-06-24 12:42:38 UTC (rev 128539)
+++ PKGBUILD2011-06-24 12:42:41 UTC (rev 128540)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kdeedu-marble
-pkgver=4.6.80
+pkgver=4.6.90
 pkgrel=1
 pkgdesc=Desktop Globe
 url=http://kde.org/applications/education/marble/;
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 
source=(http://download.kde.org/unstable/${pkgver}/src/marble-${pkgver}.tar.bz2;
 'gpsd-2.96.patch')
-sha1sums=('4d7663909efe3b42006debd78f1217bb3dfffd88'
+sha1sums=('cff7862fef00e7848c8c9bb55f1ee1ba847c1ac3'
   'f44dfd3bb384e631d59b93d7dda3413795da8183')
 
 build() {