Hello community,

here is the log from the commit of package libvshadow for openSUSE:Factory 
checked in at 2013-05-02 11:22:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libvshadow (Old)
 and      /work/SRC/openSUSE:Factory/.libvshadow.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libvshadow"

Changes:
--------
New Changes file:

--- /dev/null   2013-04-05 00:01:41.916011506 +0200
+++ /work/SRC/openSUSE:Factory/.libvshadow.new/libvshadow.changes       
2013-05-02 11:22:39.000000000 +0200
@@ -0,0 +1,16 @@
+-------------------------------------------------------------------
+Wed Apr 17 16:20:08 UTC 2013 - [email protected]
+
+- update to 0~20130413
+- make specfile more consistent with the other Joachim Metz packages in 
openSUSE
+  * change version from 0.0.0~%{timestamp} to 0~%{timestamp}
+  * move developer docs to devel package
+  * add BuildRequires for the internally provided libs
+- add Volume_Shadow_Snapshot_(VSS)_format.pdf to devel package
+
+
+-------------------------------------------------------------------
+Wed Mar 27 17:21:57 UTC 2013 - [email protected]
+
+- initial package 0~20130304
+

New:
----
  Paper_-_Windowless_Shadow_Snapshots.pdf
  Slides_-_Windowless_Shadow_Snapshots.pdf
  Volume_Shadow_Snapshot_(VSS)_format.pdf
  libvshadow-alpha-20130413.tar.gz
  libvshadow.changes
  libvshadow.spec

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

Other differences:
------------------
++++++ libvshadow.spec ++++++
#
# spec file for package libvshadow
#
# Copyright (c) 2013 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           libvshadow
%define lname   libvshadow1
%define timestamp       20130413
Version:        0~%{timestamp}
Release:        0
License:        LGPL-3.0+ and GFDL-1.3+
Summary:        Library to access the Volume Shadow Snapshot (VSS) format
Group:          System/Filesystems
Url:            http://code.google.com/p/libvshadow/
Source0:        
http://libvshadow.googlecode.com/files/libvshadow-alpha-%{timestamp}.tar.gz
Source1:        Paper_-_Windowless_Shadow_Snapshots.pdf
Source2:        Slides_-_Windowless_Shadow_Snapshots.pdf
Source3:        Volume_Shadow_Snapshot_(VSS)_format.pdf
BuildRequires:  pkg-config
BuildRequires:  python-devel


BuildRequires:  pkgconfig(libcsplit) >= 20120701
BuildRequires:  pkgconfig(libbfio)   < 20120426
# These packages from factory cause build failures, use the internal version
#BuildRequires:  pkgconfig(libuna)  >= 20120425
#BuildRequires:  pkgconfig(libcnotify)
#BuildRequires:  pkgconfig(libcerror)
#BuildRequires:  pkgconfig(libcfile)
#BuildRequires:  pkgconfig(libcpath)
#BuildRequires:  pkgconfig(libclocale)
#BuildRequires:  pkgconfig(libcdata)
# These packages are not yet in factory
#BuildRequires:  pkgconfig(libcmulti)
#BuildRequires:  pkgconfig(libcstring)
#BuildRequires:  pkgconfig(libcsystem)
#BuildRequires:  pkgconfig(libfdatetime)
#BuildRequires:  pkgconfig(libfguid)

%description
Library and tools to access the Volume Shadow Snapshot (VSS) format. The VSS 
format is used by Windows, as of Vista, to maintain copies of data on a storage 
media volume.

The devel package contains:

    OSDFC 2012: Paper - Windowless Shadow Snapshots
    OSDFC 2012: Slides - Windowless Shadow Snapshots 
    Volume_Shadow_Snapshot_(VSS)_format.pdf

%package -n %{lname}
Summary:        Library and tools to access the Volume Shadow Snapshot (VSS) 
format
License:        LGPL-3.0+
Group:          System/Libraries

%description -n %{lname}
Library and tools to access the Volume Shadow Snapshot (VSS) format. The VSS 
format is used by Windows, as of Vista, to maintain copies of data on a storage 
media volume.

The package contains %{_docdir}/%{name}:

    OSDFC 2012: Paper - Windowless Shadow Snapshots
    OSDFC 2012: Slides - Windowless Shadow Snapshots 

%package        tools
Summary:        Tools to access the Volume Shadow Snapshot (VSS) format
License:        LGPL-3.0+
Group:          System/Filesystems

%description    tools
Tools to access the Volume Shadow Snapshot (VSS) format. The VSS format is used 
by Windows, as of Vista, to maintain copies of data on a storage media volume.
 
%package        devel
Summary:        Development files for %{name}
License:        LGPL-3.0+ and GFDL-1.3+
Group:          Development/Libraries/C and C++
Requires:       %{lname} = %{version}

%description    devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.

%package        -n python-%{name}
Summary:        Python binding for libvshadow
License:        LGPL-3.0+
Group:          Development/Libraries/Python
Requires:       %{lname} = %{version}
Requires:       python

%description    -n python-%{name}
Python binding for libvshadow.  libvshadow can read windows event files

%prep
%setup -q -n libvshadow-%{timestamp}
mkdir doc
cp %SOURCE1 .
cp %SOURCE2 .
cp "%SOURCE3" .

%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
export CXXFLAGS="%{optflags}"
%configure --disable-static --enable-wide-character-type --enable-python

make %{?_smp_mflags}

%install
# maintain SLES compatibility
make install DESTDIR="%buildroot"
find %{buildroot} -name '*.la' -exec rm -f {} ';'

%post -n %{lname} -p /sbin/ldconfig

%postun -n %{lname} -p /sbin/ldconfig

%files -n %{lname}
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog ABOUT-NLS
%doc doc
%{_libdir}/*.so.*

%files tools
%defattr(-,root,root,-)
%{_bindir}/vshadow*
%{_mandir}/man1/*.gz

%files devel
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog ABOUT-NLS
%doc Paper_-_Windowless_Shadow_Snapshots.pdf
%doc Slides_-_Windowless_Shadow_Snapshots.pdf
%doc Volume_Shadow_Snapshot_*.pdf
%{_includedir}/libvshadow.h
%{_includedir}/libvshadow/
%{_libdir}/*.so
%{_libdir}/pkgconfig/libvshadow.pc
%{_mandir}/man3/*.gz

%files -n python-%{name}
%defattr(644,root,root,755)
%doc AUTHORS COPYING README
%{python_sitearch}/*.so

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

Reply via email to