Hello community,

here is the log from the commit of package archivemount for openSUSE:Factory 
checked in at 2014-12-21 12:04:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/archivemount (Old)
 and      /work/SRC/openSUSE:Factory/.archivemount.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "archivemount"

Changes:
--------
--- /work/SRC/openSUSE:Factory/archivemount/archivemount.changes        
2012-10-23 19:35:18.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.archivemount.new/archivemount.changes   
2014-12-21 12:04:24.000000000 +0100
@@ -1,0 +2,12 @@
+Tue Dec 16 22:07:30 UTC 2014 - [email protected]
+
+- Update to version 0.8.3
+  + do not call fuse_main anymore
+  + force fuse into single-threaded mode due to libarchive not being
+         thread-safe
+- Adapt patch to upstream changes
+  + archivemount-0.6.2.607cd0d.dif  > archivemount-0.8.3.dif
+- Use download Url as source
+- Remove redundant %clean section
+
+-------------------------------------------------------------------

Old:
----
  archivemount-0.6.2.607cd0d.dif
  archivemount-0.6.2.607cd0d.tar.gz

New:
----
  archivemount-0.8.3.dif
  archivemount-0.8.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ archivemount.spec ++++++
--- /var/tmp/diff_new_pack.Rlc0Iu/_old  2014-12-21 12:04:24.000000000 +0100
+++ /var/tmp/diff_new_pack.Rlc0Iu/_new  2014-12-21 12:04:24.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package archivemount
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -16,7 +16,7 @@
 #
 
 Name:           archivemount
-Version:        0.6.2.607cd0d
+Version:        0.8.3
 Release:        0
 Summary:        Archivemount - mounts an archive for access as a file system
 Group:          Productivity/Archiving/Compression
@@ -27,8 +27,8 @@
 BuildRequires:  fuse-devel
 BuildRequires:  libarchive-devel
 BuildRequires:  pkg-config
-Source:         archivemount-0.6.2.607cd0d.tar.gz
-Patch:          archivemount-0.6.2.607cd0d.dif
+Source:         
http://www.cybernoia.de/software/archivemount/%{name}-%{version}.tar.gz
+Patch:          archivemount-%{version}.dif
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -98,9 +98,6 @@
 %install
 %makeinstall
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root,0755)
 %doc CHANGELOG README COPYING

++++++ archivemount-0.6.2.607cd0d.dif -> archivemount-0.8.3.dif ++++++
--- /work/SRC/openSUSE:Factory/archivemount/archivemount-0.6.2.607cd0d.dif      
2012-10-23 19:35:18.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.archivemount.new/archivemount-0.8.3.dif 
2014-12-21 12:04:24.000000000 +0100
@@ -1,21 +1,7 @@
 --- archivemount.c
 +++ archivemount.c     2012-10-22 10:06:32.970796667 +0000
-@@ -114,8 +114,13 @@ static struct fuse_opt ar_opts[] =
-  /* globals */
- /***********/
- 
-+#if defined(__GNUC__) && defined(__SUPPORT_TS_ANNOTATION__)
- #define GUARDED_BY(x)          __attribute__ ((guarded_by(x)))
- #define GUARDED_VAR            __attribute__ ((guarded))
-+#else
-+#define GUARDED_BY(x)
-+#define GUARDED_VAR
-+#endif
- 
- static NODE *root          GUARDED_BY(lock);     /* root node                 
       */
- static int archiveFd       GUARDED_BY(fdLock);   /* file descriptor of 
archive file. */
-@@ -2586,7 +2591,8 @@ main( int argc, char **argv )
-       fuse_ret = fuse_main( args.argc, args.argv, &ar_oper, NULL );
+@@ -2488,7 +2488,8 @@
+ #endif
  
        /* go back to saved dir */
 -      fchdir( oldpwd );
@@ -23,22 +9,19 @@
 +              perror( "can not go back to old pwd" );
  
        /* save changes if modified */
-       if( archiveWriteable && !options.readonly && archiveModified ) {
+       if( archiveWriteable && !options.readonly && archiveModified && 
!options.nosave ) {
 --- configure.ac
 +++ configure.ac       2012-10-22 09:31:04.098425692 +0000
-@@ -1,8 +1,9 @@
- # Process this file with autoconf to produce a configure script
- 
--AC_INIT([archivemount],[0.6.1], [[email protected]]) 
-+AC_INIT([archivemount],[0.6.2], [[email protected]]) 
+@@ -3,6 +3,7 @@
+ AC_INIT([archivemount],[0.8.3], [[email protected]]) 
  AM_INIT_AUTOMAKE([-Wall -Werror foreign])
  AC_PROG_CC 
 +AM_PROG_CC_C_O
  
  AC_CONFIG_HEADERS([config.h]) 
  AC_CONFIG_FILES([Makefile archivemount.1]) 
-@@ -11,8 +12,6 @@ AC_CONFIG_FILES([Makefile archivemount.1
- RELEASE_DATE="1 November 2008"
+@@ -11,8 +12,6 @@
+ RELEASE_DATE="15 August 2013"
  AC_SUBST(RELEASE_DATE)
  
 -CFLAGS=
@@ -46,3 +29,4 @@
  # Check for libfuse
  PKG_CHECK_EXISTS(fuse)
  PKG_CHECK_MODULES([FUSE], [fuse >= 2.6],,
+ 
\ No newline at end of file

++++++ archivemount-0.6.2.607cd0d.tar.gz -> archivemount-0.8.3.tar.gz ++++++
++++ 11698 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to