Commit graph

94165 commits

Author SHA1 Message Date
wiz
ef28bd7c83 Bump PKGREVISION for libetpan RECOMMENDED bump. 2006-03-08 06:34:48 +00:00
wiz
ad6f5e6ba1 Remove PKGREVISION after update a minute ago. 2006-03-08 06:34:25 +00:00
wiz
c70823e69b Update to 0.43. Update to 0.42 provided in PR 32760 by George Michaelson.
0.43:
SSL bugfixes.

0.42:
SMTP addition.
bugfixes.

2005-12-02 - libetpan-0.41

    * release 0.41 - Transfixion
        * passphrase is implemented for S/MIME and PGP.
        * avoid symbols conflict between GnuTLS and OpenSSL.

2005-10-07 - libetpan-0.40 - hoa

    * release 0.40 - Kashmir

	* SSL initialization is optional.

2005-09-16 - libetpan-0.39 - hoa

    * release 0.39 - Deliverance

	* compatibility with GnuTLS
	* SASL for higher level

Add cyrus-sasl dependency.
Bump RECOMMENDED for shlib major bump.
2006-03-08 06:33:31 +00:00
wiz
8f61f8681b p5-Spreadsheet-WriteExcel updated to 2.16. 2006-03-08 06:05:28 +00:00
wiz
94caff876f Update to 2.16, provided by Mark E. Perkins in PR 30934:
2.16 January 6 2005 - Major

    + Rewrote and reinstated the write_comment() method to take
      account of the changes in the Excel 97+ comment format.
      Currently conflicts with insert_bitmap(), see docs.

    + Added standard styles such as comma, percent and currency.

    ! Changed write_url() methods to allow numbers or formulas
      as well as strings as the optional text.
      Requested by many.

    + Documented use of encoding flag in add_worksheet() to allow
      handling of UTF-16 sheet names.

    + Added encoding flag to merge_range() method to allow
      handling of UTF-16 strings. Requested by many.
      Added merge6.pl example program.

    + Added hide_zero() worksheet method to allow hiding of zero
      values in cells.

    + Added print_across() worksheet method to allow changing of
      the default print direction.

    + Added right_to_left() worksheet method to allow changing of
      the default worksheet direction in eastern versions of Excel.

    + Documented the Worksheet hide() method.

    + Added comments1.pl and comments2.pl example programs.

    + Added tests for the internal methods used by write_comment().



2.15 September 18 2005 - Minor

    ! Changed OLE container stream name from "Book" to "Workbook"
      for compatibility with some third party apps.
      Thanks Wieland Pusch and Kevin McMahon.

    ! Fixed bug that caused all worksheets to be selected in
      OpenOfficeOrg causing strange linking of data between
      Worksheets. Thanks  M. Brodbelt. See
      http://rt.cpan.org/NoAuth/Bug.html?id=14094
      http://www.openoffice.org/issues/show_bug.cgi?id=52955

    ! Changed file creation from end of program to the start of
      program in order to avoid race conditions and extra file
      creation on VMS.

    + Added optional user supplied results for formulas as a
      workaround for uncalcuated values in some non-Excel apps.
      Added formula_result.pl example of above.


2.14 May 9 2005 - Minor

    ! Fixed handling of Unicode font names.


2.13 April 20 2005 - Minor

    ! Made it a fatal error to use a merged format in a non-
      merged cell (and vice-versa). This is a temporary measure
      to prevent people from shooting themselves in the foot
      until the Format.pm code can be refactored.

    + Add 01_merge_formats.t test for above.

    + Added date_time tests.


2.12 March 22 2005 - Minor

    + Added further Unicode support. The following methods now
      handle uft8 in perl 5.8:
      add_worksheet()
      set_header()
      set_footer()
      set_font()
      set_num_format()

    + Added unicode_cyrillic.pl example.

    + Added 01_add_worksheet.t test.


2.11 September 30 2004 - Minor

    - Removed undocumented date_time handling from write() to
      avoid potential false matches.

    + Added add_write_handler() method to allow users to add
      their own data handlers to write().

    + Added 4 write_handler examples.


2.10 September 23 2004 - Major

    + Added chart support via external templates.
      Added Chart.pm and add_chart_ext() method to Workbook object.
      Added /charts directory with examples and documentation

    + Added write_date_time() worksheet method for writing dates
      and times in Excel date format.
      Added date_time.pl example.

    + Added automatic Unicode handling via utf8 in perl 5.8 and
      later. Thanks Mark Fowler.
      Added several unicode_*.pl examples in different encodings.
      Thanks to Sean Burke for the sample encodings.

    + Added write_to_scalar.pl example in order to answer frequently
      asked question about writing an Excel file to a scalar.


2.04 August 18 2004 - Minor

    ! Fixed handling of Euro symbol in num_format() strings.

    ! Renamed the Excel 5 style merge() format to the more correct
      center_across(). Updated examples accordingly.

    ! Added bug warning about using merge formats outside of
      merged ranges.

    + Fixed handling of doubled double quotes in formula strings.
      Thanks to a tip from merlyn.

    + The 2.xx versions are now compatible with MS Access. Removed
      statements to the contrary.


2.03 July 4 2004 - Minor

    ! Fixed bug that prevented column outlines from displaying.
      Thanks to Marc Rosenthal.

    ! Enhanced add_worksheet() name checking to exclude case-
      insensitive duplicate names.
      Thanks to James Wilkinson.

    ! Internal fix to number of rows in several (unseen) places.

    + Added mod_perl 2 example program from Matisse Enzer. Thanks.


2.02 May 28 2004 - Minor

    + Fixed internal version numbers to keep CPAN.pm happy.
      Thanks to David Dyck.

    + Minor changes to demo.pl merge5.pl and the html docs.


2.01 May 27 2004 - Major

    This version is a MAJOR revision to Spreadsheet::WriteExcel. The
    format of the Excel file that it produces has been updated from
    Excel 5 to Excel 97. This allows support for long, 32k character
    strings and Unicode.

    DUE TO THE MAJOR INTERNAL CHANGES IT IS RECOMMENDED THAT YOU TEST
    THIS UPGRADE FULLY BEFORE DEPLOYING IT.

    Also note that this version can be 1.5 to 2 times slower than
    previous versions and the write_comment() method has been
    temporarily removed. These issues will be fixed in later releases.


    + Changed the default Excel format to Excel 97.

    + Added support for strings up to 32767 character.

    + Added support for Unicode strings.

    + Improved speed in relation to pre-release versions.
      However, it is still slower than the 1.xx versions.

    + Improved OpenOffice.org support.

    + Added more examples: diag_border.pl, indent.pl,
      unicode.pl, unicode_japan.pl, unicode_list.pl

    + Changed the distro dir structure.

    - Temporarily removed write_comment() support since the Excel 5
      version isn't compatible with Excel 97+.


1.01 May 24 2004 - Minor

    ! Small non-bug fix to write_comment().


0.43 April 28 2004 - Minor

    ! Fixed longstanding bug where page setup features didn't
      show up in OpenOffice.org.

    ! Fixed localised @_ bug when using threaded perls.
      Thanks Tamas Gulacsi and Stephan Loescher.


0.42 August 26 2003 - Minor

    ! Fixed bug when using IO::Sclalar object as a filehandle.
      Thanks to Kyle R. Burton and David Robins.

    ! Fixed minor formula parser bug.
      Thanks Michael Braig

    ! Fixed handling of column sizing for widths less than 1
      unit (again). Thanks to Rubio (again).

    ! Failed new() returns undef instead of croak()ing as per docs.
2006-03-08 06:04:59 +00:00
wiz
3830394913 bsflite updated to 0.81p2. 2006-03-08 05:58:51 +00:00
wiz
432de70e24 Update to 0.81p2, provided by Evan Hall in PR 32957.
0.81p2 - 02/13/2006
* For some reason some IM's contain an extra bit of information
that imcomm choked on, so certain incoming messages would not
be shown. I made tlv_split() in imcomm ignore the number of tlv's
the server tells us, and this fixed it.

0.81p1 - 01/31/2006

* Fixed a bug that made AOL's Triton client ignore incoming IM's
from bsflite.
2006-03-08 05:57:58 +00:00
wiz
b4c58e62b9 - quagga-0.99.3 (thanks, gdt). 2006-03-08 05:57:19 +00:00
hiramatsu
5824dc9306 www/p5-Jemplate is updated to 0.17. 2006-03-08 05:02:06 +00:00
hiramatsu
f9ce2b2f72 Updated to 0.17.
---
version: 0.17
date:    Tue Feb 28 22:44:04 PST 2006
changes:
- Fixed ajax callback bugs
- Fixed inserting result into a dom element in Safari
- Cory Bennett fixed Test.Harness on Konqueror
- Cory sorted keys in FOR i IN obj. This should give expected consistency to
  users.
- Cees Hek implemented all the string functions. With tests!!
- Cees added the truncate filter.
- Yann Kerherv¡¦ changed the position of arguments in filters
- Yann fixed the indent and html filters and added repeat filter
- Yann adapted some tests from the TT test suite!

---
version: 0.16
date:    Mon Feb 27 22:14:37 PST 2006
changes:
- Ingy added JSON and Ajax support into Jemplate.js
- Ingy got tests working on Mozilla, IE, Safari and Opera
- Ingy streamlined Makefiles and testing
- Ingy refactored documentation
- Cory Bennett JAVASCRIPT directive for inlining Javascript
- Cory added -nojs flag to `jemplate` command line tool
- Cory eliminated nasty eq/== hack
- Cory added support for foo.0 numeric indexing
- Cory added quoting support
- Cory got [% FOR i IN obj %] working to iterate over keys of object
- Cory fixed [% "$foo/$bar" %] for quoted strings
- Cory fixed concatenation
- Yann Kerherv¡¦ added filtering support
- Yann added these filters: collapse, html, html_break, html_entity,
  html_line_break, html_para, indent, lcfirst, lower, null, trim, ucfirst,
  upper, uri
- Ingy removed PERL and RAWPERL support
- Cory made test output display nicely
- Ingy made test index link to subtests

---
version: 0.15
date:    Fri Feb 24 18:02:46 PST 2006
changes:
- Support SWITCH CASE and WRAPPER directives thanks to xantus and yann!
- Now the Stash really works, thanks to Miyagawa!
- Test.Base javascript runtime test framework!
- Support all the TT array primitives in JS!
2006-03-08 05:00:39 +00:00
minskim
8518e9eb73 PKGREVISION of ethereal was bumped due to dependency change on Darwin. 2006-03-08 04:44:00 +00:00
minskim
d8a2fb9d19 Use native libpcap on Darwin 8.x. Suggested by Juha-Matti Liukkonen in
PR pkg/32719.
2006-03-08 04:39:20 +00:00
minskim
7ef0a62ed5 Allow to build diskio and mibII modules on Darwin 8.x. Without them,
the package doesn't build due to some undefined functions.
2006-03-08 02:52:14 +00:00
minskim
f5825cacf3 Remove a duplicate case value on Darwin 8.x. 2006-03-08 02:47:13 +00:00
grant
4d0d0c47a5 postgresql configure doesn't always correctly detect that it needs
libintl, so pass it via LIBS to configure.

fixes build on Solaris.
2006-03-08 02:29:06 +00:00
minskim
5f391d7eae Set LOWER_OPSYS_VERSUFFIX on Darwin. 2006-03-08 01:56:46 +00:00
gdt
0d761d2cfb note addition of quagga-devel 0.99.3 2006-03-08 01:49:12 +00:00
gdt
ab7f19aced quagga is a multiprotocol routing suite.
This is 0.99.3, a development snapshot.
2006-03-08 01:46:05 +00:00
dillo
5789e68fc0 Add antixls (noted by wiz). 2006-03-07 23:22:05 +00:00
christos
7ea50671e0 Don't give people a false sense of security. 2006-03-07 23:14:39 +00:00
minskim
1f3934d03e Note PKGREIVISION bump of fontforge. 2006-03-07 23:10:01 +00:00
minskim
5e4d23902d Use UTF-8 characters instead of \x escape sequences in ja.po as
suggested by OBATA Akio in PR pkg/32996.  This is a workaround for
PR bin/32650.

Bump PKGREVISION.
2006-03-07 23:09:28 +00:00
peter
ca3a74c61c Mention mail/spamd update. 2006-03-07 22:33:16 +00:00
peter
d0f1fe4fab Update spamd to 20060307.
Changes:
- Sync with OpenBSD 3.9 branch.
  No new functionality, only a few bug/documentation fixes.

- All major BSDs are supported now (NetBSD, OpenBSD, FreeBSD and DragonFly).
  Thanks to Jeremy C. Reed for providing patches for DragonFly.
2006-03-07 22:32:23 +00:00
adrianp
c9020929e7 Fix build after recent irssi bump 2006-03-07 22:18:53 +00:00
minskim
b68fba2e15 This package uses gettext functions without "-lintl". Add dependency
on gettext-lib explicitly and set BROKEN_GETTEXT_DETECTION.
2006-03-07 20:39:55 +00:00
reed
242b073d74 For the user or group removal message, don't set they can be removed
if no other packages are using them, but if no other "software" is using
them. Just in case, they are using a user and/or group without a package
using it.
2006-03-07 20:31:17 +00:00
wiz
fbc09111a6 + glib2-2.10.1, gnopernicus-1.0.3, gtk-doc-1.5, libcroco-0.6.1,
seahorse-0.9.0.
2006-03-07 20:23:26 +00:00
tonio
50c90794e3 Note the update for mail/isync to 1.0.2 2006-03-07 20:21:42 +00:00
tonio
144f80ebce Update mail/isync to 1.0.2
- remove patch-af, as it is already in the release
- take maintainership.

Changelog:
* src/compat/main.c: fix 'isync -w' writing .mbsyncrc to a wrong directory
* src/sync.c: less confusing uid ranges in debug
* src/sync.c: - sanitize flag handling of expired messages
  - don't record we synced flags if we didn't
  - remove now superfluous temporary rflags
* src/drv_maildir.c: less confusing error message on invalid mailbox.
* src/drv_imap.c:
revert 1.8 - what was i smoking?! the CREATE argument is already quoted;
we just extracted it from the previous command. ( that was patch-af )
* src/drv_maildir.c:
  make flag changes unset "new" status - unless a ghost is acting in the
  background, a flag change indicates that the message was at least
  noticed.
2006-03-07 20:20:26 +00:00
peter
829b22902c Lower the pflkm dependency from 20041025 to 20040501 (OpenBSD 3.5).
This should fix DragonFly, which seems to have pf from 3.5.
2006-03-07 19:11:54 +00:00
minskim
075adf3095 This package uses gettext functions without "-lintl". Add dependency
on gettext-lib explicitly and set BROKEN_GETTEXT_DETECTION.
2006-03-07 18:56:46 +00:00
minskim
1e1f695b47 Remove an obsolete patch (hi drochner!). 2006-03-07 18:29:58 +00:00
rpaulo
afc31bdc39 Since I'm still working working on it, don't try to build this pkg on
NetBSD <= 3 and Interix (should work on other systems).
2006-03-07 18:26:53 +00:00
wiz
62f37ac5cc Remove some packages (thanks to: drochner, grant, heinz, joerg, ghen, taca) 2006-03-07 18:18:45 +00:00
wiz
01738475ce + cgdb-6.1, classpath-0.90, classpath-gui-0.90, gramps2-2.0.10,
gworkspace-0.8.1, horde3-3.1, imp4-4.1, phpmyadmin-2.8.0,
  prelude-lml-0.9.4, quagga-0.99.3, turba-2.1.
2006-03-07 18:14:18 +00:00
adrianp
c9fd88d8cf Updated chat/unrealircd to 3.2.4nb3 2006-03-07 17:26:14 +00:00
adrianp
4d02f4a4cb pkglintification
Add rehash option to rc.d script
Remove dud mirror site
Sort PLIST
Bump pkgrevision
2006-03-07 17:23:51 +00:00
dillo
74b74c4643 Note addition of antixls. 2006-03-07 15:21:33 +00:00
dillo
3b7c02e6bd Initial import of antixls, an Excel file to text converter. 2006-03-07 15:19:59 +00:00
tonio
d62d701c0e Merge wip/signing-party, and bump PKGREVISION
Let the caff package install other gpg related tools
 - pgp-clean: removes all non-self signatures from key
 - pgp-fixkey: removes broken packets from keys
 - gpg-mailkeys: simply mail out a signed key to its owner
 - gpg-key2ps: generate PostScript file with fingerprint paper strips
 - gpglist: show who signed which of your UIDs
 - gpgsigs: annotates list of GnuPG keys with already done signatures
 - keylookup: ncurses wrapper around gpg --search

Fix hardcoded path in man pages
2006-03-07 14:31:28 +00:00
ghen
ed1c9efa94 Added security/caff version 0.4.4. 2006-03-07 12:24:12 +00:00
ghen
986384954b Add security/caff. 2006-03-07 12:22:49 +00:00
ghen
2f76357838 Import caff from the Debian PGP Tools.
caff is a script that helps you in keysigning.  It takes a list of
keyids on the command line, fetches them from a keyserver and calls
GnuPG so that you can sign it.  It then mails each key to all its
email addresses - only including the one UID that we send to in each
mail.

Features:
 * Easy to setup.
 * Attaches only the very UID that we send to in the mail.
 * Prunes the key from all signatures that are not self sigs and
   not done by you, thereby greatly reducing the size of mails.
 * Sends the mail encrypted if possible, will warn before sending
   unencrypted mail (sign only keys)
 * Creates proper PGP MIME messages.
 * Uses separate GNUPGHOME for all its operations.
2006-03-07 12:22:21 +00:00
wiz
adcffdc743 revbump updated to 1.4. 2006-03-07 07:29:22 +00:00
wiz
ae456feac0 Update to 1.4:
Replace 'make' with '${MAKE}' for non-NetBSD. Requested by joerg@.
2006-03-07 07:28:55 +00:00
wiz
92ccec1842 Improve short description. 2006-03-07 07:27:26 +00:00
wiz
8fa2cbdfb8 Add x11.buildlink3.mk 2006-03-07 07:24:07 +00:00
wiz
caf134912c Quoting fix in example, from joerg@. 2006-03-07 06:51:20 +00:00
joerg
337d31123a Sync DragonFly/FreeBSD support of cdparanoia with FreeBSD ports, reducing
the API differences to other platforms.
2006-03-07 06:32:08 +00:00