pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/kdevelop-base Update to 3.5.4. Set LICENSE. Fix ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d5dbe40e2faf
branches:  trunk
changeset: 397540:d5dbe40e2faf
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sat Aug 15 17:04:51 2009 +0000

description:
Update to 3.5.4. Set LICENSE. Fix getline breakage.

Over 30 bugs fixed.

(3.5.5 is out, but I'm still looking for the source tarball.)

diffstat:

 devel/kdevelop-base/Makefile         |   8 ++++----
 devel/kdevelop-base/distinfo         |  10 +++++-----
 devel/kdevelop-base/patches/patch-ai |  21 +++++++++++++++++----
 3 files changed, 26 insertions(+), 13 deletions(-)

diffs (74 lines):

diff -r 9de06d1c53e4 -r d5dbe40e2faf devel/kdevelop-base/Makefile
--- a/devel/kdevelop-base/Makefile      Sat Aug 15 16:47:25 2009 +0000
+++ b/devel/kdevelop-base/Makefile      Sat Aug 15 17:04:51 2009 +0000
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.76 2009/05/20 00:58:13 wiz Exp $
+# $NetBSD: Makefile,v 1.77 2009/08/15 17:04:51 wiz Exp $
 
-DISTNAME=      kdevelop-3.5.3
-PKGNAME=       kdevelop-base-3.5.3
-PKGREVISION=   2
+DISTNAME=      kdevelop-3.5.4
+PKGNAME=       kdevelop-base-3.5.4
 CATEGORIES=    devel kde
 
 HOMEPAGE=      http://www.kdevelop.org/
 COMMENT=       Base modules for IDE for Unix/X11/KDE
+LICENSE=       gnu-gpl-v2 AND gnu-lgpl-v2
 
 PKG_DESTDIR_SUPPORT=   user-destdir
 
diff -r 9de06d1c53e4 -r d5dbe40e2faf devel/kdevelop-base/distinfo
--- a/devel/kdevelop-base/distinfo      Sat Aug 15 16:47:25 2009 +0000
+++ b/devel/kdevelop-base/distinfo      Sat Aug 15 17:04:51 2009 +0000
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.36 2008/08/27 12:29:05 markd Exp $
+$NetBSD: distinfo,v 1.37 2009/08/15 17:04:51 wiz Exp $
 
-SHA1 (kdevelop-3.5.3.tar.bz2) = 1577f195c1e0b00d8121f0d2b61dd76c6a3c7b53
-RMD160 (kdevelop-3.5.3.tar.bz2) = 4c80dd81253fbca990f2987258e70b38681f0737
-Size (kdevelop-3.5.3.tar.bz2) = 9486955 bytes
+SHA1 (kdevelop-3.5.4.tar.bz2) = 4b51f23b26705de61fdbffa5f0ce31ff71586eed
+RMD160 (kdevelop-3.5.4.tar.bz2) = 63282181bf8c66a556b451973d077a04d028db7e
+Size (kdevelop-3.5.4.tar.bz2) = 9571281 bytes
 SHA1 (patch-aa) = ea4ceb43d826297610b19c1cd2c538fa486b2b22
 SHA1 (patch-ab) = 19d7b806fd3a5cd0c6cee76f434ea965ad3f01a9
 SHA1 (patch-ag) = 6ab90c041962bf999f3cfb2a704e91e2a2f205ba
 SHA1 (patch-ah) = fec4ba7d20ca75c2a4dc5942270cab899776a741
-SHA1 (patch-ai) = 51a31b2205d7361c88d792517b500fd00990c8b0
+SHA1 (patch-ai) = 887f6378012853d2282c3c8c069043de32d02868
 SHA1 (patch-aj) = 49a8fa7b2061961f9a8a5993e2b8b06403798c08
diff -r 9de06d1c53e4 -r d5dbe40e2faf devel/kdevelop-base/patches/patch-ai
--- a/devel/kdevelop-base/patches/patch-ai      Sat Aug 15 16:47:25 2009 +0000
+++ b/devel/kdevelop-base/patches/patch-ai      Sat Aug 15 17:04:51 2009 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ai,v 1.5 2008/08/27 12:29:05 markd Exp $
+$NetBSD: patch-ai,v 1.6 2009/08/15 17:04:52 wiz Exp $
 
---- vcs/clearcase/clearcasemanipulator.cpp.orig        2008-08-20 06:14:51.000000000 +1200
+--- vcs/clearcase/clearcasemanipulator.cpp.orig        2008-03-30 00:56:29.000000000 +0000
 +++ vcs/clearcase/clearcasemanipulator.cpp
-@@ -20,7 +20,7 @@
+@@ -20,10 +20,10 @@
  #include <libgen.h>
  #include <errno.h>
  
@@ -10,4 +10,17 @@
 +#if defined(Q_OS_MACX) || defined(MACOSX) || defined(Q_OS_SOLARIS) || defined(Q_OS_FREEBSD) || defined(__NetBSD__) || defined(__DragonFly__)
  //this function is taken from GNU libc
  //it does not exist on macos
- int getline(char **lineptr, size_t *n, FILE *stream)
+-int getline(char **lineptr, size_t *n, FILE *stream)
++int get_line(char **lineptr, size_t *n, FILE *stream)
+ {
+     static char line[256];
+     char *ptr;
+@@ -95,7 +95,7 @@ VCSFileInfoMap* ClearcaseManipulator::re
+   char* line = NULL;
+   size_t numRead;
+   while (!feof(outputFile)) {
+-    getline(&line,&numRead,outputFile);
++    get_line(&line,&numRead,outputFile);
+ 
+     if (numRead > 0) {
+       int pos = 0;



Home | Main Index | Thread Index | Old Index