commit libevtx for openSUSE:Factory

2020-05-06 Thread root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2020-05-06 11:05:43

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


Package is "libevtx"

Wed May  6 11:05:43 2020 rev:17 rq:800525 version:0~20191221

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2020-04-09 
23:15:11.598235431 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new.2738/libevtx.changes
2020-05-06 11:05:45.855455477 +0200
@@ -1,0 +2,6 @@
+Tue May  5 11:09:56 UTC 2020 - Dominique Leuenberger 
+
+- Allow distros to disable python2 bindings (bcond_without):
+  Tumbleweed already declares this, as python2 is EOL.
+
+---



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.Fh6OKq/_old  2020-05-06 11:05:46.615457108 +0200
+++ /var/tmp/diff_new_pack.Fh6OKq/_new  2020-05-06 11:05:46.615457108 +0200
@@ -16,6 +16,7 @@
 #
 
 
+%bcond_without python2
 Name:   libevtx
 %define lname  libevtx1
 %define timestamp  20191221
@@ -28,7 +29,9 @@
 Source: 
https://github.com/libyal/libevtx/releases/download/%timestamp/%name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_EVTX.pdf
 BuildRequires:  pkg-config
+%if %{with python2}
 BuildRequires:  python-devel
+%endif
 #latest version of these in OBS as of Jan 28, 2016
 BuildRequires:  pkgconfig(libbfio) >= 20160108
 BuildRequires:  pkgconfig(libcdata) >= 20130407
@@ -119,7 +122,13 @@
 cp "%SOURCE2" .
 
 %build
-%configure --disable-static --enable-wide-character-type --enable-python2 
--enable-python3
+%configure \
+--disable-static \
+--enable-wide-character-type \
+%if %{with python2}
+--enable-python2 \
+%endif
+--enable-python3
 make %{?_smp_mflags}
 
 %install
@@ -149,11 +158,13 @@
 %_libdir/pkgconfig/libevtx.pc
 %_mandir/man3/libevtx.3*
 
+%if %{with python2}
 %files -n python2-%name
 %defattr(-,root,root)
 %doc AUTHORS README
 %license COPYING 
 %python2_sitearch/pyevtx.so
+%endif
 
 %files -n python3-%name
 %defattr(-,root,root)




commit libevtx for openSUSE:Factory

2020-04-09 Thread root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2020-04-09 23:15:09

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


Package is "libevtx"

Thu Apr  9 23:15:09 2020 rev:16 rq:792571 version:0~20191221

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2019-06-12 
13:09:26.357104391 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new.3248/libevtx.changes
2020-04-09 23:15:11.598235431 +0200
@@ -1,0 +2,9 @@
+Tue Apr  7 18:49:27 UTC 2020 - Greg Freemyer 
+
+- update to v0~20191221
+* Added binary XML creation time to API and evtxexport #21
+* worked on tests
+- rename python-libevtx to python2-libevtx
+- add python3 subpackage
+
+---

Old:

  libevtx-alpha-20181227.tar.gz

New:

  libevtx-alpha-20191221.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.P8ihm0/_old  2020-04-09 23:15:12.242235803 +0200
+++ /var/tmp/diff_new_pack.P8ihm0/_new  2020-04-09 23:15:12.246235805 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtx
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20181227
+%define timestamp  20191221
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
 License:LGPL-3.0-or-later AND GFDL-1.3-only
 Group:  Productivity/File utilities
-Url:https://github.com/libyal/libevtx/wiki
+URL:https://github.com/libyal/libevtx/wiki
 Source: 
https://github.com/libyal/libevtx/releases/download/%timestamp/%name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_EVTX.pdf
 BuildRequires:  pkg-config
@@ -92,15 +92,26 @@
 This subpackage contains libraries and header files for developing
 applications that want to make use of %name.
 
-%package -n python-%name
+%package -n python2-%name
+Summary:Python2 bindings for libevtx
+License:LGPL-3.0-or-later
+Group:  Development/Libraries/Python
+Requires:   %lname = %version
+BuildRequires:  pkgconfig(python2)
+Obsoletes:  pyevtx <= 20191221
+Obsoletes:  python-%name <= 20191221
+
+%description -n python2-%name
+Python bindings for libevtx, which can read Windows XML Event files.
+
+%package -n python3-%name
 Summary:Python bindings for libevtx
 License:LGPL-3.0-or-later
 Group:  Development/Libraries/Python
 Requires:   %lname = %version
-Requires:   python
-Provides:   pyevtx = %version
+BuildRequires:  pkgconfig(python3)
 
-%description -n python-%name
+%description -n python3-%name
 Python bindings for libevtx, which can read Windows XML Event files.
 
 %prep
@@ -108,7 +119,7 @@
 cp "%SOURCE2" .
 
 %build
-%configure --disable-static --enable-wide-character-type --enable-python
+%configure --disable-static --enable-wide-character-type --enable-python2 
--enable-python3
 make %{?_smp_mflags}
 
 %install
@@ -138,10 +149,16 @@
 %_libdir/pkgconfig/libevtx.pc
 %_mandir/man3/libevtx.3*
 
-%files -n python-%name
+%files -n python2-%name
+%defattr(-,root,root)
+%doc AUTHORS README
+%license COPYING 
+%python2_sitearch/pyevtx.so
+
+%files -n python3-%name
 %defattr(-,root,root)
 %doc AUTHORS README
 %license COPYING 
-%python_sitearch/pyevtx.so
+%python3_sitearch/pyevtx.so
 
 %changelog

++ libevtx-alpha-20181227.tar.gz -> libevtx-alpha-20191221.tar.gz ++
 67645 lines of diff (skipped)




commit libevtx for openSUSE:Factory

2019-06-12 Thread root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2019-06-12 13:09:22

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


Package is "libevtx"

Wed Jun 12 13:09:22 2019 rev:15 rq:696084 version:0~20181227

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2016-02-17 
12:14:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new.4811/libevtx.changes
2019-06-12 13:09:26.357104391 +0200
@@ -1,0 +2,10 @@
+Thu Mar 28 17:20:30 UTC 2019 - Greg Freemyer 
+
+- update to v0~20181227
+   * work on python bindings
+   * code clean-up
+   * documentation fixes
+   * Added fallback for caseless wide string compare
+   * address libfdata API changes
+
+---

Old:

  Windows_XML_Event_Log_(EVTX).pdf
  libevtx-alpha-20160107.tar.gz

New:

  Windows_XML_Event_Log_EVTX.pdf
  libevtx-alpha-20181227.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.v2naoG/_old  2019-06-12 13:09:28.221103607 +0200
+++ /var/tmp/diff_new_pack.v2naoG/_new  2019-06-12 13:09:28.257103592 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtx
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,21 +12,21 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20160107
+%define timestamp  20181227
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
-License:LGPL-3.0+ and GFDL-1.3
+License:LGPL-3.0-or-later AND GFDL-1.3-only
 Group:  Productivity/File utilities
 Url:https://github.com/libyal/libevtx/wiki
 Source: 
https://github.com/libyal/libevtx/releases/download/%timestamp/%name-alpha-%timestamp.tar.gz
-Source2:Windows_XML_Event_Log_(EVTX).pdf
+Source2:Windows_XML_Event_Log_EVTX.pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
 #latest version of these in OBS as of Jan 28, 2016
@@ -65,7 +65,7 @@
 
 %package -n %lname
 Summary:Library to access the Windows XML Event Log (EVTX) format
-License:LGPL-3.0+
+License:LGPL-3.0-or-later
 Group:  System/Libraries
 
 %description -n %lname
@@ -74,7 +74,7 @@
 
 %package tools
 Summary:Utilities to export events from Windows XML event files (EVTX)
-License:LGPL-3.0+
+License:LGPL-3.0-or-later
 Group:  Productivity/File utilities
 
 %description tools
@@ -82,7 +82,7 @@
 
 %package devel
 Summary:Development files for libevtx, a Windows XML Event file parser
-License:LGPL-3.0+ and GFDL-1.3
+License:LGPL-3.0-or-later AND GFDL-1.3-only
 Group:  Development/Libraries/C and C++
 Requires:   %lname = %version
 
@@ -94,7 +94,7 @@
 
 %package -n python-%name
 Summary:Python bindings for libevtx
-License:LGPL-3.0+
+License:LGPL-3.0-or-later
 Group:  Development/Libraries/Python
 Requires:   %lname = %version
 Requires:   python
@@ -120,7 +120,8 @@
 
 %files -n %lname
 %defattr(-,root,root)
-%doc AUTHORS COPYING ChangeLog
+%doc AUTHORS ChangeLog
+%license COPYING 
 %_libdir/libevtx.so.*
 
 %files tools
@@ -139,7 +140,8 @@
 
 %files -n python-%name
 %defattr(-,root,root)
-%doc AUTHORS COPYING README
+%doc AUTHORS README
+%license COPYING 
 %python_sitearch/pyevtx.so
 
 %changelog

++ libevtx-alpha-20160107.tar.gz -> libevtx-alpha-20181227.tar.gz ++
 234368 lines of diff (skipped)




commit libevtx for openSUSE:Factory

2016-02-17 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2016-02-17 10:26:48

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2016-02-09 
13:31:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2016-02-17 
12:14:10.0 +0100
@@ -12,0 +13 @@
+- use internal libfwevt.  fixes failures found in integration testing with 
plaso



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.Ok4ZJQ/_old  2016-02-17 12:14:11.0 +0100
+++ /var/tmp/diff_new_pack.Ok4ZJQ/_new  2016-02-17 12:14:11.0 +0100
@@ -29,32 +29,34 @@
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
-BuildRequires:  pkgconfig(libbfio) >= 20121003
+#latest version of these in OBS as of Jan 28, 2016
+BuildRequires:  pkgconfig(libbfio) >= 20160108
 BuildRequires:  pkgconfig(libcdata) >= 20130407
 BuildRequires:  pkgconfig(libcdirectory) >= 20120425
 BuildRequires:  pkgconfig(libcfile) >= 20130609
-BuildRequires:  pkgconfig(libclocale) >= 20130609
-BuildRequires:  pkgconfig(libcnotify) >= 20130609
+BuildRequires:  pkgconfig(libclocale) >= 20150101
+BuildRequires:  pkgconfig(libcnotify) >= 20150101
 BuildRequires:  pkgconfig(libcpath) >= 20130609
 BuildRequires:  pkgconfig(libcsplit) >= 20130609
-BuildRequires:  pkgconfig(libcsystem) >= 20120425
+BuildRequires:  pkgconfig(libcsystem) >= 20150629
 BuildRequires:  pkgconfig(libexe) >= 20120405
 BuildRequires:  pkgconfig(libfcache) >= 20120405
 BuildRequires:  pkgconfig(libfdata) >= 20120405
-BuildRequires:  pkgconfig(libfwevt) >= 20120426
 BuildRequires:  pkgconfig(libregf) >= 20140803
 BuildRequires:  pkgconfig(libuna) >= 20130609
 BuildRequires:  pkgconfig(libwrc) >= 20140803
+
 #testing fails if the factory package is used, use the internal version
-#verified 1/12/2015
-#BuildRequires:  pkgconfig(libfdatetime) > 20150101
-#BuildRequires:  pkgconfig(libfguid) > 20150101
-#BuildRequires:  pkgconfig(libfvalue) > 20150101
-#BuildRequires:  pkgconfig(libfwnt) > 20150101
+#verified 2/2/2016
+#BuildRequires:  pkgconfig(libfvalue) > 20151226
+#BuildRequires:  pkgconfig(libfguid) >= 20150104
+#BuildRequires:  pkgconfig(libfdatetime) >= 20150507
+#BuildRequires:  pkgconfig(libfwnt) >= 20151206
+#BuildRequires:  pkgconfig(libfwevt) >= 20160103
 #build fails if the factory package is used, use the internal version
-#verified 1/12/2015
+#verified 1/28/2016
 #BuildRequires:  pkgconfig(libcstring) > 20150101
-#BuildRequires:  pkgconfig(libcerror) > 20150101
+#BuildRequires:  pkgconfig(libcerror) > 20150407
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description




commit libevtx for openSUSE:Factory

2016-02-09 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2016-02-09 13:31:39

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2015-01-30 
15:07:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2016-02-09 
13:31:40.0 +0100
@@ -1,0 +2,13 @@
+Tue Jan 26 16:37:33 UTC 2016 - greg.freem...@gmail.com
+
+- update to v0~20160107
+   * 2016 update
+   * worked on Python 3 support
+   * Worked on format support
+   * applied updates
+   * worked on Python bindings
+   * updated m4 scripts
+   * changed version for pypi repacking
+   * worked on setup.py
+
+---

Old:

  libevtx-alpha-20150105.tar.gz

New:

  libevtx-alpha-20160107.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.ZxTHxg/_old  2016-02-09 13:31:41.0 +0100
+++ /var/tmp/diff_new_pack.ZxTHxg/_new  2016-02-09 13:31:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtx
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -18,7 +18,7 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20150105
+%define timestamp  20160107
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format

++ libevtx-alpha-20150105.tar.gz -> libevtx-alpha-20160107.tar.gz ++
 38576 lines of diff (skipped)




commit libevtx for openSUSE:Factory

2015-01-30 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2015-01-30 15:07:01

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2014-12-23 
11:49:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2015-01-30 
15:07:04.0 +0100
@@ -1,0 +2,12 @@
+Mon Jan 12 23:03:32 UTC 2015 - greg.freem...@gmail.com
+
+- update to v0~20150105
+   * 2015 update
+   * worked on Python 3 support
+   * worked on tests
+   * code clean up
+- Use libyal packages from OBS where appropriate
+   * test the builds by running "run_tests.py" from the plaso tarball
+   * don't use OBS packages thst introduce test failures.
+
+---

Old:

  libevtx-alpha-20141112.tar.gz

New:

  libevtx-alpha-20150105.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.YTjeAN/_old  2015-01-30 15:07:05.0 +0100
+++ /var/tmp/diff_new_pack.YTjeAN/_new  2015-01-30 15:07:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtx
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -18,43 +18,43 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20141112
+%define timestamp  20150105
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
 License:LGPL-3.0+ and GFDL-1.3
 Group:  Productivity/File utilities
 Url:https://github.com/libyal/libevtx/wiki
-Source: 
https://github.com/libyal/libevtx/releases/download/20141112/libevtx-alpha-20141112.tar.gz
+Source: 
https://github.com/libyal/libevtx/releases/download/%timestamp/%name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
 BuildRequires:  pkgconfig(libbfio) >= 20121003
 BuildRequires:  pkgconfig(libcdata) >= 20130407
+BuildRequires:  pkgconfig(libcdirectory) >= 20120425
 BuildRequires:  pkgconfig(libcfile) >= 20130609
 BuildRequires:  pkgconfig(libclocale) >= 20130609
 BuildRequires:  pkgconfig(libcnotify) >= 20130609
 BuildRequires:  pkgconfig(libcpath) >= 20130609
 BuildRequires:  pkgconfig(libcsplit) >= 20130609
+BuildRequires:  pkgconfig(libcsystem) >= 20120425
+BuildRequires:  pkgconfig(libexe) >= 20120405
+BuildRequires:  pkgconfig(libfcache) >= 20120405
+BuildRequires:  pkgconfig(libfdata) >= 20120405
+BuildRequires:  pkgconfig(libfwevt) >= 20120426
 BuildRequires:  pkgconfig(libregf) >= 20140803
 BuildRequires:  pkgconfig(libuna) >= 20130609
+BuildRequires:  pkgconfig(libwrc) >= 20140803
 #testing fails if the factory package is used, use the internal version
-#BuildRequires:  pkgconfig(libfdatetime) > 20140103
-#BuildRequires:  pkgconfig(libfguid) > 20140105
+#verified 1/12/2015
+#BuildRequires:  pkgconfig(libfdatetime) > 20150101
+#BuildRequires:  pkgconfig(libfguid) > 20150101
+#BuildRequires:  pkgconfig(libfvalue) > 20150101
+#BuildRequires:  pkgconfig(libfwnt) > 20150101
 #build fails if the factory package is used, use the internal version
-#verified 08/13/2014
-#BuildRequires:  pkgconfig(libcerror) >= 20140105
-#BuildRequires:  pkgconfig(libwrc) >= 20140803
-#packages not yet released by upstream
-#BuildRequires:  pkgconfig(libcstring) >= 20120425
-#BuildRequires:  pkgconfig(libcsystem) >= 20120425
-#BuildRequires:  pkgconfig(libcdirectory) >= 20120425
-#BuildRequires:  pkgconfig(libfvalue) >= 20120428
-#BuildRequires:  pkgconfig(libfwevt) >= 20120426
-#BuildRequires:  pkgconfig(libfwnt) >= 20120426
-#BuildRequires:  pkgconfig(libexe) >= 20120405
-#BuildRequires:  pkgconfig(libfcache) >= 20120405
-#BuildRequires:  pkgconfig(libfdata) >= 20120405
+#verified 1/12/2015
+#BuildRequires:  pkgconfig(libcstring) > 20150101
+#BuildRequires:  pkgconfig(libcerror) > 20150101
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ libevtx-alpha-20141112.tar.gz -> libevtx-alpha-20150105.tar.gz ++
 16760 lines of diff (skipped)

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



commit libevtx for openSUSE:Factory

2014-12-23 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2014-12-23 11:51:00

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2014-09-28 
19:54:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2014-12-23 
11:49:42.0 +0100
@@ -1,0 +2,9 @@
+Mon Dec 22 22:03:47 UTC 2014 - greg.freem...@gmail.com
+
+- update to 0~20141112
+   * changes to expose the event identifier qualifiers in the python 
bindings
+   * updated dependencies and corresponding changes
+   * update Python-bindings tests
+- update URL and Source fields to use the new github site
+
+---

Old:

  libevtx-alpha-20140901.tar.gz

New:

  libevtx-alpha-20141112.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.NkSUgZ/_old  2014-12-23 11:49:43.0 +0100
+++ /var/tmp/diff_new_pack.NkSUgZ/_new  2014-12-23 11:49:43.0 +0100
@@ -18,14 +18,14 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20140901
+%define timestamp  20141112
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
 License:LGPL-3.0+ and GFDL-1.3
 Group:  Productivity/File utilities
-Url:http://code.google.com/p/libevtx/
-Source: 
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20140901.tar.gz
+Url:https://github.com/libyal/libevtx/wiki
+Source: 
https://github.com/libyal/libevtx/releases/download/20141112/libevtx-alpha-20141112.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel

++ libevtx-alpha-20140901.tar.gz -> libevtx-alpha-20141112.tar.gz ++
 18546 lines of diff (skipped)

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



commit libevtx for openSUSE:Factory

2014-09-28 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2014-09-28 19:54:09

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2014-09-03 
20:14:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2014-09-28 
19:54:33.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 19 19:44:43 UTC 2014 - greg.freem...@gmail.com
+
+- update to 0~20140901
+   * bug fix in Python-bindings
+- update Source: field to have fullpath, delete DL_URL
+
+---

Old:

  libevtx-alpha-20140731.tar.gz

New:

  libevtx-alpha-20140901.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.NOmg3Z/_old  2014-09-28 19:54:34.0 +0200
+++ /var/tmp/diff_new_pack.NOmg3Z/_new  2014-09-28 19:54:34.0 +0200
@@ -18,16 +18,14 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20140731
+%define timestamp  20140901
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
 License:LGPL-3.0+ and GFDL-1.3
 Group:  Productivity/File utilities
 Url:http://code.google.com/p/libevtx/
-
-#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20140731.tar.gz
-Source: %name-alpha-%timestamp.tar.gz
+Source: 
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20140901.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel

++ libevtx-alpha-20140731.tar.gz -> libevtx-alpha-20140901.tar.gz ++
 2506 lines of diff (skipped)

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



commit libevtx for openSUSE:Factory

2014-09-03 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2014-09-03 18:22:10

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2014-08-14 
14:58:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2014-09-03 
20:14:15.0 +0200
@@ -1,0 +2,14 @@
+Thu Aug 28 21:55:22 UTC 2014 - greg.freem...@gmail.com
+
+- testing failed, passes if these 2 internal packages are used
+   * libfguid
+   * libfdatetime
+
+---
+Tue Aug 26 16:37:59 UTC 2014 - greg.freem...@gmail.com
+
+- add these 2 lines to python sub-project to ensure proper syncronization 
between versions
+   * Requires: %lname = %version
+   * Provides: pyevtx = %version
+
+---



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.aWPFxP/_old  2014-09-03 20:14:17.0 +0200
+++ /var/tmp/diff_new_pack.aWPFxP/_new  2014-09-03 20:14:18.0 +0200
@@ -38,10 +38,11 @@
 BuildRequires:  pkgconfig(libcnotify) >= 20130609
 BuildRequires:  pkgconfig(libcpath) >= 20130609
 BuildRequires:  pkgconfig(libcsplit) >= 20130609
-BuildRequires:  pkgconfig(libfdatetime) >= 20130317
-BuildRequires:  pkgconfig(libfguid) >= 20130317
 BuildRequires:  pkgconfig(libregf) >= 20140803
 BuildRequires:  pkgconfig(libuna) >= 20130609
+#testing fails if the factory package is used, use the internal version
+#BuildRequires:  pkgconfig(libfdatetime) > 20140103
+#BuildRequires:  pkgconfig(libfguid) > 20140105
 #build fails if the factory package is used, use the internal version
 #verified 08/13/2014
 #BuildRequires:  pkgconfig(libcerror) >= 20140105
@@ -95,7 +96,9 @@
 Summary:Python bindings for libevtx
 License:LGPL-3.0+
 Group:  Development/Libraries/Python
+Requires:   %lname = %version
 Requires:   python
+Provides:   pyevtx = %version
 
 %description -n python-%name
 Python bindings for libevtx, which can read Windows XML Event files.

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



commit libevtx for openSUSE:Factory

2014-08-14 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2014-08-14 14:58:27

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2013-11-30 
14:21:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2014-08-14 
14:58:59.0 +0200
@@ -1,0 +2,17 @@
+Wed Aug 13 15:40:21 UTC 2014 - greg.freem...@gmail.com
+
+- update to 0~20140731
+   * bug fix in Python-bindings
+   * worked on dpkg debug packages support
+   * updated dependencies
+   * worked on Python-bindings
+   * replaced PackageMaker for pkgbuild
+   * code clean up
+   * worked on setup.py
+   * added evtxexport man page
+   * removed examples
+   * 2014 update
+   * small fix in evtxexport -h output
+- use libregf from external package
+
+---

Old:

  libevtx-alpha-20131013.tar.gz

New:

  libevtx-alpha-20140731.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.rnaqzo/_old  2014-08-14 14:59:00.0 +0200
+++ /var/tmp/diff_new_pack.rnaqzo/_new  2014-08-14 14:59:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libevtx
 #
-# Copyright (c) 2013 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
@@ -18,7 +18,7 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20131013
+%define timestamp  20140731
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
@@ -26,7 +26,7 @@
 Group:  Productivity/File utilities
 Url:http://code.google.com/p/libevtx/
 
-#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20131013.tar.gz
+#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20140731.tar.gz
 Source: %name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
@@ -40,12 +40,12 @@
 BuildRequires:  pkgconfig(libcsplit) >= 20130609
 BuildRequires:  pkgconfig(libfdatetime) >= 20130317
 BuildRequires:  pkgconfig(libfguid) >= 20130317
+BuildRequires:  pkgconfig(libregf) >= 20140803
 BuildRequires:  pkgconfig(libuna) >= 20130609
 #build fails if the factory package is used, use the internal version
-#verified 11/25/2013
-#BuildRequires:  pkgconfig(libwrc) >= 20131017
-#BuildRequires:  pkgconfig(libregf) >= 20130716
-#BuildRequires:  pkgconfig(libcerror) >= 20120425
+#verified 08/13/2014
+#BuildRequires:  pkgconfig(libcerror) >= 20140105
+#BuildRequires:  pkgconfig(libwrc) >= 20140803
 #packages not yet released by upstream
 #BuildRequires:  pkgconfig(libcstring) >= 20120425
 #BuildRequires:  pkgconfig(libcsystem) >= 20120425

++ libevtx-alpha-20131013.tar.gz -> libevtx-alpha-20140731.tar.gz ++
 35048 lines of diff (skipped)

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



commit libevtx for openSUSE:Factory

2013-11-30 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2013-11-30 14:21:40

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2013-11-06 
11:01:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2013-11-30 
14:21:41.0 +0100
@@ -1,0 +2,5 @@
+Tue Nov 26 23:37:56 UTC 2013 - greg.freem...@gmail.com
+
+- using internal libregf, latest factory update broke libevtx
+
+---



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.3EVJut/_old  2013-11-30 14:21:42.0 +0100
+++ /var/tmp/diff_new_pack.3EVJut/_new  2013-11-30 14:21:42.0 +0100
@@ -31,6 +31,7 @@
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
+BuildRequires:  pkgconfig(libbfio) >= 20121003
 BuildRequires:  pkgconfig(libcdata) >= 20130407
 BuildRequires:  pkgconfig(libcfile) >= 20130609
 BuildRequires:  pkgconfig(libclocale) >= 20130609
@@ -39,14 +40,12 @@
 BuildRequires:  pkgconfig(libcsplit) >= 20130609
 BuildRequires:  pkgconfig(libfdatetime) >= 20130317
 BuildRequires:  pkgconfig(libfguid) >= 20130317
-BuildRequires:  pkgconfig(libregf) >= 20130716
 BuildRequires:  pkgconfig(libuna) >= 20130609
 #build fails if the factory package is used, use the internal version
-#verified 11/1/2013
-#BuildRequires:  pkgconfig(libwrc) > 20131017
-#verified 7/30/2013
+#verified 11/25/2013
+#BuildRequires:  pkgconfig(libwrc) >= 20131017
+#BuildRequires:  pkgconfig(libregf) >= 20130716
 #BuildRequires:  pkgconfig(libcerror) >= 20120425
-#BuildRequires:  pkgconfig(libbfio) >= 20120426
 #packages not yet released by upstream
 #BuildRequires:  pkgconfig(libcstring) >= 20120425
 #BuildRequires:  pkgconfig(libcsystem) >= 20120425

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



commit libevtx for openSUSE:Factory

2013-11-06 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2013-11-06 11:01:37

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2013-10-09 
23:41:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2013-11-06 
11:01:39.0 +0100
@@ -1,0 +2,8 @@
+Mon Nov  4 18:00:35 UTC 2013 - greg.freem...@gmail.com
+
+- update to 0~20131013
+   * updated dependencies
+- using internal libwrc, latest factory update broke libevtx
+- removed 0~ from buildrequires dependencies
+
+---

Old:

  libevtx-alpha-20130923.tar.gz

New:

  libevtx-alpha-20131013.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.thUl7K/_old  2013-11-06 11:01:39.0 +0100
+++ /var/tmp/diff_new_pack.thUl7K/_new  2013-11-06 11:01:39.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20130923
+%define timestamp  20131013
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
@@ -26,23 +26,24 @@
 Group:  Productivity/File utilities
 Url:http://code.google.com/p/libevtx/
 
-#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20130923.tar.gz
+#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20131013.tar.gz
 Source: %name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
-BuildRequires:  pkgconfig(libcdata) >= 0~20130407
-BuildRequires:  pkgconfig(libcfile) >= 0~20130609
-BuildRequires:  pkgconfig(libclocale) >= 0~20130609
-BuildRequires:  pkgconfig(libcnotify) >= 0~20130609
-BuildRequires:  pkgconfig(libcpath) >= 0~20130609
-BuildRequires:  pkgconfig(libcsplit) >= 0~20130609
-BuildRequires:  pkgconfig(libfdatetime) >= 0~20130317
-BuildRequires:  pkgconfig(libfguid) >= 0~20130317
-BuildRequires:  pkgconfig(libregf) >= 0~20130716
-BuildRequires:  pkgconfig(libuna) >= 0~20130609
-BuildRequires:  pkgconfig(libwrc) >= 0~20130319
+BuildRequires:  pkgconfig(libcdata) >= 20130407
+BuildRequires:  pkgconfig(libcfile) >= 20130609
+BuildRequires:  pkgconfig(libclocale) >= 20130609
+BuildRequires:  pkgconfig(libcnotify) >= 20130609
+BuildRequires:  pkgconfig(libcpath) >= 20130609
+BuildRequires:  pkgconfig(libcsplit) >= 20130609
+BuildRequires:  pkgconfig(libfdatetime) >= 20130317
+BuildRequires:  pkgconfig(libfguid) >= 20130317
+BuildRequires:  pkgconfig(libregf) >= 20130716
+BuildRequires:  pkgconfig(libuna) >= 20130609
 #build fails if the factory package is used, use the internal version
+#verified 11/1/2013
+#BuildRequires:  pkgconfig(libwrc) > 20131017
 #verified 7/30/2013
 #BuildRequires:  pkgconfig(libcerror) >= 20120425
 #BuildRequires:  pkgconfig(libbfio) >= 20120426

++ libevtx-alpha-20130923.tar.gz -> libevtx-alpha-20131013.tar.gz ++
 4814 lines of diff (skipped)

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



commit libevtx for openSUSE:Factory

2013-10-09 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2013-10-09 23:41:19

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2013-08-01 
15:37:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2013-10-09 
23:41:20.0 +0200
@@ -1,0 +2,7 @@
+Wed Oct  2 17:38:29 UTC 2013 - greg.freem...@gmail.com
+
+-  update to 0~20130923
+   * updated dependencies
+   * worked on libcthreads build support
+
+---

Old:

  libevtx-alpha-20130727.tar.gz

New:

  libevtx-alpha-20130923.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.OhDSAZ/_old  2013-10-09 23:41:22.0 +0200
+++ /var/tmp/diff_new_pack.OhDSAZ/_new  2013-10-09 23:41:22.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20130727
+%define timestamp  20130923
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
@@ -26,7 +26,7 @@
 Group:  Productivity/File utilities
 Url:http://code.google.com/p/libevtx/
 
-#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20130727.tar.gz
+#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20130923.tar.gz
 Source: %name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config

++ libevtx-alpha-20130727.tar.gz -> libevtx-alpha-20130923.tar.gz ++
 27536 lines of diff (skipped)

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



commit libevtx for openSUSE:Factory

2013-08-01 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2013-08-01 15:37:52

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


Package is "libevtx"

Changes:

--- /work/SRC/openSUSE:Factory/libevtx/libevtx.changes  2013-04-19 
09:55:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2013-08-01 
15:37:54.0 +0200
@@ -1,0 +2,21 @@
+Wed Jul 31 02:37:55 UTC 2013 - greg.freem...@gmail.com
+
+- update to 0~20130727
+   * updated dependencies
+   * pyevtx
+ - changed event identifier to an unsigned long
+ - fixes for >2G file objects in BFIO glue code
+ - other updates and bug fixes
+   * removed unnecessary restriction in library include headers
+   * worked on tests
+   * improved reading from dirty files with an incorrect number of chunks
+   * fix for encoding special characters in XML output
+   * added support for parsing ProcessingErrorData
+   * worked on improving corruption detection for recovered records
+   * textual changes
+   * fixed codepage 1255 restriction
+   * improvements to message string support
+- changed to gz compression to simplyfy donwload/convert
+- used factory version of libyal libraries if possible
+
+---
@@ -4,0 +26 @@
+   * bug fix for recent libfdata changes

Old:

  libevtx-alpha-20130329.tar.xz

New:

  libevtx-alpha-20130727.tar.gz



Other differences:
--
++ libevtx.spec ++
--- /var/tmp/diff_new_pack.FsgR8f/_old  2013-08-01 15:37:55.0 +0200
+++ /var/tmp/diff_new_pack.FsgR8f/_new  2013-08-01 15:37:55.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   libevtx
 %define lname  libevtx1
-%define timestamp  20130329
+%define timestamp  20130727
 Version:0~%timestamp
 Release:0
 Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
@@ -26,34 +26,36 @@
 Group:  Productivity/File utilities
 Url:http://code.google.com/p/libevtx/
 
-#DL-URL:   
http://libevtx.googlecode.com/files/libevtx-alpha-20130329.tar.gz
-Source: %name-alpha-%timestamp.tar.xz
+#DL-URL:   
https://googledrive.com/host/0B3fBvzttpiiSRnQ0SExzX3JjdFE/libevtx-alpha-20130727.tar.gz
+Source: %name-alpha-%timestamp.tar.gz
 Source2:Windows_XML_Event_Log_(EVTX).pdf
 BuildRequires:  pkg-config
 BuildRequires:  python-devel
-BuildRequires:  xz
-#BuildRequires:  pkgconfig(libbfio) >= 20120426
-#BuildRequires:  pkgconfig(libcdata) >= 20120425
-#BuildRequires:  pkgconfig(libcdirectory) >= 20120425
+BuildRequires:  pkgconfig(libcdata) >= 0~20130407
+BuildRequires:  pkgconfig(libcfile) >= 0~20130609
+BuildRequires:  pkgconfig(libclocale) >= 0~20130609
+BuildRequires:  pkgconfig(libcnotify) >= 0~20130609
+BuildRequires:  pkgconfig(libcpath) >= 0~20130609
+BuildRequires:  pkgconfig(libcsplit) >= 0~20130609
+BuildRequires:  pkgconfig(libfdatetime) >= 0~20130317
+BuildRequires:  pkgconfig(libfguid) >= 0~20130317
+BuildRequires:  pkgconfig(libregf) >= 0~20130716
+BuildRequires:  pkgconfig(libuna) >= 0~20130609
+BuildRequires:  pkgconfig(libwrc) >= 0~20130319
+#build fails if the factory package is used, use the internal version
+#verified 7/30/2013
 #BuildRequires:  pkgconfig(libcerror) >= 20120425
-#BuildRequires:  pkgconfig(libcfile) >= 20120526
-#BuildRequires:  pkgconfig(libclocale) >= 20120425
-BuildRequires:  pkgconfig(libcnotify) >= 20120425
-#BuildRequires:  pkgconfig(libcpath) >= 20120701
-BuildRequires:  pkgconfig(libcsplit) >= 20120701
+#BuildRequires:  pkgconfig(libbfio) >= 20120426
+#packages not yet released by upstream
 #BuildRequires:  pkgconfig(libcstring) >= 20120425
 #BuildRequires:  pkgconfig(libcsystem) >= 20120425
-#BuildRequires:  pkgconfig(libexe) >= 20120405
-#BuildRequires:  pkgconfig(libfcache) >= 20120405
-#BuildRequires:  pkgconfig(libfdata) >= 20120405
-BuildRequires:  pkgconfig(libfdatetime) >= 20120522
-BuildRequires:  pkgconfig(libfguid) >= 20120426
+#BuildRequires:  pkgconfig(libcdirectory) >= 20120425
 #BuildRequires:  pkgconfig(libfvalue) >= 20120428
 #BuildRequires:  pkgconfig(libfwevt) >= 20120426
 #BuildRequires:  pkgconfig(libfwnt) >= 20120426
-BuildRequires:  pkgconfig(libregf) >= 20120405
-BuildRequires:  pkgconfig(libuna) >= 20120425
-BuildRequires:  pkgconfig(libwrc) >= 20120405
+#BuildRequires:  pkgconfig(libexe) >= 20120405
+#BuildRequires:  pkgconfig(libfcache) >= 20120405
+#BuildRequires:  pkgconfig(libfdata) >= 20120405
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ Windows_XML_Event_Log_(EVTX).pdf ++
(binary d

commit libevtx for openSUSE:Factory

2013-04-19 Thread h_root
Hello community,

here is the log from the commit of package libevtx for openSUSE:Factory checked 
in at 2013-04-19 09:55:21

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


Package is "libevtx", Maintainer is ""

Changes:

New Changes file:

--- /dev/null   2013-04-05 00:01:41.916011506 +0200
+++ /work/SRC/openSUSE:Factory/.libevtx.new/libevtx.changes 2013-04-19 
09:55:22.0 +0200
@@ -0,0 +1,19 @@
+---
+Mon Apr  8 23:32:44 UTC 2013 - greg.freem...@gmail.com
+
+- update to 0~20130329
+
+---
+Thu Apr  4 21:53:08 UTC 2013 - jeng...@inai.de
+
+- Cleanups: Set RPM group, license, summary and description
+  metadata; remove unused %py_requires; do not bloat shlib package
+  with documentation
+- Use system libraries instead of bundled ones where possible
+- Name the tools package according to upstream's recommendation
+- Drop unnecessary -fno-strict-aliasing
+
+---
+Wed Mar 27 16:29:05 UTC 2013 - greg.freem...@gmail.com
+
+- initial package (version 0~20130319) for build.opensuse.org

New:

  Windows_XML_Event_Log_(EVTX).pdf
  libevtx-alpha-20130329.tar.xz
  libevtx.changes
  libevtx.spec



Other differences:
--
++ libevtx.spec ++
#
# spec file for package libevtx
#
# 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:   libevtx
%define lname   libevtx1
%define timestamp   20130329
Version:0~%timestamp
Release:0
Summary:Library and tools to access the Windows XML Event Log (EVTX) 
format
License:LGPL-3.0+ and GFDL-1.3
Group:  Productivity/File utilities
Url:http://code.google.com/p/libevtx/

#DL-URL:
http://libevtx.googlecode.com/files/libevtx-alpha-20130329.tar.gz
Source: %name-alpha-%timestamp.tar.xz
Source2:Windows_XML_Event_Log_(EVTX).pdf
BuildRequires:  pkg-config
BuildRequires:  python-devel
BuildRequires:  xz
#BuildRequires:  pkgconfig(libbfio) >= 20120426
#BuildRequires:  pkgconfig(libcdata) >= 20120425
#BuildRequires:  pkgconfig(libcdirectory) >= 20120425
#BuildRequires:  pkgconfig(libcerror) >= 20120425
#BuildRequires:  pkgconfig(libcfile) >= 20120526
#BuildRequires:  pkgconfig(libclocale) >= 20120425
BuildRequires:  pkgconfig(libcnotify) >= 20120425
#BuildRequires:  pkgconfig(libcpath) >= 20120701
BuildRequires:  pkgconfig(libcsplit) >= 20120701
#BuildRequires:  pkgconfig(libcstring) >= 20120425
#BuildRequires:  pkgconfig(libcsystem) >= 20120425
#BuildRequires:  pkgconfig(libexe) >= 20120405
#BuildRequires:  pkgconfig(libfcache) >= 20120405
#BuildRequires:  pkgconfig(libfdata) >= 20120405
BuildRequires:  pkgconfig(libfdatetime) >= 20120522
BuildRequires:  pkgconfig(libfguid) >= 20120426
#BuildRequires:  pkgconfig(libfvalue) >= 20120428
#BuildRequires:  pkgconfig(libfwevt) >= 20120426
#BuildRequires:  pkgconfig(libfwnt) >= 20120426
BuildRequires:  pkgconfig(libregf) >= 20120405
BuildRequires:  pkgconfig(libuna) >= 20120425
BuildRequires:  pkgconfig(libwrc) >= 20120405
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Library and tools to access the Windows XML Event Log (EVTX) format.
For the Windows pre-XML Event Log (EVT) format, see libevt.

%package -n %lname
Summary:Library to access the Windows XML Event Log (EVTX) format
License:LGPL-3.0+
Group:  System/Libraries

%description -n %lname
Library to access the Windows Event Log (EVT) format.
For the Windows pre-XML Event Log (EVT) format, see libevt.

%package tools
Summary:Utilities to export events from Windows XML event files (EVTX)
License:LGPL-3.0+
Group:  Productivity/File utilities

%description tools
Tools for parsing EVTX files. These include evtxinfo and evtxexport.

%package devel
Summary:Development files for libevtx, a Windows XML Event file parser
License:LGPL-3.0+ and GFDL-1.3
Group:  Development/Libraries/C and C++
R