annotate debian/libpst.spec @ 173:d9393349ab29

new debianization from hggdh
author Carl Byington <carl@five-ten-sg.com>
date Sat, 04 Apr 2009 19:23:33 -0700
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
173
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
1 Summary: Utilities to convert Outlook .pst files to other formats
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2 Name: libpst
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
3 Version: 0.6.25
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4 Release: 1%{?dist}
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5 License: GPLv2+
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 Group: Applications/Productivity
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
7 Source: http://www.five-ten-sg.com/%{name}/packages/%{name}-%{version}.tar.gz
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
9 URL: http://www.five-ten-sg.com/%{name}/
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
10 Requires: ImageMagick
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
11 BuildRequires: ImageMagick freetype-devel gd-devel libjpeg-devel zlib-devel
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
12
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
13
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
14 %description
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
15 The Libpst utilities include readpst which can convert email messages
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
16 to both mbox and MH mailbox formats, pst2ldif which can convert the
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
17 contacts to .ldif format for import into ldap databases, and pst2dii
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
18 which can convert email messages to the DII load file format used by
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
19 Summation.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
20
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
21
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
22 %prep
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
23 %setup -q
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
24
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
25
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
26 %build
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
27 %configure
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
28 make %{?_smp_mflags}
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
29
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
30
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
31 %install
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
32 rm -rf $RPM_BUILD_ROOT
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
33 make DESTDIR=$RPM_BUILD_ROOT install
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
34
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
35
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
36 %clean
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
37 rm -rf $RPM_BUILD_ROOT
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
38
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
39
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
40 %files
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
41 %defattr(-,root,root,-)
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
42 %{_bindir}/*
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
43 %{_mandir}/man1/*
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
44 %{_mandir}/man5/*
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
45 %docdir %{_datadir}/doc/%{name}-%{version}
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
46 %{_datadir}/doc/%{name}-%{version}
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
47
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
48
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
49 %changelog
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
50 * Fri Jan 16 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.25-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
51 - improve handling of content-type charset values in mime parts
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
52
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
53 * Thu Dec 11 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.24-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
54 - patch from Chris Eagle to build on cygwin
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
55
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
56 * Thu Dec 04 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.23-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
57 - bump version to avoid cvs tagging mistake in fedora
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
58
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
59 * Fri Nov 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.22-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
60 - patch from David Cuadrado to process emails with type PST_TYPE_OTHER
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
61 - base64_encode_multiple() may insert newline, needs larger malloc
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
62 - subject lines shorter than 2 bytes could segfault
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
63
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
64 * Tue Oct 21 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.21-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
65 - fix title bug with old schema in pst2ldif.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
66 - also escape commas in distinguished names per rfc4514.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
67
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
68 * Thu Oct 09 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.20-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
69 - add configure option --enable-dii=no to remove dependency on libgd.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
70 - many fixes in pst2ldif by Robert Harris.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
71 - add -D option to include deleted items, from Justin Greer
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
72 - fix from Justin Greer to add missing email headers
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
73 - fix from Justin Greer for my_stristr()
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
74 - fix for orphan children when building descriptor tree
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
75 - avoid writing uninitialized data to debug log file
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
76 - remove unreachable code
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
77 - create dummy top-of-folder descriptor if needed for corrupt pst files
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
78
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
79 * Sun Sep 14 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.19-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
80 - Fix base64 encoding that could create long lines.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
81 - Initial work on a .so shared library from Bharath Acharya.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
82
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
83 * Thu Aug 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.18-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
84 - Fixes for iconv on Mac from Justin Greer.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
85
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
86 * Tue Aug 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.17-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
87 - More fixes for 32/64 bit portability on big endian ppc.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
88
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
89 * Tue Aug 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.16-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
90 - Use inttypes.h for portable printing of 64 bit items.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
91
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
92 * Wed Jul 30 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.15-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
93 - Patch from Robert Simpson for file handle leak in error case.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
94 - Fix for missing length on lz decompression, bug found by Chris White.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
95
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
96 * Sun Jun 15 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.14-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
97 - Fix my mistake in debian packaging.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
98
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
99 * Fri Jun 13 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.13-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
100 - Patch from Robert Simpson for encryption type 2.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
101
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
102 * Tue Jun 10 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.12-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
103 - Patch from Joachim Metz for debian packaging and
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
104 - fix for incorrect length on lz decompression
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
105
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
106 * Tue Jun 03 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.11-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
107 - Use ftello/fseeko to properly handle large files.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
108 - Document and properly use datasize field in b5 blocks.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
109 - Fix some MSVC compile issues and collect MSVC dependencies into one place.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
110
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
111 * Thu May 29 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.10-1
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
112 - Patch from Robert Simpson for doubly-linked list code and arrays of unicode strings.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
113
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
114 * Fri May 16 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.9
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
115 - Patch from Joachim Metz for 64 bit compile.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
116 - Fix pst format documentation for 8 byte backpointers.
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
117
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
118 * Wed Mar 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.8
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
119 - Initial version of pst2dii to convert to Summation dii load file format
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
120 - changes for Fedora packaging guidelines (#434727)
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
121
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
122 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
123 - merge changes from Joe Nahmias version
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
124
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
125 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
126 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html
d9393349ab29 new debianization from hggdh
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
127