Bug#797942: sentinella: build-depends on obsolete kdebase-workspace-dev

2015-10-14 Thread Carlos Olmedo Escobar
Hi.

I'm going to release a new version soon addressing all those issues.

Thanks for the heads up.


2015-10-11 17:29 GMT+02:00, Eriberto Mota :
> tags 797942 upstream
> thanks
>
>
> Hi Felix,
>
> Initially, sorry for my long delay.
>
> I think that the removal from testing is the best way at this time
> because the upstream is active. I added the upstream in Cc.
>
>
> Hi Carlos,
>
> Can you send us a light about this issue[1] and your future plans?
>
> [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797942
>
> Thanks a lot in advance.
>
> Regards,
>
> Eriberto
>
>
>
> 2015-10-02 12:52 GMT-03:00 Felix Geyer :
>> Control: severity -1 serious
>>
>> Raising severity to serious as kde-workspace is finally going away.
>>
>> sentinella doesn't seem to build without it so maybe removal is the right
>> option?
>> Unless it's being ported of course.
>>
>> Cheers,
>> Felix
>



Bug#593018: libsysactivity: FTBFS: tests failed

2010-08-16 Thread Carlos Olmedo Escobar
The library was copying the swap structures badly. Attached is a patch
file that fixes the issue.

Thanks.
--- ./memory.c	2010-08-16 16:28:21.623394753 +0200
+++ ProgramaciĆ³n/workspace/libsysactivity/src/Linux/memory.c	2010-08-16 16:18:16.863387894 +0200
@@ -157,12 +157,12 @@
 
 	*written = 0;
 	int i;
-	for (i = 0; i < dst_size; i++) {
-		if (fgets(line_buffer, sizeof line_buffer, file_swaps) == NULL)
-			return EIO;
+	for (i = 0; fgets(line_buffer, sizeof line_buffer, file_swaps) != NULL; i++) {
+		if (i >= dst_size)
+			return ENOMEM;
 
 		errno = 0;
-		parse_swap(dst, line_buffer);
+		parse_swap(&dst[i], line_buffer);
 		if (errno != 0)
 			return ENOSYS;