[arch-commits] Commit in (8 files)

Ronald van Haren ronald at archlinux.org
Thu Jun 10 08:33:01 UTC 2010


    Date: Thursday, June 10, 2010 @ 04:33:01
  Author: ronald
Revision: 82303

add libktorrent PKGBUILD, needed for ktorrent

Added:
  libktorrent/
  libktorrent/repos/
  libktorrent/trunk/
  libktorrent/trunk/PKGBUILD
Modified:
  gjs/trunk/PKGBUILD
  glib2/trunk/PKGBUILD
  gnome-shell/trunk/PKGBUILD
  ktorrent/trunk/PKGBUILD

----------------------------+
 gjs/trunk/PKGBUILD         |    6 +++---
 glib2/trunk/PKGBUILD       |   17 ++++++++++++-----
 gnome-shell/trunk/PKGBUILD |    6 +++---
 ktorrent/trunk/PKGBUILD    |   10 +++++-----
 libktorrent/trunk/PKGBUILD |   30 ++++++++++++++++++++++++++++++
 5 files changed, 53 insertions(+), 16 deletions(-)

Modified: gjs/trunk/PKGBUILD
===================================================================
--- gjs/trunk/PKGBUILD	2010-06-10 08:15:54 UTC (rev 82302)
+++ gjs/trunk/PKGBUILD	2010-06-10 08:33:01 UTC (rev 82303)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Ionut Biru <ibiru at archlinux.org>
 pkgname=gjs
-pkgver=0.6
+pkgver=0.7
 pkgrel=1
 pkgdesc="Javascript Bindings for GNOME"
 arch=('i686' 'x86_64')
@@ -9,8 +9,7 @@
 license=('GPL')
 depends=('gobject-introspection>=0.6.9' 'xulrunner>=1.9.2')
 options=('!libtool')
-source=(http://download.gnome.org/sources/$pkgname/0.6/$pkgname-$pkgver.tar.bz2)
-sha256sums=('5c5a54bbb819bfaea1e0e76f0508467e8d5690360ab550e1284951d905a56e5d')
+source=(http://download.gnome.org/sources/$pkgname/0.7/$pkgname-$pkgver.tar.bz2)
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -18,3 +17,4 @@
   make || return 1
   make DESTDIR="$pkgdir" install || return 1
 }
+sha1sums=('a4fb8ae8e83e338081d5f9dc867d2612b57669b1')

Modified: glib2/trunk/PKGBUILD
===================================================================
--- glib2/trunk/PKGBUILD	2010-06-10 08:15:54 UTC (rev 82302)
+++ glib2/trunk/PKGBUILD	2010-06-10 08:33:01 UTC (rev 82303)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Jan de Groot <jgc at archlinux.org>
 
-pkgname=glib2
+pkgname=glib2-patched
 pkgver=2.24.1
 pkgrel=1
 pkgdesc="Common C routines used by GTK+ 2.4 and other libs"
@@ -11,15 +11,18 @@
 depends=('pcre>=8.02')
 makedepends=('pkgconfig')
 options=('!libtool' '!docs')
+conflicts=('glib2')
+provides=('glib2')
 source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.24/glib-${pkgver}.tar.bz2
         glib2.sh
-        glib2.csh)
-sha256sums=('014c3da960bf17117371075c16495f05f36501db990851ceea658f15d2ea6d04'
-            '9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
-            '8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
+        glib2.csh
+        gio.patch)
 
 build() {
   cd "${srcdir}/glib-${pkgver}"
+
+  patch -Np1 -i ${srcdir}/gio.patch || return 1
+
   ./configure --prefix=/usr --enable-static --enable-shared \
       --with-pcre=system --disable-fam || return 1
   make || return 1
@@ -31,3 +34,7 @@
 
   chmod 755 ${pkgdir}/usr/bin/gtester-report || return 1
 }
+sha1sums=('d4835bb1618fc1e1dfe88ef8443c12fcae69f90e'
+          'bfe05590a6498259f1045a591fd886a8572f271a'
+          '6db09da816d69aab7a5cbf3460ee082bef200891'
+          '951442c860e9bf85733dc639c385dc21a15d5891')

Modified: gnome-shell/trunk/PKGBUILD
===================================================================
--- gnome-shell/trunk/PKGBUILD	2010-06-10 08:15:54 UTC (rev 82302)
+++ gnome-shell/trunk/PKGBUILD	2010-06-10 08:33:01 UTC (rev 82303)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab <panosfilip at gmail.com
 
 pkgname=gnome-shell
-pkgver=2.29.1
+pkgver=2.31.2
 pkgrel=1
 pkgdesc="The next generation GNOME Shell. Experimental, GNOME 3.0 version."
 arch=('i686' 'x86_64')
@@ -13,8 +13,7 @@
 makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils>=0.19.5' 'gir-repository')
 options=('!libtool' '!emptydirs')
 install=gnome-shell.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/gnome-shell/2.29/gnome-shell-$pkgver.tar.bz2)
-sha256sums=('710b863c0beea45543f8057d31b028ec85e19efeedda2b964d784d6fc1729c0b')
+source=(http://ftp.gnome.org/pub/GNOME/sources/gnome-shell/2.31/gnome-shell-$pkgver.tar.bz2)
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -28,3 +27,4 @@
   rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
 }
 
+sha1sums=('9df6117f9d3b9f9056e71f801cb1cefe66569ee9')

Modified: ktorrent/trunk/PKGBUILD
===================================================================
--- ktorrent/trunk/PKGBUILD	2010-06-10 08:15:54 UTC (rev 82302)
+++ ktorrent/trunk/PKGBUILD	2010-06-10 08:33:01 UTC (rev 82303)
@@ -4,8 +4,8 @@
 # Contributor: Georg Grabler <ggrabler at gmail.com>
 
 pkgname=ktorrent
-pkgver=3.3.4
-pkgrel=2
+pkgver=4.0.0
+pkgrel=1
 pkgdesc="A BitTorrent program for KDE"
 arch=('i686' 'x86_64')
 url="http://ktorrent.org"
@@ -14,12 +14,12 @@
 # 'kdebase-runtime' is needed for some of the icons in the interface to show
 makedepends=('autoconf' 'perl' 'automoc4' 'cmake' 'kdepimlibs' 'kdebase-workspace')
 # 'kdebase-workspace' is needed to enable plasmoid building
-source=("http://ktorrent.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.bz2"
+source=("http://ktorrent.org/downloads/4.0/${pkgname}-${pkgver}.tar.bz2"
 	'httpserver.patch')
 install=ktorrent.install
 options=('libtool')
-md5sums=('7d7dba06a78d09494199bd4ef82e5527'
-         '1f25b94615b0bbfa0457c99fb20de3e6')
+sha1sums=('53376065ba78262acbb09eca186a34f75f02bea9'
+          'cef22b24af540e1bfcf13da60e4846ade106c303')
 
 build() {
 	cd ${srcdir}/${pkgname}-${pkgver}

Added: libktorrent/trunk/PKGBUILD
===================================================================
--- libktorrent/trunk/PKGBUILD	                        (rev 0)
+++ libktorrent/trunk/PKGBUILD	2010-06-10 08:33:01 UTC (rev 82303)
@@ -0,0 +1,30 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+
+pkgname=libktorrent
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="lib for ktorrentE"
+arch=('i686' 'x86_64')
+url="http://ktorrent.org"
+license=('GPL2')
+depends=('kdelibs')
+makedepends=('autoconf' 'perl' 'automoc4' 'cmake' 'kdepimlibs' 'kdebase-workspace')
+source=(http://ktorrent.org/downloads/4.0/${pkgname}-${pkgver}.tar.bz2)
+options=('libtool')
+sha1sums=('2667910d19c400fb436d6537b8402c4c38994b9b')
+
+build() {
+ cd ${srcdir}
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_SKIP_RPATH=ON
+ make || return 1
+}
+
+package() {
+ cd ${srcdir}/build
+ make DESTDIR=${pkgdir} install
+}




More information about the arch-commits mailing list