commit curlftpfs for openSUSE:Factory

2015-11-26 Thread h_root
Hello community,

here is the log from the commit of package curlftpfs for openSUSE:Factory 
checked in at 2015-11-26 17:03:42

Comparing /work/SRC/openSUSE:Factory/curlftpfs (Old)
 and  /work/SRC/openSUSE:Factory/.curlftpfs.new (New)


Package is "curlftpfs"

Changes:

--- /work/SRC/openSUSE:Factory/curlftpfs/curlftpfs.changes  2012-06-05 
15:30:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.curlftpfs.new/curlftpfs.changes 2015-11-26 
17:03:43.0 +0100
@@ -1,0 +2,6 @@
+Fri Nov 20 16:04:58 UTC 2015 - ernestophe...@googlemail.com
+
+- bug-955687.patch: fixed memory leak. openSUSE bug boo#955687
+  (Debian bug 587250)
+
+---

New:

  bug-955687.patch



Other differences:
--
++ curlftpfs.spec ++
--- /var/tmp/diff_new_pack.o0S92r/_old  2015-11-26 17:03:43.0 +0100
+++ /var/tmp/diff_new_pack.o0S92r/_new  2015-11-26 17:03:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package curlftpfs
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,7 @@
 Source: %{name}-%{version}.tar.bz2
 Patch:  bug-580609.patch
 Patch1: curlftpfs-needs-pthread
+Patch2: bug-955687.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  curl-devel
 BuildRequires:  fuse-devel
@@ -53,6 +54,7 @@
 %setup -q
 %patch
 %patch1 -p1
+%patch2
 
 %build
 autoreconf -fi

++ bug-955687.patch ++
Index: ftpfs.c
===
--- ftpfs.c.orig
+++ ftpfs.c
@@ -614,6 +614,8 @@ static void free_ftpfs_file(struct ftpfs
   sem_destroy(&fh->data_need);
   sem_destroy(&fh->data_written);
   sem_destroy(&fh->ready);
+  if (fh->buf.size) { buf_free(&fh->buf); }
+  if (fh->stream_buf.size) { buf_free(&fh->stream_buf); }
   free(fh);
 }
 



commit curlftpfs for openSUSE:Factory

2012-06-05 Thread h_root
Hello community,

here is the log from the commit of package curlftpfs for openSUSE:Factory 
checked in at 2012-06-05 15:30:00

Comparing /work/SRC/openSUSE:Factory/curlftpfs (Old)
 and  /work/SRC/openSUSE:Factory/.curlftpfs.new (New)


Package is "curlftpfs", Maintainer is "mszer...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/curlftpfs/curlftpfs.changes  2012-05-07 
22:46:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.curlftpfs.new/curlftpfs.changes 2012-06-05 
15:30:04.0 +0200
@@ -1,0 +2,6 @@
+Sat May 26 17:03:18 UTC 2012 - jeng...@inai.de
+
+- Remove redundant tags/sections from specfile
+- Parallel build with %_smp_mflags
+
+---



Other differences:
--
++ curlftpfs.spec ++
--- /var/tmp/diff_new_pack.3Oshyo/_old  2012-06-05 15:30:05.0 +0200
+++ /var/tmp/diff_new_pack.3Oshyo/_new  2012-06-05 15:30:05.0 +0200
@@ -57,14 +57,11 @@
 %build
 autoreconf -fi
 %configure
-make
+make %{?_smp_mflags}
 
 %install
 %{makeinstall}
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr (-, root, root)
 %{_bindir}/curlftpfs

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit curlftpfs for openSUSE:Factory

2012-05-07 Thread h_root
Hello community,

here is the log from the commit of package curlftpfs for openSUSE:Factory 
checked in at 2012-05-07 22:44:38

Comparing /work/SRC/openSUSE:Factory/curlftpfs (Old)
 and  /work/SRC/openSUSE:Factory/.curlftpfs.new (New)


Package is "curlftpfs", Maintainer is "mszer...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/curlftpfs/curlftpfs.changes  2011-10-03 
09:15:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.curlftpfs.new/curlftpfs.changes 2012-05-07 
22:46:50.0 +0200
@@ -1,0 +2,5 @@
+Mon May  7 02:36:39 UTC 2012 - je...@suse.com
+
+- curlftpfs requires building with -pthread
+
+---

New:

  curlftpfs-needs-pthread



Other differences:
--
++ curlftpfs.spec ++
--- /var/tmp/diff_new_pack.LGad95/_old  2012-05-07 22:46:51.0 +0200
+++ /var/tmp/diff_new_pack.LGad95/_new  2012-05-07 22:46:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package curlftpfs
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,21 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   curlftpfs
 Version:0.9.2
-Release:39
+Release:0
 Summary:Filesystem for mounting FTP hosts using FUSE and libcurl
 License:GPL-2.0+
-Url:http://curlftpfs.sourceforge.net/
 Group:  System/Filesystems
-AutoReqProv:on
+Url:http://curlftpfs.sourceforge.net/
 Source: %{name}-%{version}.tar.bz2
 Patch:  bug-580609.patch
+Patch1: curlftpfs-needs-pthread
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  curl-devel fuse-devel glib2-devel
+BuildRequires:  curl-devel
+BuildRequires:  fuse-devel
+BuildRequires:  glib2-devel
 BuildRequires:  libtool
 Requires:   fuse
 
@@ -52,6 +52,7 @@
 %prep
 %setup -q
 %patch
+%patch1 -p1
 
 %build
 autoreconf -fi

++ curlftpfs-needs-pthread ++
From: Jeff Mahoney 
Subject: curlftpfs: sem_post needs -pthread

curlftpfs calls sem_post, which needs to be built with -pthread
 
Signed-off-by: Jeff Mahoney 
---
 Makefile.am |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/Makefile.am
+++ b/Makefile.am
@@ -6,7 +6,8 @@ DIST_SUBDIRS = $(SUBDIRS) tests
 LIBICONV = @LIBICONV@
 
 AM_CPPFLAGS = -DFUSE_USE_VERSION=26
-AM_LDFLAGS = $(LIBICONV)
+AM_CFLAGS = -pthread
+AM_LDFLAGS = $(LIBICONV) -pthread
 
 bin_PROGRAMS = curlftpfs
 
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit curlftpfs for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package curlftpfs for openSUSE:Factory 
checked in at 2011-12-06 18:05:05

Comparing /work/SRC/openSUSE:Factory/curlftpfs (Old)
 and  /work/SRC/openSUSE:Factory/.curlftpfs.new (New)


Package is "curlftpfs", Maintainer is "mszer...@suse.com"

Changes:




Other differences:
--
++ curlftpfs.spec ++
--- /var/tmp/diff_new_pack.lS38Ry/_old  2011-12-06 18:08:01.0 +0100
+++ /var/tmp/diff_new_pack.lS38Ry/_new  2011-12-06 18:08:01.0 +0100
@@ -22,7 +22,7 @@
 Version:0.9.2
 Release:39
 Summary:Filesystem for mounting FTP hosts using FUSE and libcurl
-License:GPLv2+
+License:GPL-2.0+
 Url:http://curlftpfs.sourceforge.net/
 Group:  System/Filesystems
 AutoReqProv:on

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit curlftpfs for openSUSE:Factory

2011-10-03 Thread h_root

Hello community,

here is the log from the commit of package curlftpfs for openSUSE:Factory
checked in at Mon Oct 3 09:15:26 CEST 2011.




--- openSUSE:Factory/curlftpfs/curlftpfs.changes2011-09-23 
01:54:44.0 +0200
+++ curlftpfs/curlftpfs.changes 2011-09-30 22:11:16.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 30 20:07:52 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ curlftpfs.spec ++
--- /var/tmp/diff_new_pack.pdzqBf/_old  2011-10-03 09:15:23.0 +0200
+++ /var/tmp/diff_new_pack.pdzqBf/_new  2011-10-03 09:15:23.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package curlftpfs (Version 0.9.2)
+# spec file for package curlftpfs
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,6 +30,7 @@
 Patch:  bug-580609.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  curl-devel fuse-devel glib2-devel
+BuildRequires:  libtool
 Requires:   fuse
 
 %description

continue with "q"...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org