Mercurial > libpst
annotate libpst.spec.in @ 114:e213bfcf9aa7 stable-0-6-24
patch from Chris Eagle to build on cygwin
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 11 Dec 2008 11:58:22 -0800 |
parents | 554e9a422778 |
children | ed2a260bbb98 |
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 | |
114
e213bfcf9aa7
patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
50 * 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
|
51 - 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
|
52 |
112
554e9a422778
bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents:
110
diff
changeset
|
53 * 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
|
54 - 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
|
55 |
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
|
56 * 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
|
57 - 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
|
58 - 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
|
59 - 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
|
60 |
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
|
61 * 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
|
62 - 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
|
63 - 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
|
64 |
104
39ba19372732
many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents:
103
diff
changeset
|
65 * 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
|
66 - 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
|
67 - 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
|
68 - 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
|
69 - 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
|
70 - 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
|
71 - 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
|
72 - avoid writing uninitialized data to debug log file |
102
8c4482be0b4c
remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
73 - 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
|
74 - 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
|
75 |
96
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
76 * 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
|
77 - Fix base64 encoding that could create long lines. |
2e3ec9511166
update the release notes
Carl Byington <carl@five-ten-sg.com>
parents:
93
diff
changeset
|
78 - 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
|
79 |
93 | 80 * Thu Aug 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.18-1 |
81 - Fixes for iconv on Mac from Justin Greer. | |
82 | |
90
631d02d30a1c
More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents:
88
diff
changeset
|
83 * 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
|
84 - 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
|
85 |
88 | 86 * 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
|
87 - 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
|
88 |
85
582e927756d3
Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents:
82
diff
changeset
|
89 * 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
|
90 - 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
|
91 - 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
|
92 |
82
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
93 * 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
|
94 - Fix my mistake in debian packaging. |
b370d9e8aa10
Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents:
79
diff
changeset
|
95 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
78
diff
changeset
|
96 * 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
|
97 - 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
|
98 |
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
|
99 * 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
|
100 - 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
|
101 - 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
|
102 |
75
987aa872294e
Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents:
73
diff
changeset
|
103 * 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
|
104 - 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
|
105 - 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
|
106 - 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
|
107 |
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
|
108 * 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
|
109 - 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
|
110 |
71
1bd4491cf8ff
fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents:
70
diff
changeset
|
111 * 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
|
112 - 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
|
113 - 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
|
114 |
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
|
115 * 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
|
116 - 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
|
117 - changes for Fedora packaging guidelines (#434727) |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
118 |
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
119 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5 |
31 | 120 - merge changes from Joe Nahmias version |
121 | |
64
2c6040b6e8f8
packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents:
51
diff
changeset
|
122 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3 |
24 | 123 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html |
124 |