Mercurial > libpst
annotate libpst.spec.in @ 405:af8ae7bd3fed stable-0-6-75
allow building on el8
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 16 Jun 2020 16:21:47 -0700 |
parents | 6c69b56d7173 |
children | 24871e6cdd69 |
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 URL: http://www.five-ten-sg.com/%{name}/ |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
7 Source: %{url}/packages/%{name}-%{version}.tar.gz |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
8 |
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
|
9 BuildRequires: libtool gcc-c++ |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
10 BuildRequires: ImageMagick gd-devel zlib-devel boost-devel libgsf-devel gettext-devel |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
11 |
405 | 12 %if "%{?dist}" == ".el8" |
13 %define fedora 32 | |
14 %endif | |
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
|
15 %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
|
16 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
|
17 Requires: boost-python3 |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
18 %else |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
19 BuildRequires: python-devel |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
20 %endif |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
21 |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
22 Requires: ImageMagick%{?_isa} libgsf gettext |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
23 Requires: %{name}-libs%{?_isa} = %{version}-%{release} |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
24 |
405 | 25 %if "%{?dist}" == ".el8" |
26 %define __python /usr/bin/python3 | |
27 %{!?python_sitelib: %global python_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} | |
28 %{!?python_sitearch: %global python_sitearch %(python3 -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} | |
29 %else | |
30 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} | |
31 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} | |
32 %endif | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
33 |
16 | 34 %description |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
35 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
|
36 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
|
37 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
|
38 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
|
39 Summation. |
16 | 40 |
41 | |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
42 %package libs |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
43 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
|
44 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
45 %description libs |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
46 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
|
47 utilities. |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
48 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
49 |
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
|
50 %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
|
51 %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
|
52 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
|
53 Provides: %{name}-python = %{version}-%{release} |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
54 %else |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
55 %package python |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
56 Requires: python |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
57 %endif |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
58 Summary: Python bindings for libpst |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
59 Requires: %{name}-libs%{?_isa} = %{version}-%{release} |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
60 |
337
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
61 %if 0%{?fedora} >= 20 |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
62 %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
|
63 %else |
338
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
64 %{?filter_setup: |
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
65 %filter_provides_in %{python_sitearch}/_.*\.so$ |
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
66 %filter_setup |
fab6df5d16d4
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
337
diff
changeset
|
67 } |
337
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
68 %endif |
387655bdc5cb
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
336
diff
changeset
|
69 |
307
db6db9a26a19
filter private provides from rpm
Carl Byington <carl@five-ten-sg.com>
parents:
305
diff
changeset
|
70 |
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
|
71 %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
|
72 %description -n python3-%{name} |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
73 %else |
374
62f05deb2e1c
fedora python naming scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
373
diff
changeset
|
74 %description python |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
75 %endif |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
76 The libpst-python package allows you to use the libpst shared object |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
77 from Python code. |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
78 |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
79 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
80 %package devel |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
81 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
|
82 Requires: pkgconfig |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
83 Requires: %{name}-libs%{?_isa} = %{version}-%{release} |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
84 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
85 %description devel |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
86 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
|
87 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
|
88 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
|
89 utilities. |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
90 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
91 |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
92 %package devel-doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
93 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
|
94 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
|
95 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
96 %description devel-doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
97 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
|
98 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
|
99 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
100 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
101 %package doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
102 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
|
103 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
104 %description doc |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
105 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
|
106 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
|
107 libpst utilities. |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
108 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
109 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
110 |
16 | 111 %prep |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
112 %setup -q |
16 | 113 |
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
|
114 |
16 | 115 %build |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
116 autoreconf -fiv |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
117 %configure --enable-libpst-shared \ |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
118 --with-boost-python=boost_python%{python3_version_nodots} |
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
|
119 %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
|
120 %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
|
121 %else |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
122 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
|
123 %endif |
16 | 124 |
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
|
125 |
16 | 126 %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
|
127 %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
|
128 %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
|
129 %else |
16 | 130 rm -rf $RPM_BUILD_ROOT |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
131 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
|
132 %endif |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
133 #Remove libtool archives. |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
134 find %{buildroot} -name '*.la' -or -name '*.a' | xargs rm -f |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
135 mv %{buildroot}%{_datadir}/doc/%{name}-%{version} %{buildroot}%{_datadir}/doc/%{name} |
16 | 136 |
137 | |
396
1d28f978f57a
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
395
diff
changeset
|
138 %if 0%{?fedora} > 27 |
382
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
139 %ldconfig_scriptlets libs |
396
1d28f978f57a
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
395
diff
changeset
|
140 %else |
1d28f978f57a
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
395
diff
changeset
|
141 %post libs -p /sbin/ldconfig |
1d28f978f57a
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
395
diff
changeset
|
142 %postun libs -p /sbin/ldconfig |
1d28f978f57a
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
395
diff
changeset
|
143 %endif |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
144 |
16 | 145 %files |
24 | 146 %{_bindir}/* |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
147 %{_mandir}/man1/* |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
148 %{_mandir}/man5/* |
16 | 149 |
150 | |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
151 %files libs |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
152 %{_libdir}/libpst.so.* |
250 | 153 %doc COPYING |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
154 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
155 |
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
|
156 %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
|
157 %files -n python3-%{name} |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
158 %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
|
159 %{python3_sitearch}/_*.so |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
160 %else |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
161 %files python |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
162 %{python_sitearch}/_*.so |
372
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
163 %endif |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
164 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
165 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
166 %files devel |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
167 %{_libdir}/libpst.so |
179
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
168 %{_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
|
169 %{_libdir}/pkgconfig/libpst.pc |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
170 |
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
171 |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
172 %files devel-doc |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
173 %{_datadir}/doc/%{name}/devel/ |
196
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
174 |
ffd1503a7530
build proper python rpm subpackage
Carl Byington <carl@five-ten-sg.com>
parents:
193
diff
changeset
|
175 |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
176 %files doc |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
177 %dir %{_datadir}/doc/%{name}/ |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
178 %{_datadir}/doc/%{name}/*.html |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
179 %{_datadir}/doc/%{name}/AUTHORS |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
180 %{_datadir}/doc/%{name}/COPYING |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
181 %{_datadir}/doc/%{name}/ChangeLog |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
182 %{_datadir}/doc/%{name}/NEWS |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
183 %{_datadir}/doc/%{name}/README |
180
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
184 |
265c7a65b75b
switch back to fully versioned subpackage dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
179
diff
changeset
|
185 |
16 | 186 %changelog |
401
c1b1bbd42696
Markus Schnalke - fix from Debian for vcard version format
Carl Byington <carl@five-ten-sg.com>
parents:
399
diff
changeset
|
187 * Sun Mar 22 2020 Carl Byington <carl@five-ten-sg.com> 0.6.75-1 |
c1b1bbd42696
Markus Schnalke - fix from Debian for vcard version format
Carl Byington <carl@five-ten-sg.com>
parents:
399
diff
changeset
|
188 - Markus Schnalke - fix from Debian for vcard version format. |
c1b1bbd42696
Markus Schnalke - fix from Debian for vcard version format
Carl Byington <carl@five-ten-sg.com>
parents:
399
diff
changeset
|
189 |
403
6c69b56d7173
merge fedora spec comments
Carl Byington <carl@five-ten-sg.com>
parents:
401
diff
changeset
|
190 * Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.74-2 |
6c69b56d7173
merge fedora spec comments
Carl Byington <carl@five-ten-sg.com>
parents:
401
diff
changeset
|
191 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
6c69b56d7173
merge fedora spec comments
Carl Byington <carl@five-ten-sg.com>
parents:
401
diff
changeset
|
192 |
394
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
193 * Sun Jan 12 2020 Carl Byington <carl@five-ten-sg.com> 0.6.74-1 |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
194 - Paul Wise - many changes for debian: |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
195 - Add missing linking with zlib and libpthread/librt |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
196 - Use PKG_CHECK_MODULES to find the gsf-1 library |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
197 - Fix usage of indefinite articles |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
198 - Fix a number of spelling mistakes |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
199 - Use plain make when building from Mercurial |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
200 - Add operator and quotes to the AX_PYTHON_DEVEL parameter |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
201 - Remove files copied in by autotools |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
202 - Add AM_GNU_GETTEXT macros |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
203 - Rename configure.in to configure.ac |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
204 - add extern "C" to header for use with C++ code |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
205 |
395
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
206 * Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.6.72-6 |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
207 - Rebuilt for Python 3.8 |
fbe51207b963
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
394
diff
changeset
|
208 |
394
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
209 * Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.72-5 |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
210 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
211 |
383
2379a4d8d9c7
Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents:
382
diff
changeset
|
212 * 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
|
213 - 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
|
214 |
394
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
215 * Sat Jun 08 2019 Leigh Scott <leigh123linux@googlemail.com> - 0.6.72-4 |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
216 - Add configure option for boost-python |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
217 - Remove all old fedora conditionals |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
218 - Update spec file to comply with packaging guidelines |
3cbda103e0ef
changes to build on centos 6
Carl Byington <carl@five-ten-sg.com>
parents:
390
diff
changeset
|
219 |
382
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
220 * 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
|
221 - 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
|
222 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
223 * 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
|
224 - Rebuilt for Boost 1.69 |
7eab29e13e61
changes for building on fedora 30
Carl Byington <carl@five-ten-sg.com>
parents:
380
diff
changeset
|
225 |
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
|
226 * 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
|
227 - allow all 7 days in bydays recurring appointment |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
228 - update for Fedora Python packaging |
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
|
229 - 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
|
230 |
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
|
231 * 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
|
232 - 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
|
233 |
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
|
234 * 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
|
235 - 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
|
236 |
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
|
237 * 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
|
238 - 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
|
239 |
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
|
240 * 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
|
241 - 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
|
242 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
|
243 |
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
|
244 * 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
|
245 - 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
|
246 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
|
247 |
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
|
248 * 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
|
249 - 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
|
250 |
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
|
251 * 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
|
252 - 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
|
253 |
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
|
254 * Fri Jul 21 2017 Carl Byington <carl@five-ten-sg.com> 0.6.71-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
255 - 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
|
256 - 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
|
257 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
|
258 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
259 * 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
|
260 - Rebuilt for Boost 1.64 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
261 |
5b52efe35bd8
fedora python nameing scheme changes
Carl Byington <carl@five-ten-sg.com>
parents:
370
diff
changeset
|
262 * 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
|
263 - 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
|
264 |
370
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
265 * 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
|
266 - 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
|
267 |
8700cc322c0c
Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents:
368
diff
changeset
|
268 * 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
|
269 - 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
|
270 |
368 | 271 * Sat Oct 29 2016 Carl Byington <carl@five-ten-sg.com> 0.6.69-1 |
272 - fix bugs in code allowing folders containing multiple item types | |
273 | |
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
|
274 * 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
|
275 - 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
|
276 - 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
|
277 |
3a1d25c579c6
allow folders containing multiple item types; better detection of valid internet headers
Carl Byington <carl@five-ten-sg.com>
parents:
361
diff
changeset
|
278 * 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
|
279 - 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
|
280 |
361 | 281 * Wed Jul 06 2016 Carl Byington <carl@five-ten-sg.com> 0.6.67-1 |
282 - Jeffrey Morlan - multiple bug fixes and an optimization | |
283 | |
284 * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.66-3 | |
285 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild | |
286 | |
287 * Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 0.6.66-2 | |
288 - Rebuilt for Boost 1.60 | |
289 | |
353
19b795b6f6a0
Added Content-ID header support
Carl Byington <carl@five-ten-sg.com>
parents:
350
diff
changeset
|
290 * 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
|
291 - Igor Stroh - Added Content-ID header support |
19b795b6f6a0
Added Content-ID header support
Carl Byington <carl@five-ten-sg.com>
parents:
350
diff
changeset
|
292 |
349
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
293 * 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
|
294 - 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
|
295 - 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
|
296 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
297 * 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
|
298 - Rebuilt for Boost 1.59 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
299 |
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
|
300 * 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
|
301 - 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
|
302 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
303 * 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
|
304 - rebuild for Boost 1.58 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
305 |
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
|
306 * 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
|
307 - 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
|
308 |
a57c15b3108a
Jeffrey Morlan - fix multiple Content-Type headers
Carl Byington <carl@five-ten-sg.com>
parents:
345
diff
changeset
|
309 * 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
|
310 - 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
|
311 |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
312 * Mon Mar 09 2015 Carl Byington <carl@five-ten-sg.com> 0.6.64-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
313 - fix line wrap on Python provides_exclude_from |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
314 - 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
|
315 - 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
|
316 that contain embedded null chars. |
344
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
317 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
318 * 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
|
319 - Rebuild for boost 1.57.0 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
320 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
321 * 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
|
322 - 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
|
323 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
324 * 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
|
325 - 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
|
326 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
327 * 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
|
328 - rebuild for boost 1.55.0 |
aedcf979f439
fix unchecked errors found by cppcheck
Carl Byington <carl@five-ten-sg.com>
parents:
340
diff
changeset
|
329 |
340
0f3185217313
Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents:
338
diff
changeset
|
330 * 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
|
331 - 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
|
332 |
336
f1595a84790b
Old dependency filter breaks file coloring
Carl Byington <carl@five-ten-sg.com>
parents:
335
diff
changeset
|
333 * 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
|
334 - 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
|
335 |
332
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
336 * 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
|
337 - move documentation to unversioned directory |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
338 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
339 * 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
|
340 - 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
|
341 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
342 * 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
|
343 - Rebuild for boost 1.54.0 |
160cf301ad4d
fedora unversioned documentation directories
Carl Byington <carl@five-ten-sg.com>
parents:
329
diff
changeset
|
344 |
329 | 345 * Wed Jun 12 2013 Carl Byington <carl@five-ten-sg.com> 0.6.60-1 |
328 | 346 - patch from Dominique Leuenberger to add AC_USE_SYSTEM_EXTENSIONS |
329 | 347 - add readpst -a option for attachment stripping |
328 | 348 |
349 * Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 0.6.59-2 | |
350 - rebuild for new GD 2.1.0 | |
351 | |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
352 * 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
|
353 - add autoconf checking for libgsf |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
354 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
355 * 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
|
356 - add autoreconf for aarch64 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
357 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
358 * 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
|
359 - Rebuild for Boost-1.53.0 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
360 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
361 * 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
|
362 - Rebuild for Boost-1.53.0 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
363 |
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
364 * 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
|
365 - 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
|
366 |
321 | 367 * 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
|
368 - bugzilla 852414, remove unnecessary dependencies |
6fc49b69b1dc
remove unnecessary dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
318
diff
changeset
|
369 |
317 | 370 * 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
|
371 - filter private provides from rpm |
319
6fc49b69b1dc
remove unnecessary dependencies
Carl Byington <carl@five-ten-sg.com>
parents:
318
diff
changeset
|
372 - 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
|
373 |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
374 * Thu Aug 09 2012 Carl Byington <carl@five-ten-sg.com> - 0.6.55-2 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
375 - rebuild for Python |
305 | 376 |
377 * Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.54-6 | |
378 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild | |
379 | |
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
|
380 * 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
|
381 - 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
|
382 - 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
|
383 - 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
|
384 |
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
|
385 * 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
|
386 - 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
|
387 |
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
|
388 * 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
|
389 - 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
|
390 |
301 | 391 * Sat Dec 24 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.54-3 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
392 - bump versions and prep for Fedora build |
301 | 393 |
394 * Wed Nov 30 2011 Petr Pisar <ppisar@redhat.com> - 0.6.53-3 | |
395 - Rebuild against boost-1.48 | |
396 | |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
397 * Mon Nov 14 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.54-2 |
301 | 398 - failed to bump version number |
399 | |
300
47abe56076da
embedded rfc822 messages might contain rtf encoded bodies
Carl Byington <carl@five-ten-sg.com>
parents:
294
diff
changeset
|
400 * 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
|
401 - 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
|
402 |
301 | 403 * Fri Sep 02 2011 Petr Pisar <ppisar@redhat.com> - 0.6.53-2 |
404 - Rebuild against boost-1.47 | |
405 | |
294 | 406 * Sun Jul 10 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.53-1 |
407 - add Status: header in output | |
408 - allow fork for parallel processing of individual email folders | |
409 in separate mode | |
410 - proper handling of --with-boost-python option | |
411 | |
283 | 412 * Sun May 22 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.52-1 |
413 - fix dangling freed pointer in embedded rfc822 message processing | |
414 - allow broken outlook internet header field - it sometimes contains | |
415 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
|
416 |
270 | 417 * Sun Apr 17 2011 Carl Byington <carl@five-ten-sg.com> - 0.6.51-1 |
418 - fix for buffer overrun; attachment size from the secondary | |
419 list of mapi elements overwrote proper size from the primary | |
420 list of mapi elements. | |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
421 Fedora bugzilla 696263 |
270 | 422 |
423 * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.49-4 | |
424 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild | |
425 | |
426 * Mon Feb 07 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.6.49-3 | |
427 - rebuild for new boost | |
428 | |
257
c947b8812120
rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents:
255
diff
changeset
|
429 * 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
|
430 - 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
|
431 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
|
432 |
270 | 433 * Wed Sep 29 2010 jkeating - 0.6.49-2 |
434 - Rebuilt for gcc bug 634757 | |
435 | |
255
ab87f9070ed2
fix to ignore embedded objects that are not email messages
Carl Byington <carl@five-ten-sg.com>
parents:
254
diff
changeset
|
436 * 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
|
437 - fix to ignore embedded objects that are not email messages |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
438 Fedora bugzilla 633498 |
255
ab87f9070ed2
fix to ignore embedded objects that are not email messages
Carl Byington <carl@five-ten-sg.com>
parents:
254
diff
changeset
|
439 |
254
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
440 * 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
|
441 - 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
|
442 - 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
|
443 - 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
|
444 - 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
|
445 |
fb66d428347d
switch to mboxrd quoting
Carl Byington <carl@five-ten-sg.com>
parents:
253
diff
changeset
|
446 * Sat Jul 31 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.47-6 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
447 - rebuild for Python dependencies |
253
115b871c61a1
fixes from fedora for python 2.7
Carl Byington <carl@five-ten-sg.com>
parents:
252
diff
changeset
|
448 |
115b871c61a1
fixes from fedora for python 2.7
Carl Byington <carl@five-ten-sg.com>
parents:
252
diff
changeset
|
449 * Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.47-4 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
450 - 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
|
451 |
4573b536177f
fix for broken internet headers from Outlook
Carl Byington <carl@five-ten-sg.com>
parents:
250
diff
changeset
|
452 * 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
|
453 - 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
|
454 |
249 | 455 * Wed Jul 07 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.47-2 |
250 | 456 - Subpackage Licensing, add COPYING to -libs. |
249 | 457 - patches from Kenneth Berland for solaris |
458 | |
247
85d77d7b034b
another patche from Kenneth Berland for solaris
Carl Byington <carl@five-ten-sg.com>
parents:
246
diff
changeset
|
459 * 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
|
460 - patches from Kenneth Berland for solaris |
5a82d41c883d
patches from Kenneth Berland for solaris
Carl Byington <carl@five-ten-sg.com>
parents:
244
diff
changeset
|
461 |
244
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
462 * 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
|
463 - 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
|
464 |
f2ae612fa62b
fixes for fedora 13 change in implicit dso linking semantics
Carl Byington <carl@five-ten-sg.com>
parents:
242
diff
changeset
|
465 * 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
|
466 - 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
|
467 |
242
67b24d6a45d6
patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents:
240
diff
changeset
|
468 * 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
|
469 - 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
|
470 - 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
|
471 |
240 | 472 * Sun Sep 20 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.44-1 |
473 - patch from Lee Ayres to add file name extensions in separate mode. | |
474 - allow mixed items types in a folder in separate mode. | |
475 | |
326
1e39dc490627
add autoconf checking for libgsf
Carl Byington <carl@five-ten-sg.com>
parents:
323
diff
changeset
|
476 * Sat Sep 12 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.43-1 |
232 | 477 - decode more of the pst format, some minor bug fixes |
478 - 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
|
479 - 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
|
480 now be used to process folders containing mixed item types. |
232 | 481 - fix segfault with embedded appointments |
482 - 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
|
483 - better detection of embedded rfc822 message attachments |
232 | 484 |
228
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
485 * 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
|
486 - 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
|
487 |
be1009c92ac2
patch from Fridrich Strba to build with DJGPP DOS cross-compiler
Carl Byington <carl@five-ten-sg.com>
parents:
225
diff
changeset
|
488 * 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
|
489 - 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
|
490 |
225
9859474779da
fix ax_python as done in libtorrent
Carl Byington <carl@five-ten-sg.com>
parents:
224
diff
changeset
|
491 * 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
|
492 - fix ax_python detection - should not use locate command |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
493 - checking for Fedora versions is not needed |
225
9859474779da
fix ax_python as done in libtorrent
Carl Byington <carl@five-ten-sg.com>
parents:
224
diff
changeset
|
494 |
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
|
495 * Tue Jun 23 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.40-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
496 - Fedora 11 has python2.6 |
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
|
497 - 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
|
498 |
06d759f640f6
fedora 11 has python2.6, remove pdf version of the man pages
Carl Byington <carl@five-ten-sg.com>
parents:
219
diff
changeset
|
499 * Sun Jun 21 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.39-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
500 - Fedora > 10 moved to boost-python-devel |
219
10ea2d132019
fedora > 10 moved to boost-python-devel
Carl Byington <carl@five-ten-sg.com>
parents:
218
diff
changeset
|
501 |
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
|
502 * Sun Jun 21 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.38-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
503 - 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
|
504 - 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
|
505 - 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
|
506 - 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
|
507 - 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
|
508 - 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
|
509 |
193 | 510 * 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
|
511 - 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
|
512 - 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
|
513 |
188 | 514 * Tue Apr 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.36-1 |
181 | 515 - 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
|
516 - other spec file cleanup |
83cb32e41f80
remove fully versioned -libs dependency from main package
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
517 |
176
ac6e22c8a9cf
build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents:
168
diff
changeset
|
518 * 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
|
519 - 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
|
520 - 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
|
521 |
168 | 522 * Thu Mar 19 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.34-1 |
523 - avoid putting mixed item types into the same output folder. | |
524 | |
165 | 525 * Tue Mar 17 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.33-1 |
526 - compensate for iconv conversion to utf-7 that produces strings that | |
527 are not null terminated. | |
528 - don't produce empty attachment files in separate mode. | |
529 | |
160
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
530 * 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
|
531 - fix ppc64 compile error |
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
532 |
157
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
533 * Sat Mar 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.31-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
534 - bump version for Fedora cvs tagging mistake |
157
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
535 |
155
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
536 * 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
|
537 - 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
|
538 - 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
|
539 object now. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
540 - 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
|
541 calendar files. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
542 |
146
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
543 * 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
|
544 - fix for 64bit on Fedora 11 |
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
545 |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
546 * 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
|
547 - 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
|
548 - improve character set handling. |
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
549 - 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
|
550 |
136
16770fc77139
fix for const correctness on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
134
diff
changeset
|
551 * 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
|
552 - 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
|
553 |
134
2d6bb72ad041
update changelog and dates
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
554 * 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
|
555 - 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
|
556 - cleanup of autoconf files. |
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
557 - 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
|
558 - 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
|
559 - 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
|
560 - 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
|
561 |
116
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
114
diff
changeset
|
562 * 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
|
563 - 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
|
564 |
114
e213bfcf9aa7
patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
565 * 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
|
566 - 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
|
567 |
112
554e9a422778
bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
568 * 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
|
569 - 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
|
570 |
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
|
571 * 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
|
572 - 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
|
573 - 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
|
574 - 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
|
575 |
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
|
576 * 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
|
577 - 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
|
578 - 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
|
579 |
104
39ba19372732
many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents:
103
diff
changeset
|
580 * 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
|
581 - 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
|
582 - 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
|
583 - 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
|
584 - 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
|
585 - 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
|
586 - 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
|
587 - avoid writing uninitialized data to debug log file |
102
8c4482be0b4c
remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
588 - 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
|
589 - 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
|
590 |
96
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
591 * 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
|
592 - Fix base64 encoding that could create long lines. |
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
593 - 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
|
594 |
93 | 595 * Thu Aug 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.18-1 |
596 - Fixes for iconv on Mac from Justin Greer. | |
597 | |
90
631d02d30a1c
More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents:
88
diff
changeset
|
598 * 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
|
599 - 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
|
600 |
88 | 601 * 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
|
602 - 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
|
603 |
85
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
604 * 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
|
605 - 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
|
606 - 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
|
607 |
82
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
608 * Sun Jun 15 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.14-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
609 - Fix my mistake in Debian packaging. |
82
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
610 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
78
diff
changeset
|
611 * 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
|
612 - 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
|
613 |
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
|
614 * Tue Jun 10 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.12-1 |
390
5c0ce43c7532
Fix a number of spelling mistakes
Paul Wise <pabs3@bonedaddy.net>
parents:
383
diff
changeset
|
615 - Patch from Joachim Metz for Debian packaging and |
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
|
616 - 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
|
617 |
75
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
618 * 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
|
619 - 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
|
620 - 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
|
621 - 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
|
622 |
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
|
623 * 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
|
624 - 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
|
625 |
71
1bd4491cf8ff
fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
626 * 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
|
627 - 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
|
628 - 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
|
629 |
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
|
630 * 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
|
631 - 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
|
632 - changes for Fedora packaging guidelines (#434727) |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
633 |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
634 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5 |
31 | 635 - merge changes from Joe Nahmias version |
636 | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
637 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3 |
24 | 638 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html |