FreeBSD Bugzilla – Attachment 65238 Details for
Bug 96735
[UPDATE] devel/rudiments to 0.29
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
rudiments-0.29.diff
rudiments-0.29.diff (text/plain), 7.39 KB, created by
Rainer Alves
on 2006-05-03 22:40:16 UTC
(
hide
)
Description:
rudiments-0.29.diff
Filename:
MIME Type:
Creator:
Rainer Alves
Created:
2006-05-03 22:40:16 UTC
Size:
7.39 KB
patch
obsolete
>diff -ruN /usr/ports/devel/rudiments/Makefile devel/rudiments/Makefile >--- /usr/ports/devel/rudiments/Makefile Thu Feb 23 10:05:53 2006 >+++ devel/rudiments/Makefile Wed May 3 17:56:42 2006 >@@ -6,13 +6,12 @@ > # > > PORTNAME= rudiments >-PORTVERSION= 0.28.2 >-PORTREVISION= 1 >+PORTVERSION= 0.29 > CATEGORIES= devel > MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} > MASTER_SITE_SUBDIR= ${PORTNAME} > >-MAINTAINER= ports@FreeBSD.org >+MAINTAINER= rainer.alves@gmail.com > COMMENT= A utility C++ class library for daemons, clients, servers and more > > USE_GNOME= pkgconfig >diff -ruN /usr/ports/devel/rudiments/distinfo devel/rudiments/distinfo >--- /usr/ports/devel/rudiments/distinfo Fri Nov 25 10:35:54 2005 >+++ devel/rudiments/distinfo Wed May 3 17:56:52 2006 >@@ -1,3 +1,3 @@ >-MD5 (rudiments-0.28.2.tar.gz) = d8d206d35cd05f17b3212d2bcd57411f >-SHA256 (rudiments-0.28.2.tar.gz) = 661b61d10daf6ac3b706ae2d206459bc1cf4bc35e1d30d23c939408dbd5c82ca >-SIZE (rudiments-0.28.2.tar.gz) = 592825 >+MD5 (rudiments-0.29.tar.gz) = 5f823e39cb89b6bcd309e3628ba48d3e >+SHA256 (rudiments-0.29.tar.gz) = e3b10dbf5b33747ffa39587796df1fb9c300bcbf2e4095f7291bb4b8f3632b11 >+SIZE (rudiments-0.29.tar.gz) = 605753 >diff -ruN /usr/ports/devel/rudiments/files/patch-src-Makefile devel/rudiments/files/patch-src-Makefile >--- /usr/ports/devel/rudiments/files/patch-src-Makefile Sat May 21 03:48:18 2005 >+++ devel/rudiments/files/patch-src-Makefile Wed May 3 18:05:47 2006 >@@ -1,11 +1,11 @@ >---- src/Makefile.orig Mon May 9 01:11:53 2005 >-+++ src/Makefile Mon May 9 01:12:10 2005 >-@@ -334,7 +334,7 @@ >+--- src/Makefile.orig Sat Jan 21 22:29:25 2006 >++++ src/Makefile Wed May 3 18:04:50 2006 >+@@ -330,7 +330,7 @@ > rebuild: clean all > > librudiments.la: $(SRCS) $(LOBJS) >-- $(LIBTOOL) --mode=link $(CXX) -o $@ $(LOBJS) $(LDFLAGS) $(SOCKETLIBS) $(PTHREADLIB) $(SSLLIBS) $(PCRELIBS) $(NANOSLEEPLIB) $(CLOCKNANOSLEEPLIB) $(SHMOPENLIB) $(CRYPTLIB) $(DLLIB) -rpath $(libdir) -release $(RUDIMENTS_VERSION) -version-info $(SONAME_VERSION_INFO) -no-undefined >-+ $(LIBTOOL) --mode=link $(CXX) -o $@ $(LOBJS) $(LDFLAGS) $(SOCKETLIBS) $(PTHREADLIB) $(SSLLIBS) $(PCRELIBS) $(NANOSLEEPLIB) $(CLOCKNANOSLEEPLIB) $(SHMOPENLIB) $(CRYPTLIB) $(DLLIB) -rpath $(libdir) -version-info $(SONAME_VERSION_INFO) -no-undefined >+- $(LIBTOOL) --mode=link $(CXX) -o $@ $(LOBJS) $(LDFLAGS) $(SOCKETLIBS) $(PTHREADLIB) $(SSLLIBS) $(PCRELIBS) $(NANOSLEEPLIB) $(CLOCKNANOSLEEPLIB) $(SHMOPENLIB) $(CRYPTLIB) $(INETATONLIB) $(DLLIB) -rpath $(libdir) -release $(RUDIMENTS_VERSION) -version-info $(SONAME_VERSION_INFO) -no-undefined >++ $(LIBTOOL) --mode=link $(CXX) -o $@ $(LOBJS) $(LDFLAGS) $(SOCKETLIBS) $(PTHREADLIB) $(SSLLIBS) $(PCRELIBS) $(NANOSLEEPLIB) $(CLOCKNANOSLEEPLIB) $(SHMOPENLIB) $(CRYPTLIB) $(INETATONLIB) $(DLLIB) -rpath $(libdir) -version-info $(SONAME_VERSION_INFO) -no-undefined > > install: > $(MKINSTALLDIRS) $(libdir) >diff -ruN /usr/ports/devel/rudiments/files/patch-src_intervaltimer.C devel/rudiments/files/patch-src_intervaltimer.C >--- /usr/ports/devel/rudiments/files/patch-src_intervaltimer.C Tue Jan 31 08:23:33 2006 >+++ devel/rudiments/files/patch-src_intervaltimer.C Wed May 3 18:09:53 2006 >@@ -1,11 +1,11 @@ >---- src/intervaltimer.C.orig Tue Jan 31 20:22:04 2006 >-+++ src/intervaltimer.C Tue Jan 31 20:22:26 2006 >-@@ -111,7 +111,7 @@ >- // Some systems define tv_usec as something other than long so we need >- // to get a long and then let it auto-cast during assignment below. >+--- src/intervaltimer.C.orig Sat Sep 24 00:31:57 2005 >++++ src/intervaltimer.C Wed May 3 18:08:55 2006 >+@@ -134,7 +134,7 @@ >+ // assignment below. >+ long sec; > long usec; >-- bool retval=getTimeRemaining(&(tv->tv_sec),&usec); >-+ bool retval=getTimeRemaining((long*)(&tv->tv_sec),&usec); >+- bool retval=getTimeRemaining(&sec,&usec); >++ bool retval=getTimeRemaining((long*)(&sec),&usec); >+ tv->tv_sec=sec; > tv->tv_usec=usec; > return retval; >- } >diff -ruN /usr/ports/devel/rudiments/pkg-plist devel/rudiments/pkg-plist >--- /usr/ports/devel/rudiments/pkg-plist Thu Feb 23 10:05:53 2006 >+++ devel/rudiments/pkg-plist Wed May 3 18:18:54 2006 >@@ -6,7 +6,6 @@ > include/rudiments/clientserverfactory.h > include/rudiments/clientsocket.h > include/rudiments/commandline.h >-include/rudiments/container.h > include/rudiments/crypt.h > include/rudiments/daemonprocess.h > include/rudiments/datetime.h >@@ -40,6 +39,7 @@ > include/rudiments/private/characterincludes.h > include/rudiments/private/charstring.h > include/rudiments/private/charstringincludes.h >+include/rudiments/private/chat.h > include/rudiments/private/chatincludes.h > include/rudiments/private/client.h > include/rudiments/private/clientincludes.h >@@ -49,14 +49,13 @@ > include/rudiments/private/commandline.h > include/rudiments/private/commandlineincludes.h > include/rudiments/private/config.h >-include/rudiments/private/container.h >-include/rudiments/private/containerincludes.h > include/rudiments/private/crypt.h > include/rudiments/private/cryptincludes.h > include/rudiments/private/daemonprocess.h > include/rudiments/private/daemonprocessincludes.h > include/rudiments/private/datetime.h > include/rudiments/private/datetimeincludes.h >+include/rudiments/private/device.h > include/rudiments/private/deviceincludes.h > include/rudiments/private/dictionary.h > include/rudiments/private/dictionaryincludes.h >@@ -82,12 +81,15 @@ > include/rudiments/private/groupentryincludes.h > include/rudiments/private/hostentry.h > include/rudiments/private/hostentryincludes.h >+include/rudiments/private/inetclientsocket.h > include/rudiments/private/inetclientsocketincludes.h >+include/rudiments/private/inetserversocket.h > include/rudiments/private/inetserversocketincludes.h > include/rudiments/private/inetsocketutil.h > include/rudiments/private/inetsocketutilincludes.h > include/rudiments/private/intervaltimer.h > include/rudiments/private/intervaltimerincludes.h >+include/rudiments/private/inttypes.h > include/rudiments/private/linkedlist.h > include/rudiments/private/linkedlistincludes.h > include/rudiments/private/linkedlistinlines.h >@@ -104,7 +106,6 @@ > include/rudiments/private/memorymapincludes.h > include/rudiments/private/memorypool.h > include/rudiments/private/memorypoolincludes.h >-include/rudiments/private/memorypoolnode.h > include/rudiments/private/modemclient.h > include/rudiments/private/modemclientincludes.h > include/rudiments/private/modemserver.h >@@ -120,7 +121,6 @@ > include/rudiments/private/processincludes.h > include/rudiments/private/protocolentry.h > include/rudiments/private/protocolentryincludes.h >-include/rudiments/private/randomnumber.h > include/rudiments/private/randomnumberincludes.h > include/rudiments/private/rawbufferincludes.h > include/rudiments/private/regularexpression.h >@@ -130,9 +130,11 @@ > include/rudiments/private/rudimentsinlines.h > include/rudiments/private/semaphoreset.h > include/rudiments/private/semaphoresetincludes.h >+include/rudiments/private/serialport.h > include/rudiments/private/serialportincludes.h > include/rudiments/private/serialportprofile.h > include/rudiments/private/serialportprofileincludes.h >+include/rudiments/private/server.h > include/rudiments/private/serverincludes.h > include/rudiments/private/serversocket.h > include/rudiments/private/serversocketincludes.h >@@ -152,6 +154,7 @@ > include/rudiments/private/stringbufferincludes.h > include/rudiments/private/syslogdestination.h > include/rudiments/private/timezonefile.h >+include/rudiments/private/unixclientsocket.h > include/rudiments/private/unixclientsocketincludes.h > include/rudiments/private/unixserversocket.h > include/rudiments/private/unixserversocketincludes.h
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 96735
: 65238