Mercurial > libpst
annotate libpst.spec.in @ 171:6c1e75bc4cac
properly add trailing mime boundary in all modes
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 29 Mar 2009 08:51:13 -0700 |
parents | c1a2fd06ffe6 |
children | ac6e22c8a9cf |
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@ | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
4 Release: 1%{?dist} |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
5 License: GPLv2+ |
51 | 6 Group: Applications/Productivity |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
7 Source: http://www.five-ten-sg.com/%{name}/packages/%{name}-%{version}.tar.gz |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
8 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
9 URL: http://www.five-ten-sg.com/%{name}/ |
66
32f771bc9c1c
remove redundant requires from the spec file
Carl Byington <carl@five-ten-sg.com>
parents:
65
diff
changeset
|
10 Requires: ImageMagick |
65
800c6fde1cf6
build requires ImageMagick to see convert needed by pst2dii
Carl Byington <carl@five-ten-sg.com>
parents:
64
diff
changeset
|
11 BuildRequires: ImageMagick freetype-devel gd-devel libjpeg-devel zlib-devel |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
12 |
16 | 13 |
14 %description | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
15 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
|
16 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
|
17 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
|
18 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
|
19 Summation. |
16 | 20 |
21 | |
22 %prep | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
23 %setup -q |
16 | 24 |
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
|
25 |
16 | 26 %build |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
27 %configure |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
28 make %{?_smp_mflags} |
16 | 29 |
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
|
30 |
16 | 31 %install |
32 rm -rf $RPM_BUILD_ROOT | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
33 make DESTDIR=$RPM_BUILD_ROOT install |
16 | 34 |
35 | |
36 %clean | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
37 rm -rf $RPM_BUILD_ROOT |
16 | 38 |
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
|
39 |
16 | 40 %files |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
41 %defattr(-,root,root,-) |
24 | 42 %{_bindir}/* |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
43 %{_mandir}/man1/* |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
44 %{_mandir}/man5/* |
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
|
45 %docdir %{_datadir}/doc/%{name}-%{version} |
90aa7814ad1f
Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents:
66
diff
changeset
|
46 %{_datadir}/doc/%{name}-%{version} |
16 | 47 |
48 | |
49 %changelog | |
168 | 50 * Thu Mar 19 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.34-1 |
51 - avoid putting mixed item types into the same output folder. | |
52 | |
165 | 53 * Tue Mar 17 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.33-1 |
54 - compensate for iconv conversion to utf-7 that produces strings that | |
55 are not null terminated. | |
56 - don't produce empty attachment files in separate mode. | |
57 | |
160
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
58 * 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
|
59 - fix ppc64 compile error |
252ad66d3d6e
fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents:
157
diff
changeset
|
60 |
157
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
61 * Sat Mar 14 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.31-1 |
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
62 - bump version for fedora cvs tagging mistake |
cc3c71da9fe6
bump version for fedora cvs tagging mistake
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
63 |
155
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
64 * 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
|
65 - 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
|
66 - 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
|
67 object now. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
68 - 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
|
69 calendar files. |
84e0f6222adf
add changelog entry in rpm spec file
Carl Byington <carl@five-ten-sg.com>
parents:
146
diff
changeset
|
70 |
146
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
71 * 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
|
72 - fix for 64bit on Fedora 11 |
0695de3b5a98
fix for 64bit on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
73 |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
74 * 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
|
75 - 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
|
76 - improve character set handling. |
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
141
diff
changeset
|
77 - 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
|
78 |
136
16770fc77139
fix for const correctness on Fedora 11
Carl Byington <carl@five-ten-sg.com>
parents:
134
diff
changeset
|
79 * 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
|
80 - 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
|
81 |
134
2d6bb72ad041
update changelog and dates
Carl Byington <carl@five-ten-sg.com>
parents:
129
diff
changeset
|
82 * 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
|
83 - 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
|
84 - cleanup of autoconf files. |
cbf63dd3f109
NEWS and spec file consistent with ChangeLog
Carl Byington <carl@five-ten-sg.com>
parents:
122
diff
changeset
|
85 - 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
|
86 - 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
|
87 - 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
|
88 - 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
|
89 |
116
ed2a260bbb98
improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents:
114
diff
changeset
|
90 * 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
|
91 - 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
|
92 |
114
e213bfcf9aa7
patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
93 * 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
|
94 - 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
|
95 |
112
554e9a422778
bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
96 * 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
|
97 - 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
|
98 |
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
|
99 * 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
|
100 - 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
|
101 - 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
|
102 - 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
|
103 |
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
|
104 * 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
|
105 - 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
|
106 - 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
|
107 |
104
39ba19372732
many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents:
103
diff
changeset
|
108 * 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
|
109 - 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
|
110 - 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
|
111 - 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
|
112 - 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
|
113 - 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
|
114 - 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
|
115 - avoid writing uninitialized data to debug log file |
102
8c4482be0b4c
remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
116 - 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
|
117 - 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
|
118 |
96
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
119 * 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
|
120 - Fix base64 encoding that could create long lines. |
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
121 - 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
|
122 |
93 | 123 * Thu Aug 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.18-1 |
124 - Fixes for iconv on Mac from Justin Greer. | |
125 | |
90
631d02d30a1c
More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents:
88
diff
changeset
|
126 * 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
|
127 - 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
|
128 |
88 | 129 * 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
|
130 - 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
|
131 |
85
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
132 * 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
|
133 - 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
|
134 - 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
|
135 |
82
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
136 * Sun Jun 15 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.14-1 |
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
137 - Fix my mistake in debian packaging. |
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
138 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
78
diff
changeset
|
139 * 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
|
140 - 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
|
141 |
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
|
142 * Tue Jun 10 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.12-1 |
535075b4d261
Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
143 - Patch from Joachim Metz for debian packaging and |
535075b4d261
Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
144 - 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
|
145 |
75
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
146 * 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
|
147 - 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
|
148 - 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
|
149 - 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
|
150 |
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
|
151 * 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
|
152 - 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
|
153 |
71
1bd4491cf8ff
fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
154 * 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
|
155 - 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
|
156 - 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
|
157 |
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
|
158 * 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
|
159 - 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
|
160 - changes for Fedora packaging guidelines (#434727) |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
161 |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
162 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5 |
31 | 163 - merge changes from Joe Nahmias version |
164 | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
165 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3 |
24 | 166 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html |
167 |