Mercurial > libpst
annotate libpst.spec.in @ 386:f1f9920cc7b1
Add AM_GNU_GETTEXT macros
AM_ICONV relies on config.rpath and autopoint/gettextize will
only copy these in when the AM_GNU_GETTEXT macros are present.
This is needed for the next commit that deletes config.rpath since
it is cruft that should be copied in by autotools not embedded.
Run autopoint to copy in config.rpath and
leave it to automake to copy into the tarball.
author | Paul Wise <pabs3@bonedaddy.net> |
---|---|
date | Sat, 21 Dec 2019 21:25:44 +0800 |
parents | 2379a4d8d9c7 |
children | 5c0ce43c7532 |
rev | line source |
---|---|
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
1 Summary: Utilities to convert Outlook .pst files to other formats |
16 | 2 Name: @PACKAGE@ |
3 Version: @VERSION@ | |
383
2379a4d8d9c7
Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents:
382
diff
changeset
|
4 Release: 1%{?dist} |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
5 License: GPLv2+ |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
6 Source: http://www.five-ten-sg.com/%{name}/packages/%{name}-%{version}.tar.gz |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
7 URL: http://www.five-ten-sg.com/%{name}/ |
308
97c53c6868ab
add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
8 Requires: ImageMagick libgsf |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
9 Requires: %{name}-libs = %{version}-%{release} |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
10 BuildRequires: libtool gcc-c++ |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
11 BuildRequires: ImageMagick gd-devel zlib-devel boost-devel libgsf-devel |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
12 %if 0%{?fedora} > 27 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
13 BuildRequires: python3 python3-devel boost-python3 boost-python3-devel |
382
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
14 Requires: boost-python3 |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
15 %else |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
16 BuildRequires: python-devel |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
17 %endif |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
18 |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
19 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
20 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
21 |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
22 |
16 | 23 %description |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
24 The Libpst utilities include readpst which can convert email messages |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
25 to both mbox and MH mailbox formats, pst2ldif which can convert the |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
26 contacts to .ldif format for import into ldap databases, and pst2dii |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
27 which can convert email messages to the DII load file format used by |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
28 Summation. |
16 | 29 |
30 | |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
31 %package libs |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
32 Summary: Shared library used by the pst utilities |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
33 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
34 %description libs |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
35 The libpst-libs package contains the shared library used by the pst |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
36 utilities. |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
37 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
38 |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
39 %if 0%{?fedora} > 27 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
40 %package -n python3-%{name} |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
41 Requires: python3 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
42 Provides: %{name}-python = %{version}-%{release} |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
43 %else |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
44 %package python |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
45 Requires: python |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
46 %endif |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
47 Summary: Python bindings for libpst |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
48 Requires: %{name}-libs = %{version}-%{release} |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
49 |
337
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
50 %if 0%{?fedora} >= 20 |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
51 %global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{python_sitearch}/_.*\.so$ |
337
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
52 %else |
338
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
53 %{?filter_setup: |
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
54 %filter_provides_in %{python_sitearch}/_.*\.so$ |
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
55 %filter_setup |
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
56 } |
337
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
57 %endif |
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
58 |
307
db6db9a26a19
filter private provides from rpm
Carl Byington <carl@five-ten-sg.com>
parents:
305
diff
changeset
|
59 |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
60 %if 0%{?fedora} > 27 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
61 %description -n python3-%{name} |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
62 %else |
374
62f05deb2e1c
fedora python naming scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
373
diff
changeset
|
63 %description python |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
64 %endif |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
65 The libpst-python package allows you to use the libpst shared object |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
66 from python code. |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
67 |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
68 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
69 %package devel |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
70 Summary: Library links and header files for libpst application development |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
71 Requires: pkgconfig |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
72 Requires: %{name}-libs = %{version}-%{release} |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
73 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
74 %description devel |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
75 The libpst-devel package contains the library links and header files |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
76 you'll need to develop applications using the libpst shared library. |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
77 You do not need to install it if you just want to use the libpst |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
78 utilities. |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
79 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
80 |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
81 %package devel-doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
82 Summary: Documentation for libpst.so for libpst application development |
182
b65e8d0a088a
more cleanup on external names in the shared object file
Carl Byington <carl@five-ten-sg.com>
parents:
181
diff
changeset
|
83 Requires: %{name}-doc = %{version}-%{release} |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
84 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
85 %description devel-doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
86 The libpst-devel-doc package contains the doxygen generated |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
87 documentation for the libpst.so shared library. |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
88 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
89 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
90 %package doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
91 Summary: Documentation for the pst utilities in html format |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
92 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
93 %description doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
94 The libpst-doc package contains the html documentation for the pst |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
95 utilities. You do not need to install it if you just want to use the |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
96 libpst utilities. |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
97 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
98 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
99 |
16 | 100 %prep |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
101 %setup -q |
16 | 102 |
67
90aa7814ad1f
Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
103 |
16 | 104 %build |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
105 autoreconf -v -f -i |
199
e3a46f66332b
more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents:
198
diff
changeset
|
106 %configure --enable-libpst-shared |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
107 %if 0%{?fedora} > 27 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
108 %make_build |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
109 %else |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
110 make %{?_smp_mflags} |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
111 %endif |
16 | 112 |
67
90aa7814ad1f
Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
113 |
16 | 114 %install |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
115 %if 0%{?fedora} > 27 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
116 %make_install |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
117 %else |
16 | 118 rm -rf $RPM_BUILD_ROOT |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
119 make DESTDIR=$RPM_BUILD_ROOT install |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
120 %endif |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
121 rm $RPM_BUILD_ROOT%{_libdir}/libpst.la |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
122 rm $RPM_BUILD_ROOT%{_libdir}/libpst.a |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
123 mv $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version} $RPM_BUILD_ROOT%{_datadir}/doc/%{name} |
16 | 124 |
125 | |
382
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
126 %ldconfig_scriptlets libs |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
127 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
128 |
16 | 129 %files |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
130 %defattr(-,root,root,-) |
24 | 131 %{_bindir}/* |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
132 %{_mandir}/man1/* |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
133 %{_mandir}/man5/* |
16 | 134 |
135 | |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
136 %files libs |
179
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
137 %defattr(-,root,root,-) |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
138 %{_libdir}/libpst.so.* |
250 | 139 %doc COPYING |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
140 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
141 |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
142 %if 0%{?fedora} > 27 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
143 %files -n python3-%{name} |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
144 %defattr(-,root,root,-) |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
145 %{python3_sitearch}/_*.so |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
146 %exclude %{python3_sitearch}/*.a |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
147 %exclude %{python3_sitearch}/*.la |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
148 %else |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
149 %files python |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
150 %defattr(-,root,root,-) |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
151 %{python_sitearch}/_*.so |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
152 %exclude %{python_sitearch}/*.a |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
153 %exclude %{python_sitearch}/*.la |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
154 %endif |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
155 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
156 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
157 %files devel |
179
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
158 %defattr(-,root,root,-) |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
159 %{_libdir}/libpst.so |
179
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
160 %{_includedir}/%{name}-@LIBPST_SO_MAJOR@/ |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
161 %{_libdir}/pkgconfig/libpst.pc |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
162 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
163 |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
164 %files devel-doc |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
165 %defattr(-,root,root,-) |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
166 %{_datadir}/doc/%{name}/devel/ |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
167 |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
168 |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
169 %files doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
170 %defattr(-,root,root,-) |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
171 %dir %{_datadir}/doc/%{name}/ |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
172 %{_datadir}/doc/%{name}/*.html |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
173 %{_datadir}/doc/%{name}/AUTHORS |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
174 %{_datadir}/doc/%{name}/COPYING |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
175 %{_datadir}/doc/%{name}/ChangeLog |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
176 %{_datadir}/doc/%{name}/NEWS |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
177 %{_datadir}/doc/%{name}/README |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
178 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
179 |
16 | 180 %changelog |
383
2379a4d8d9c7
Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents:
382
diff
changeset
|
181 * Thu Jul 25 2019 Carl Byington <carl@five-ten-sg.com> 0.6.73-1 |
2379a4d8d9c7
Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents:
382
diff
changeset
|
182 - Tim Dufrane - fix segfault in pst_close() |
2379a4d8d9c7
Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents:
382
diff
changeset
|
183 |
382
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
184 * Fri Jun 07 2019 Carl Byington <carl@five-ten-sg.com> 0.6.72-4 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
185 - fixes for python3 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
186 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
187 * Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.72-3 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
188 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
189 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
190 * Wed Jan 30 2019 Jonathan Wakely <jwakely@redhat.com> - 0.6.72-2 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
191 - Rebuilt for Boost 1.69 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
192 |
380
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
193 * Wed Aug 01 2018 Carl Byington <carl@five-ten-sg.com> 0.6.72-1 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
194 - allow all 7 days in bydays recurring appointment |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
195 - update for fedora python packaging |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
196 - Alfredo Esteban - add -l and -f options to lspst |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
197 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
198 * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.71-8 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
199 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
200 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
201 * Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.71-7 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
202 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
203 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
204 * Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.6.71-6 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
205 - Add Provides for the old name without %%_isa |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
206 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
207 * Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.6.71-5 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
208 - Python 2 binary package renamed to python2-libpst |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
209 See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
210 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
211 * Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.6.71-4 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
212 - Python 2 binary package renamed to python2-libpst |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
213 See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
214 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
215 * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.71-3 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
216 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
217 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
218 * Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.71-2 |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
219 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
1e1970f93f94
allow all 7 days in bydays recurring appointment, update for fedora python packaging
Carl Byington <carl@five-ten-sg.com>
parents:
374
diff
changeset
|
220 |
373
0ccc746c8079
Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents:
372
diff
changeset
|
221 * Fri Jul 21 2017 Carl Byington <carl@five-ten-sg.com> 0.6.71-1 |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
222 - fedora python naming scheme changes |
373
0ccc746c8079
Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents:
372
diff
changeset
|
223 - Zachary Travis - Add support for the OST 2013 format, and |
0ccc746c8079
Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents:
372
diff
changeset
|
224 Content-Disposition filename key fix for outlook compatibility |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
225 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
226 * Thu Jul 20 2017 Kalev Lember <klember@redhat.com> - 0.6.70-3 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
227 - Rebuilt for Boost 1.64 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
228 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
229 * Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.70-2 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
230 - Rebuild due to bug in RPM (RHBZ #1468476) |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
231 |
370
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
232 * Wed Feb 08 2017 Carl Byington <carl@five-ten-sg.com> 0.6.70-1 |
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
233 - Jeffrey Morlan - pst_getID2 must not recurse into children |
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
234 |
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
235 * Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 0.6.69-2 |
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
236 - Rebuilt for Boost 1.63 |
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
237 |
368 | 238 * Sat Oct 29 2016 Carl Byington <carl@five-ten-sg.com> 0.6.69-1 |
239 - fix bugs in code allowing folders containing multiple item types | |
240 | |
363
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
241 * Mon Aug 29 2016 Carl Byington <carl@five-ten-sg.com> 0.6.68-1 |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
242 - allow folders containing multiple item types, e.g. email and calendar |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
243 - better detection of valid internet headers |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
244 |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
245 * Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.67-2 |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
246 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
247 |
361 | 248 * Wed Jul 06 2016 Carl Byington <carl@five-ten-sg.com> 0.6.67-1 |
249 - Jeffrey Morlan - multiple bug fixes and an optimization | |
250 | |
251 * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.66-3 | |
252 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild | |
253 | |
254 * Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 0.6.66-2 | |
255 - Rebuilt for Boost 1.60 | |
256 | |
353
19b795b6f6a0
Added Content-ID header support
Carl Byington <carl@five-ten-sg.com>
parents:
350
diff
changeset
|
257 * Mon Dec 21 2015 Carl Byington <carl@five-ten-sg.com> 0.6.66-1 |
19b795b6f6a0
Added Content-ID header support
Carl Byington <carl@five-ten-sg.com>
parents:
350
diff
changeset
|
258 - Igor Stroh - Added Content-ID header support |
19b795b6f6a0
Added Content-ID header support
Carl Byington <carl@five-ten-sg.com>
parents:
350
diff
changeset
|
259 |
349
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
260 * Fri Sep 11 2015 Carl Byington <carl@five-ten-sg.com> 0.6.65-1 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
261 - Jeffrey Morlan - fix multiple Content-Type headers |
350
7a91e30826d8
Hans Liss - debug level output
Carl Byington <carl@five-ten-sg.com>
parents:
349
diff
changeset
|
262 - Hans Liss - debug level output |
349
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
263 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
264 * Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 0.6.64-6 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
265 - Rebuilt for Boost 1.59 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
266 |
363
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
267 * Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.64-5 |
349
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
268 - Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
269 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
270 * Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 0.6.64-4 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
271 - rebuild for Boost 1.58 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
272 |
363
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
273 * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.64-3 |
349
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
274 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
275 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
276 * Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.6.64-2 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
277 - Rebuilt for GCC 5 C++11 ABI change |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
278 |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
279 * Mon Mar 09 2015 Carl Byington <carl@five-ten-sg.com> 0.6.64-1 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
280 - fix line wrap on python provides_exclude_from |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
281 - fix unchecked errors found by cppcheck |
345
a8577226f7a9
fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents:
344
diff
changeset
|
282 - AJ Shankar fixes for attachment processing and body encodings |
a8577226f7a9
fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents:
344
diff
changeset
|
283 that contain embedded null chars. |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
284 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
285 * Mon Jan 26 2015 Petr Machata <pmachata@redhat.com> - 0.6.63-5 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
286 - Rebuild for boost 1.57.0 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
287 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
288 * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.63-4 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
289 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
290 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
291 * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.63-3 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
292 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
293 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
294 * Fri May 23 2014 David Tardon <dtardon@redhat.com> - 0.6.63-2 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
295 - rebuild for boost 1.55.0 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
296 |
340
0f3185217313
Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents:
338
diff
changeset
|
297 * Fri Dec 27 2013 Carl Byington <carl@five-ten-sg.com> 0.6.63-1 |
0f3185217313
Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents:
338
diff
changeset
|
298 - Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME |
0f3185217313
Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents:
338
diff
changeset
|
299 |
336
f1595a84790b
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
335
diff
changeset
|
300 * Sun Sep 22 2013 Carl Byington <carl@five-ten-sg.com> 0.6.62-1 |
335
0a667645cc3e
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
332
diff
changeset
|
301 - 983596 - Old dependency filter breaks file coloring |
0a667645cc3e
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
332
diff
changeset
|
302 |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
303 * Tue Aug 06 2013 Carl Byington <carl@five-ten-sg.com> 0.6.61-1 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
304 - move documentation to unversioned directory |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
305 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
306 * Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.59-4 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
307 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
308 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
309 * Sat Jul 27 2013 pmachata@redhat.com - 0.6.59-3 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
310 - Rebuild for boost 1.54.0 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
311 |
329 | 312 * Wed Jun 12 2013 Carl Byington <carl@five-ten-sg.com> 0.6.60-1 |
328 | 313 - patch from Dominique Leuenberger to add AC_USE_SYSTEM_EXTENSIONS |
329 | 314 - add readpst -a option for attachment stripping |
328 | 315 |
316 * Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 0.6.59-2 | |
317 - rebuild for new GD 2.1.0 | |
318 | |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
319 * Fri May 17 2013 Carl Byington <carl@five-ten-sg.com> 0.6.59-1 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
320 - add autoconf checking for libgsf |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
321 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
322 * Fri Mar 29 2013 Carl Byington <carl@five-ten-sg.com> 0.6.58-4 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
323 - add autoreconf for aarch64 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
324 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
325 * Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.6.58-3 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
326 - Rebuild for Boost-1.53.0 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
327 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
328 * Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.6.58-2 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
329 - Rebuild for Boost-1.53.0 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
330 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
331 * Fri Dec 28 2012 Carl Byington <carl@five-ten-sg.com> - 0.6.58-1 |
323
2474d01043cd
fix From quoting on embedded rfc/822 messages
Carl Byington <carl@five-ten-sg.com>
parents:
321
diff
changeset
|
332 - fix From quoting on embedded rfc/822 messages |
2474d01043cd
fix From quoting on embedded rfc/822 messages
Carl Byington <carl@five-ten-sg.com>
parents:
321
diff
changeset
|
333 |
321 | 334 * Wed Dec 26 2012 Carl Byington <carl@five-ten-sg.com> - 0.6.57-1 |
319
6fc49b69b1dc
remove unnecessary dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
318
diff
changeset
|
335 - bugzilla 852414, remove unnecessary dependencies |
6fc49b69b1dc
remove unnecessary dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
318
diff
changeset
|
336 |
317 | 337 * Mon Dec 24 2012 Carl Byington <carl@five-ten-sg.com> - 0.6.56-1 |
307
db6db9a26a19
filter private provides from rpm
Carl Byington <carl@five-ten-sg.com>
parents:
305
diff
changeset
|
338 - filter private provides from rpm |
319
6fc49b69b1dc
remove unnecessary dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
318
diff
changeset
|
339 - merge -m .msg files code into main branch |
307
db6db9a26a19
filter private provides from rpm
Carl Byington <carl@five-ten-sg.com>
parents:
305
diff
changeset
|
340 |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
341 * Thu Aug 09 2012 Carl Byington <carl@five-ten-sg.com> - 0.6.55-2 |
305 | 342 - rebuild for python |
343 | |
344 * Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.54-6 | |
345 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild | |
346 | |
304
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
347 * Tue May 08 2012 Carl Byington <carl@five-ten-sg.com> - 0.6.55-1 |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
348 - preserve bcc headers |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
349 - document -C switch to set default character set |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
350 - space after colon is not required in header fields |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
351 |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
352 * Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.54-5 |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
353 - Rebuilt for c++ ABI breakage |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
354 |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
355 * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.54-4 |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
356 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
5338d93889aa
preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents:
301
diff
changeset
|
357 |
301 | 358 * Sat Dec 24 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.54-3 |
359 - bump versions and prep for fedora build | |
360 | |
361 * Wed Nov 30 2011 Petr Pisar <ppisar@redhat.com> - 0.6.53-3 | |
362 - Rebuild against boost-1.48 | |
363 | |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
364 * Mon Nov 14 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.54-2 |
301 | 365 - failed to bump version number |
366 | |
300
47abe56076da
embedded rfc822 messages might contain rtf encoded bodies
Carl Byington <carl@five-ten-sg.com>
parents:
294
diff
changeset
|
367 * Fri Nov 04 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.54-1 |
47abe56076da
embedded rfc822 messages might contain rtf encoded bodies
Carl Byington <carl@five-ten-sg.com>
parents:
294
diff
changeset
|
368 - embedded rfc822 messages might contain rtf encoded bodies |
47abe56076da
embedded rfc822 messages might contain rtf encoded bodies
Carl Byington <carl@five-ten-sg.com>
parents:
294
diff
changeset
|
369 |
301 | 370 * Fri Sep 02 2011 Petr Pisar <ppisar@redhat.com> - 0.6.53-2 |
371 - Rebuild against boost-1.47 | |
372 | |
294 | 373 * Sun Jul 10 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.53-1 |
374 - add Status: header in output | |
375 - allow fork for parallel processing of individual email folders | |
376 in separate mode | |
377 - proper handling of --with-boost-python option | |
378 | |
283 | 379 * Sun May 22 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.52-1 |
380 - fix dangling freed pointer in embedded rfc822 message processing | |
381 - allow broken outlook internet header field - it sometimes contains | |
382 fragments of the message body rather than headers | |
313
0f19cd173eab
fix to/cc/bcc recipients in .msg file output format
Carl Byington <carl@five-ten-sg.com>
parents:
308
diff
changeset
|
383 |
270 | 384 * Sun Apr 17 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.51-1 |
385 - fix for buffer overrun; attachment size from the secondary | |
386 list of mapi elements overwrote proper size from the primary | |
387 list of mapi elements. | |
388 fedora bugzilla 696263 | |
389 | |
390 * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.49-4 | |
391 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild | |
392 | |
393 * Mon Feb 07 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.6.49-3 | |
394 - rebuild for new boost | |
395 | |
257
c947b8812120
rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents:
255
diff
changeset
|
396 * Fri Dec 24 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.50-1 |
c947b8812120
rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents:
255
diff
changeset
|
397 - rfc2047 and rfc2231 encoding for non-ascii headers and |
c947b8812120
rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents:
255
diff
changeset
|
398 attachment filenames. |
c947b8812120
rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents:
255
diff
changeset
|
399 |
270 | 400 * Wed Sep 29 2010 jkeating - 0.6.49-2 |
401 - Rebuilt for gcc bug 634757 | |
402 | |
255
ab87f9070ed2
fix to ignore embedded objects that are not email messages
Carl Byington <carl@five-ten-sg.com>
parents:
254
diff
changeset
|
403 * Mon Sep 13 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.49-1 |
ab87f9070ed2
fix to ignore embedded objects that are not email messages
Carl Byington <carl@five-ten-sg.com>
parents:
254
diff
changeset
|
404 - fix to ignore embedded objects that are not email messages |
ab87f9070ed2
fix to ignore embedded objects that are not email messages
Carl Byington <carl@five-ten-sg.com>
parents:
254
diff
changeset
|
405 fedora bugzilla 633498 |
ab87f9070ed2
fix to ignore embedded objects that are not email messages
Carl Byington <carl@five-ten-sg.com>
parents:
254
diff
changeset
|
406 |
254
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
407 * Thu Sep 02 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.48-1 |
252
4573b536177f
fix for broken internet headers from Outlook
Carl Byington <carl@five-ten-sg.com>
parents:
250
diff
changeset
|
408 - fix for broken internet headers from Outlook |
253
115b871c61a1
fixes from fedora for python 2.7
Carl Byington <carl@five-ten-sg.com>
parents:
252
diff
changeset
|
409 - fix ax_python.m4 to look for python2.7 |
254
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
410 - use mboxrd from quoting for output formats with multiple messages per file |
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
411 - use no from quoting for output formats with single message per file |
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
412 |
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
413 * Sat Jul 31 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.47-6 |
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
414 - rebuild for python dependencies |
253
115b871c61a1
fixes from fedora for python 2.7
Carl Byington <carl@five-ten-sg.com>
parents:
252
diff
changeset
|
415 |
115b871c61a1
fixes from fedora for python 2.7
Carl Byington <carl@five-ten-sg.com>
parents:
252
diff
changeset
|
416 * Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.47-4 |
115b871c61a1
fixes from fedora for python 2.7
Carl Byington <carl@five-ten-sg.com>
parents:
252
diff
changeset
|
417 - hack up configure so that it looks for python 2.7 |
252
4573b536177f
fix for broken internet headers from Outlook
Carl Byington <carl@five-ten-sg.com>
parents:
250
diff
changeset
|
418 |
4573b536177f
fix for broken internet headers from Outlook
Carl Byington <carl@five-ten-sg.com>
parents:
250
diff
changeset
|
419 * Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.47-3 |
4573b536177f
fix for broken internet headers from Outlook
Carl Byington <carl@five-ten-sg.com>
parents:
250
diff
changeset
|
420 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild |
4573b536177f
fix for broken internet headers from Outlook
Carl Byington <carl@five-ten-sg.com>
parents:
250
diff
changeset
|
421 |
249 | 422 * Wed Jul 07 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.47-2 |
250 | 423 - Subpackage Licensing, add COPYING to -libs. |
249 | 424 - patches from Kenneth Berland for solaris |
425 | |
247
85d77d7b034b
another patche from Kenneth Berland for solaris
Carl Byington <carl@five-ten-sg.com>
parents:
246
diff
changeset
|
426 * Fri May 07 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.47-1 |
246
5a82d41c883d
patches from Kenneth Berland for solaris
Carl Byington <carl@five-ten-sg.com>
parents:
244
diff
changeset
|
427 - patches from Kenneth Berland for solaris |
5a82d41c883d
patches from Kenneth Berland for solaris
Carl Byington <carl@five-ten-sg.com>
parents:
244
diff
changeset
|
428 |
244
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
429 * Thu Jan 21 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.46-1 |
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
430 - prefer libpthread over librt for finding sem_init function. |
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
431 |
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
432 * Thu Jan 21 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.45-2 |
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
433 - rebuild for new boost package |
308
97c53c6868ab
add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
434 |
242
67b24d6a45d6
patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents:
240
diff
changeset
|
435 * Wed Nov 18 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.45-1 |
67b24d6a45d6
patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents:
240
diff
changeset
|
436 - patch from Hugo DesRosiers to export categories and notes into vcards. |
67b24d6a45d6
patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents:
240
diff
changeset
|
437 - extend that patch to export categories into vcalendar appointments also. |
67b24d6a45d6
patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents:
240
diff
changeset
|
438 |
240 | 439 * Sun Sep 20 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.44-1 |
440 - patch from Lee Ayres to add file name extensions in separate mode. | |
441 - allow mixed items types in a folder in separate mode. | |
442 | |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
443 * Sat Sep 12 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.43-1 |
232 | 444 - decode more of the pst format, some minor bug fixes |
445 - add support for code pages 1200 and 1201. | |
233
1d50ff3c5091
better rfc822 embedded message decoding
Carl Byington <carl@five-ten-sg.com>
parents:
232
diff
changeset
|
446 - add readpst -t option to select output item types, which can |
1d50ff3c5091
better rfc822 embedded message decoding
Carl Byington <carl@five-ten-sg.com>
parents:
232
diff
changeset
|
447 now be used to process folders containing mixed item types. |
232 | 448 - fix segfault with embedded appointments |
449 - add readpst -u option for Thunderbird mode .size and .type files | |
236
093e0e9248bb
cleanup rfc822 embedded message code
Carl Byington <carl@five-ten-sg.com>
parents:
233
diff
changeset
|
450 - better detection of embedded rfc822 message attachments |
232 | 451 |
228
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
452 * Thu Sep 03 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.42-1 |
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
453 - patch from Fridrich Strba to build with DJGPP DOS cross-compiler. |
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
454 |
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
455 * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.41-2 |
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
456 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
457 |
225
9859474779da
fix ax_python as done in libtorrent
Carl Byington <carl@five-ten-sg.com>
parents:
224
diff
changeset
|
458 * Tue Jun 23 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.41-1 |
9859474779da
fix ax_python as done in libtorrent
Carl Byington <carl@five-ten-sg.com>
parents:
224
diff
changeset
|
459 - fix ax_python detection - should not use locate command |
9859474779da
fix ax_python as done in libtorrent
Carl Byington <carl@five-ten-sg.com>
parents:
224
diff
changeset
|
460 - checking for fedora versions is not needed |
9859474779da
fix ax_python as done in libtorrent
Carl Byington <carl@five-ten-sg.com>
parents:
224
diff
changeset
|
461 |
221
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
462 * Tue Jun 23 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.40-1 |
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
463 - fedora 11 has python2.6 |
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
464 - remove pdf version of the man pages |
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
465 |
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
466 * Sun Jun 21 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.39-1 |
219
10ea2d132019
fedora > 10 moved to boost-python-devel
Carl Byington <carl@five-ten-sg.com>
parents:
218
diff
changeset
|
467 - fedora > 10 moved to boost-python-devel |
10ea2d132019
fedora > 10 moved to boost-python-devel
Carl Byington <carl@five-ten-sg.com>
parents:
218
diff
changeset
|
468 |
221
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
469 * Sun Jun 21 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.38-1 |
198
7c60d6d1c681
decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents:
196
diff
changeset
|
470 - add python interface to the shared library. |
199
e3a46f66332b
more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents:
198
diff
changeset
|
471 - bump soname to version 4 for many changes to the interface. |
e3a46f66332b
more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents:
198
diff
changeset
|
472 - better decoding of recurrence data in appointments. |
202
2f38c4ce606f
remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents:
199
diff
changeset
|
473 - remove readpstlog since debug log files are now plain text. |
2f38c4ce606f
remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents:
199
diff
changeset
|
474 - add readpst -j option for parallel jobs for each folder. |
211
94bde95d7e18
the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents:
209
diff
changeset
|
475 - make nested mime multipart/alternative to hold the text/html parts. |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
476 |
193 | 477 * Fri Apr 17 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.37-1 |
191
4b498fd68464
add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents:
188
diff
changeset
|
478 - add pst_attach_to_mem() back into the shared library interface. |
4b498fd68464
add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents:
188
diff
changeset
|
479 - fix memory leak caught by valgrind. |
4b498fd68464
add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents:
188
diff
changeset
|
480 |
188 | 481 * Tue Apr 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.36-1 |
181 | 482 - build separate -doc and -devel-doc subpackages. |
179
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
483 - other spec file cleanup |
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
484 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
485 * Wed Apr 08 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.35-1 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
486 - properly add trailing mime boundary in all modes. |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
487 - build separate libpst, libpst-libs, libpst-devel rpms. |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
488 |
168 | 489 * Thu Mar 19 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.34-1 |
490 - avoid putting mixed item types into the same output folder. | |
491 | |
165 | 492 * Tue Mar 17 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.33-1 |
493 - compensate for iconv conversion to utf-7 that produces strings that | |
494 are not null terminated. | |
495 - don't produce empty attachment files in separate mode. | |
496 | |
160
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
497 * Sat Mar 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.32-1 |
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
498 - fix ppc64 compile error |
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
499 |
157
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
500 * Sat Mar 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.31-1 |
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
501 - bump version for fedora cvs tagging mistake |
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
502 |
155
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
503 * Sat Mar 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.30-1 |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
504 - track character set individually for each mapi element. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
505 - remove charset option from pst2ldif since we get that from each |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
506 object now. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
507 - avoid emitting bogus empty email messages into contacts and |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
508 calendar files. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
509 |
146
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
510 * Tue Feb 24 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.29-1 |
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
511 - fix for 64bit on Fedora 11 |
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
512 |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
513 * Tue Feb 24 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.28-1 |
141
fd4297884319
improve decoding of multipart/report and message/rfc822 mime types
Carl Byington <carl@five-ten-sg.com>
parents:
136
diff
changeset
|
514 - improve decoding of multipart/report and message/rfc822 mime types. |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
515 - improve character set handling. |
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
516 - fix embedded rfc822 messages with attachments. |
141
fd4297884319
improve decoding of multipart/report and message/rfc822 mime types
Carl Byington <carl@five-ten-sg.com>
parents:
136
diff
changeset
|
517 |
136
16770fc77139
fix for const correctness on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
134
diff
changeset
|
518 * Sat Feb 07 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.27-1 |
16770fc77139
fix for const correctness on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
134
diff
changeset
|
519 - fix for const correctness on Fedora 11 |
16770fc77139
fix for const correctness on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
134
diff
changeset
|
520 |
134
2d6bb72ad041
update changelog and dates
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
521 * Sat Feb 07 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.26-1 |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
522 - patch from Fridrich Strba for building on mingw and general |
124
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
523 - cleanup of autoconf files. |
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
524 - add processing for pst files of type 0x0f. |
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
525 - strip and regenerate all MIME headers to avoid duplicates. |
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
526 - do a better job of making unique MIME boundaries. |
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
527 - only use base64 coding when strictly necessary. |
118
0f1492b7fe8b
patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
528 |
116
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
114
diff
changeset
|
529 * Fri Jan 16 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.25-1 |
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
114
diff
changeset
|
530 - improve handling of content-type charset values in mime parts |
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
114
diff
changeset
|
531 |
114
e213bfcf9aa7
patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
532 * Thu Dec 11 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.24-1 |
e213bfcf9aa7
patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
533 - patch from Chris Eagle to build on cygwin |
e213bfcf9aa7
patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
534 |
112
554e9a422778
bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
535 * Thu Dec 04 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.23-1 |
554e9a422778
bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
536 - bump version to avoid cvs tagging mistake in fedora |
554e9a422778
bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
537 |
110
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
108
diff
changeset
|
538 * Fri Nov 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.22-1 |
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
108
diff
changeset
|
539 - patch from David Cuadrado to process emails with type PST_TYPE_OTHER |
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
108
diff
changeset
|
540 - base64_encode_multiple() may insert newline, needs larger malloc |
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
108
diff
changeset
|
541 - subject lines shorter than 2 bytes could segfault |
7133b39975f7
patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents:
108
diff
changeset
|
542 |
108
1b2a4fac1303
fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
543 * Tue Oct 21 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.21-1 |
1b2a4fac1303
fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
544 - fix title bug with old schema in pst2ldif. |
1b2a4fac1303
fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
545 - also escape commas in distinguished names per rfc4514. |
1b2a4fac1303
fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents:
104
diff
changeset
|
546 |
104
39ba19372732
many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents:
103
diff
changeset
|
547 * Thu Oct 09 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.20-1 |
99
b7f456946c5b
add configure option --enable-dii=no to remove dependency on libgd.
Carl Byington <carl@five-ten-sg.com>
parents:
96
diff
changeset
|
548 - add configure option --enable-dii=no to remove dependency on libgd. |
b7f456946c5b
add configure option --enable-dii=no to remove dependency on libgd.
Carl Byington <carl@five-ten-sg.com>
parents:
96
diff
changeset
|
549 - many fixes in pst2ldif by Robert Harris. |
100
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
99
diff
changeset
|
550 - add -D option to include deleted items, from Justin Greer |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
99
diff
changeset
|
551 - fix from Justin Greer to add missing email headers |
1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents:
99
diff
changeset
|
552 - fix from Justin Greer for my_stristr() |
101
1fc33da23175
fix for orphan children when building descriptor tree, avoid writing uninitialized data to debug log file
Carl Byington <carl@five-ten-sg.com>
parents:
100
diff
changeset
|
553 - fix for orphan children when building descriptor tree |
1fc33da23175
fix for orphan children when building descriptor tree, avoid writing uninitialized data to debug log file
Carl Byington <carl@five-ten-sg.com>
parents:
100
diff
changeset
|
554 - avoid writing uninitialized data to debug log file |
102
8c4482be0b4c
remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
555 - remove unreachable code |
103
0af0bbe166e1
create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents:
102
diff
changeset
|
556 - create dummy top-of-folder descriptor if needed for corrupt pst files |
99
b7f456946c5b
add configure option --enable-dii=no to remove dependency on libgd.
Carl Byington <carl@five-ten-sg.com>
parents:
96
diff
changeset
|
557 |
96
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
558 * Sun Sep 14 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.19-1 |
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
559 - Fix base64 encoding that could create long lines. |
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
560 - Initial work on a .so shared library from Bharath Acharya. |
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
561 |
93 | 562 * Thu Aug 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.18-1 |
563 - Fixes for iconv on Mac from Justin Greer. | |
564 | |
90
631d02d30a1c
More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents:
88
diff
changeset
|
565 * Tue Aug 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.17-1 |
631d02d30a1c
More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents:
88
diff
changeset
|
566 - More fixes for 32/64 bit portability on big endian ppc. |
631d02d30a1c
More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents:
88
diff
changeset
|
567 |
88 | 568 * Tue Aug 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.16-1 |
87
3ec5ad97e926
Use inttypes.h for portable printing of 64 bit items.
Carl Byington <carl@five-ten-sg.com>
parents:
85
diff
changeset
|
569 - Use inttypes.h for portable printing of 64 bit items. |
3ec5ad97e926
Use inttypes.h for portable printing of 64 bit items.
Carl Byington <carl@five-ten-sg.com>
parents:
85
diff
changeset
|
570 |
85
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
571 * Wed Jul 30 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.15-1 |
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
572 - Patch from Robert Simpson for file handle leak in error case. |
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
573 - Fix for missing length on lz decompression, bug found by Chris White. |
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
574 |
82
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
575 * Sun Jun 15 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.14-1 |
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
576 - Fix my mistake in debian packaging. |
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
577 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
78
diff
changeset
|
578 * Fri Jun 13 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.13-1 |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
78
diff
changeset
|
579 - Patch from Robert Simpson for encryption type 2. |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
78
diff
changeset
|
580 |
78
535075b4d261
Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
581 * Tue Jun 10 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.12-1 |
535075b4d261
Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
582 - Patch from Joachim Metz for debian packaging and |
535075b4d261
Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
583 - fix for incorrect length on lz decompression |
535075b4d261
Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
584 |
75
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
585 * Tue Jun 03 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.11-1 |
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
586 - Use ftello/fseeko to properly handle large files. |
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
587 - Document and properly use datasize field in b5 blocks. |
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
588 - Fix some MSVC compile issues and collect MSVC dependencies into one place. |
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
589 |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
71
diff
changeset
|
590 * Thu May 29 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.10-1 |
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
71
diff
changeset
|
591 - Patch from Robert Simpson for doubly-linked list code and arrays of unicode strings. |
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
71
diff
changeset
|
592 |
71
1bd4491cf8ff
fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
593 * Fri May 16 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.9 |
73
3cb02cb1e6cd
Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents:
71
diff
changeset
|
594 - Patch from Joachim Metz for 64 bit compile. |
71
1bd4491cf8ff
fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
595 - Fix pst format documentation for 8 byte backpointers. |
70
b12f4e50e2e8
Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents:
67
diff
changeset
|
596 |
67
90aa7814ad1f
Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
597 * Wed Mar 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.8 |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
598 - Initial version of pst2dii to convert to Summation dii load file format |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
599 - changes for Fedora packaging guidelines (#434727) |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
600 |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
601 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5 |
31 | 602 - merge changes from Joe Nahmias version |
603 | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
604 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3 |
24 | 605 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html |
606 |