[arch-commits] Commit in ndesk-dbus/repos/extra-any (4 files)
Allan McRae
allan at archlinux.org
Fri Feb 17 07:48:20 UTC 2012
Date: Friday, February 17, 2012 @ 02:48:20
Author: allan
Revision: 150360
archrelease: copy trunk to extra-any
Added:
ndesk-dbus/repos/extra-any/PKGBUILD
(from rev 150359, ndesk-dbus/trunk/PKGBUILD)
ndesk-dbus/repos/extra-any/namespace-support.patch
(from rev 150359, ndesk-dbus/trunk/namespace-support.patch)
Deleted:
ndesk-dbus/repos/extra-any/PKGBUILD
ndesk-dbus/repos/extra-any/namespace-support.patch
-------------------------+
PKGBUILD | 62 ++++++++++++++++++++++++----------------------
namespace-support.patch | 24 ++++++++---------
2 files changed, 45 insertions(+), 41 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2012-02-17 07:47:47 UTC (rev 150359)
+++ PKGBUILD 2012-02-17 07:48:20 UTC (rev 150360)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: tardo <tardo at nagi-fanboi.net>
-
-pkgname=ndesk-dbus
-pkgver=0.6.0
-pkgrel=2
-pkgdesc="C# implementation of D-Bus"
-arch=('any')
-url="http://www.ndesk.org/DBusSharp"
-license=('custom')
-depends=('mono')
-makedepends=('pkgconfig')
-options=(!makeflags)
-source=(http://www.ndesk.org/archive/dbus-sharp/${pkgname}-${pkgver}.tar.gz
- namespace-support.patch)
-md5sums=('5157ba105c9ac491f6e900bc78d1791f'
- '8e4976d0565854de48ee88cd9f929bd9')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- patch -Np1 -i "${srcdir}/namespace-support.patch" || return 1
- export MONO_SHARED_DIR="${startdir}/src/.wabi"
- mkdir -p "${MONO_SHARED_DIR}"
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
- install -D COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" || return 1
-}
Copied: ndesk-dbus/repos/extra-any/PKGBUILD (from rev 150359, ndesk-dbus/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2012-02-17 07:48:20 UTC (rev 150360)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: tardo <tardo at nagi-fanboi.net>
+
+pkgname=ndesk-dbus
+pkgver=0.6.0
+pkgrel=3
+pkgdesc="C# implementation of D-Bus"
+arch=('any')
+url="http://www.ndesk.org/DBusSharp"
+license=('custom')
+depends=('mono')
+makedepends=('pkgconfig')
+options=(!makeflags)
+source=(http://www.ndesk.org/archive/dbus-sharp/${pkgname}-${pkgver}.tar.gz
+ namespace-support.patch)
+md5sums=('5157ba105c9ac491f6e900bc78d1791f'
+ '8e4976d0565854de48ee88cd9f929bd9')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -Np1 -i "${srcdir}/namespace-support.patch"
+ export MONO_SHARED_DIR="${startdir}/src/.wabi"
+ mkdir -p "${MONO_SHARED_DIR}"
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -D COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
Deleted: namespace-support.patch
===================================================================
--- namespace-support.patch 2012-02-17 07:47:47 UTC (rev 150359)
+++ namespace-support.patch 2012-02-17 07:48:20 UTC (rev 150360)
@@ -1,12 +0,0 @@
-diff -urNp ndesk-dbus-0.6.0/src/TypeImplementer.cs mine/src/TypeImplementer.cs
---- ndesk-dbus-0.6.0/src/TypeImplementer.cs 2007-10-11 16:01:11.000000000 -0400
-+++ mine/src/TypeImplementer.cs 2010-01-19 01:37:31.317786525 -0500
-@@ -34,7 +34,7 @@ namespace NDesk.DBus
-
- InitHack ();
-
-- TypeBuilder typeB = modB.DefineType (declType.Name + "Proxy", TypeAttributes.Class | TypeAttributes.Public, typeof (BusObject));
-+ TypeBuilder typeB = modB.DefineType (declType.FullName + "Proxy", TypeAttributes.Class | TypeAttributes.Public, typeof (BusObject));
-
- Implement (typeB, declType);
-
Copied: ndesk-dbus/repos/extra-any/namespace-support.patch (from rev 150359, ndesk-dbus/trunk/namespace-support.patch)
===================================================================
--- namespace-support.patch (rev 0)
+++ namespace-support.patch 2012-02-17 07:48:20 UTC (rev 150360)
@@ -0,0 +1,12 @@
+diff -urNp ndesk-dbus-0.6.0/src/TypeImplementer.cs mine/src/TypeImplementer.cs
+--- ndesk-dbus-0.6.0/src/TypeImplementer.cs 2007-10-11 16:01:11.000000000 -0400
++++ mine/src/TypeImplementer.cs 2010-01-19 01:37:31.317786525 -0500
+@@ -34,7 +34,7 @@ namespace NDesk.DBus
+
+ InitHack ();
+
+- TypeBuilder typeB = modB.DefineType (declType.Name + "Proxy", TypeAttributes.Class | TypeAttributes.Public, typeof (BusObject));
++ TypeBuilder typeB = modB.DefineType (declType.FullName + "Proxy", TypeAttributes.Class | TypeAttributes.Public, typeof (BusObject));
+
+ Implement (typeB, declType);
+
More information about the arch-commits
mailing list