summaryrefslogtreecommitdiff
path: root/converters/p5-MIME-Base64
AgeCommit message (Collapse)AuthorFilesLines
2006-01-01Update to 3.07:wiz3-17/+19
2005-11-30 Gisle Aas Release 3.07 Use a Makefile.PL that is also suitable for core perl. 2005-11-26 Gisle Aas Release 3.06 Documentation tweaks. use XSLoader; perl-5.6 now required. Some consting from bleadperl. Unbundled the {en,de}code-{base64,qp} utility scripts. These are now found in the MIME-Base64-Scripts package.
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests in addition to SHA1 onesagc1-1/+2
2005-02-21take maintainershipheinz1-2/+2
2005-02-21Sign over maintainership to tech-pkg@hubertf1-2/+2
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-1/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-11-28Update to 3.05:wiz2-5/+5
2004-09-20 Gisle Aas Release 3.05 Steve Hay found the warn test broken on Windows and provided a fix. 2004-09-18 Gisle Aas Release 3.04 Fixed the bad-sv.t test script to actually contain the correct expected result as of v3.02. 2004-08-25 Gisle Aas Release 3.03 Forgot to increment version number in MIME::QuotedPrint even if its interface changed in 3.02. As a result you will now need to require MIME::QuotedPrint 3.03 if you want to ensure it provides the binmode interface. 2004-08-24 Gisle Aas Release 3.02 The encode_qp() function now takes an optional third argument to select binary encoding mode. <https://rt.cpan.org/Ticket/Display.html?id=7456> The result of encode_qp($non_empty, $eol) will now always be $eol terminated. If the string to encode does not end with "\n" then a soft line break is appended to the result. As an example encode_qp("foo") used to be encoded as "foo", but now encodes as "foo=\n".
2004-05-02Update HOMEPAGE, the old one didn't work anymoreheinz1-2/+2
2004-05-02Update to version 3.01.heinz2-5/+5
Changes since 2.23: =================== 2004-03-29 Gisle Aas <gisle@ActiveState.com> Release 3.01 By compiling the extension with PERL_NO_GET_CONTEXT we can make it slightly faster on a threaded perl. No change on a regular perl. Patch provided by <beau@beaucox.com>. Fixed missing ";" with assert. Patch provided by Brendan O'Dea <bod@debian.org>. Release 3.00 Drop the pure Perl implementations of the encoders and decoders. They are bloat that hides real problems in the XS implementations. I will re-release them separately in the new MIME-Base64-Perl distribution. The 'gcc -Wall' fix in 2.22 broke support for perl5.005, as the isXDIGIT() macro is not available in that perl. This problem has now been fixed.
2004-01-13Updated p5-MIME-Base64 to 2.23.grant2-5/+5
changes since 2.21: Release 2.23 Documentation fixes by Paul Croome <Paul.Croome@softwareag.com>. Release 2.22 Fix 'gcc -Wall' complaints.
2004-01-05bl3ifyjlam1-2/+4
2003-11-27Updated p5-MIME-Base64 to 2.21.grant2-5/+5
changes since 2.20: Release 2.21 Documentation tweaks. Don't rely on SvEND(sv) == '\0' as discussed in the perl5-porters mailing list thread that starts with http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-10/msg00258.html Should now pass test suite even without XS support. Perl v5.005 or better is now required.
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-05-30Update p5-MIME-Base64 to 2.20mjl2-6/+5
decode_qp() recognize soft whitespace when there is whitespace between the '=' and the '\n'. decode_qp() did eat up all trailing whitespace in the string decoded. Only whitespace in front of "\n" should go.
2003-04-15Fix wrong install directory with perl 5.8.0 (and later).taca2-1/+13
2003-04-12Updated p5-MIME-Base64 to 2.18martti2-5/+5
* Fix up INSTALLDIRS for perl-5.8 and newer * Make it reliable to disable base64 decoding warnings * Passing "" as $eol to encode_qp() disable soft line breaks as well * Sync up with changes in bleadperl
2003-01-09Update from 2.12 to 2.16.mycroft2-5/+5
Release 2.16 Fixed the encode_qp() line breaking code. It sometimes made lines longer than 76 chars and it could even get into an infinite loop on certain inputs. Release 2.15 Fixed the XS based decode_qp() for strings where a =XX sequence was followed by digits. Faster encode_qp() for long strings with lots of chars that need escaping. The old_decode_base64() function introduced in 2.13 was returning undef for empty input on olders perls. This problem has been fixed. Release 2.14 MIME::QuotedPrint functions now also implemented using XS which make them faster. 2-3 times faster when encoding line by line and as much as 200 times faster on long binary input. There is probably some breakage on non-ASCII systems from this. The encode_qp() function now takes an $eol argument in the same way as encode_base64() does. Slight change in behaviour: the decode_qp() function now turns \r\n terminated lines into \n terminated lines. This makes is more likely that encode_qp(decode_qp()) round-trip properly. Included {en,de}code-{base64,qp} utility scripts. Release 2.13 Sync up with bleadperl: - Documentation update - EBCDIC support - Whitespace tweaks - Improved Unicode support - Test suite tweaks Improved version of the old_{en,de}code_base64 functions contributed by Paul Szabo <psz@maths.usyd.edu.au>.
2002-10-20Use buildlink2. Use perl5/module.mk.seb1-6/+3
2001-11-26Buildlinkify, in the sense that only the perl headers are found injlam1-2/+3
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-1/+1
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego1-1/+2
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-04-18Move to sha1 digests, and add distfile sizes.agc1-1/+2
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-21Update to 2.12.mjl2-5/+6
Speed up pure perl base64 encoder/decoder by using join/map instead of while loop. Doc update contributed by Jerrad Pierce Downgrade UTF8 strings before starting to encode.
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-08-27Convert packages to use PERL5_PACKLIST (part 1). These were the easyjlam5-20/+5
ones to do, and each compiled and installed/de-installed apparently correctly. As a side effect of the dynamic PLIST, we no longer need to have separate -static and -shared PLISTs. It's now easier than ever to make a perl5 package for NetBSD :)
2000-01-08more whitespace cleanup (silence, pkglint!)wiz1-2/+1
1999-05-13Update to version 2.11.bad2-5/+5
1999-04-15Completely replace "MASTER_SITE_SUBDIR" and "PATCH_SITE_SUBDIR" withtron1-3/+3
variable substituition of "MASTER_SITES" and "PATCH_SITES".
1999-04-08s/netbsd/${LOWER_OPSYS}/gagc3-12/+12
1998-12-05Update to 2.09.tv2-12/+12
1998-08-20The Grand Homepagification:tsarna1-1/+2
- New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
1998-08-07Add NetBSD RCS Ids.agc1-0/+2
1998-06-22Miscellaneous cleanups after the automatic manual page handling changes.agc1-5/+2
1998-06-08Update to version 2.05.bad2-4/+4
1998-04-15Use the bsd.pkg.mk and bsd.pkg.subdir.mk files in the pkgsrc tree.agc1-7/+2
Remove redundant (and sometimes erroneous) comments.
1998-01-28Replace "<$ARCH"> by "${MACHINE_ARCH}", keep "<$ARCH>"hubertf3-12/+12
(in bsd.port.mk) for backward compatibility.
1998-01-24portlint: add MAINTAINER, fix RCS Idhubertf1-2/+4
1997-11-22Fix RCS Id, MI/MD PLISThubertf5-9/+19
1997-11-22also needed for p5-libwwwhubertf5-0/+53