Commit graph

1089 commits

Author SHA1 Message Date
obache
4e5c1c7509 Update skf to 1.97.2.
skf (1.97.2) experimental; urgency=low

  * fix crashes when LANG parameter output and B-right case
  * kick out jef/transparent output (does not work anyway)
2010-08-07 00:18:07 +00:00
sno
fc5d565c06 Updating converters/p5-JSON from 2.17 to 2.21
Upstream changes:
2.21  Mon Apr  5 14:56:52 2010
	[JSON]
	- enhanced 'HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER'
	- renamed eg/bench_pp_xs.pl to eg/bench_decode.pl
	- added eg/bench_encode.pl

2.20  Fri Apr  2 12:50:08 2010
	[JSON]
	- added eg/bench_pp_xs.pl for benchmark sample
	- updated 'INCREMENTAL PARSING' section
	[JSON::PP]
	- decode_prefix() didn't count a consumed text length properly.
	- enhanced XS compatibilty
	    in the case of decoding a white space garbaged text.

2.19  Tue Mar 30 13:40:24 2010
	[JSON]
	- fixed typo (rt#53535 by Angel Abad)
	- added a recommendation
              refering to (en|de)code_json to pod (suggested by tokuhirom)
	- added 'HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER' to pod.

2.18  Tue Mar 23 15:18:10 2010
	[JSON]
	- updated document (compatible with JSON::XS 2.29)
	[JSON::PP]
	- fixed encode an overloaded 'eq' object bug (reported by Alexey A. Kiritchun)
	- enhanced an error message compatible to JSON::XS
2010-08-04 14:15:36 +00:00
dholland
d578a77acc fix typo in maintainer 2010-08-01 05:44:07 +00:00
agc
3da4290545 This package needs py-expat installed in order to build. 2010-07-25 06:27:17 +00:00
tron
858efea2aa Revert revision of several PHP extensions after both core PHP packages
were updated.
2010-07-24 22:24:21 +00:00
gdt
7a5b4991d8 SUBDIR+= py-zbase32 2010-07-24 17:57:01 +00:00
gdt
b130c9e4e4 Import py26-zbase32-1.1.2 as converters/py-zbase32.
An alternate base32 encoder (not RFC 3548 compliant).

The rationale for base-32 encoding in RFC 3548 [1] is as written therein: "The
Base 32 encoding is designed to represent arbitrary sequences of octets in a
form that needs to be case insensitive but need not be humanly readable.".

The rationale for our encoding is different -- it is to represent arbitrary
sequences of octets in a form that is as convenient as possible for human
users to manipulate.  In particular, z-base-32 was created in order to serve
the Mnet project [3], where 30-octet cryptographic values are encoded into
URIs for humans to manipulate.  Anticipated uses of these URIs include cut-
and-paste, text editing (e.g. in HTML files), manual transcription via a
keyboard, manual transcription via pen-and-paper, vocal transcription over
phone or radio, etc.

The desiderata for such an encoding are:

 * minimizing transcription errors -- e.g. the well-known problem of confusing
   `0' with `O'
 * embedding into other structures -- e.g. search engines, structured or
   marked-up text, file systems, command shells
 * brevity -- Shorter URLs are better than longer ones.
 * ergonomics -- Human users (especially non-technical ones) should find the
   URIs as easy and pleasant as possible.  The uglier the URI looks, the worse.
2010-07-24 17:56:26 +00:00
gdt
a1afdf4db7 SUBDIR+= py-zfec 2010-07-24 13:24:39 +00:00
gdt
190f861711 Import py26-zfec-1.4.7 as converters/py-zfec.
A fast erasure codec which can be used with the command-line, C,
Python, or Haskell.

Fast, portable, programmable erasure coding a.k.a. "forward error
correction": the generation of redundant blocks of information such
that if some blocks are lost then the original data can be recovered
from the remaining blocks. The zfec package includes command-line
tools, C API, Python API, and Haskell API.
2010-07-24 13:24:15 +00:00
obache
f9ae805494 Update py-simplejson to 2.1.1.
Based on PR#43447 by Wen Heping.
While here, set LICENSE=mit with some cosmetic fixes.

Version 2.1.1 released 2010-03-31

* Change how setup.py imports ez_setup.py to try and workaround old versions
  of setuptools.
  http://code.google.com/p/simplejson/issues/detail?id=75
* Fix compilation on Windows platform (and other platforms with very
  picky compilers)
* Corrected simplejson.__version__ and other minor doc changes.
* Do not fail speedups tests if speedups could not be built.
  http://code.google.com/p/simplejson/issues/detail?id=73

Version 2.1.0 released 2010-03-10

* Decimal serialization officially supported for encoding with
  use_decimal=True. For encoding this encodes Decimal objects and
  for decoding it implies parse_float=Decimal
* Python 2.4 no longer supported (may still work, but no longer tested)
* Decoding performance and memory utilization enhancements
  http://bugs.python.org/issue7451
* JSONEncoderForHTML class for escaping &, <, >
  http://code.google.com/p/simplejson/issues/detail?id=66
* Memoization of object keys during encoding (when using speedups)
* Encoder changed to use PyIter_Next for list iteration to avoid
  potential threading issues
* Encoder changed to use iteritems rather than PyDict_Next in order to
  support dict subclasses that have a well defined ordering
  http://bugs.python.org/issue6105
* indent encoding parameter changed to be a string rather than an integer
  (integer use still supported for backwards compatibility)
  http://code.google.com/p/simplejson/issues/detail?id=56
* Test suite (python setup.py test) now automatically runs with and without
  speedups
  http://code.google.com/p/simplejson/issues/detail?id=55
* Fixed support for older versions of easy_install (e.g. stock Mac OS X config)
  http://code.google.com/p/simplejson/issues/detail?id=54
* Fixed str/unicode mismatches when using ensure_ascii=False
  http://code.google.com/p/simplejson/issues/detail?id=48
* Fixed error message when parsing an array with trailing comma with speedups
  http://code.google.com/p/simplejson/issues/detail?id=46
* Refactor decoder errors to raise JSONDecodeError instead of ValueError
  http://code.google.com/p/simplejson/issues/detail?id=45
* New ordered_pairs_hook feature in decoder which makes it possible to
  preserve key order. http://bugs.python.org/issue5381
* Fixed containerless unicode float decoding (same bug as 2.0.4, oops!)
  http://code.google.com/p/simplejson/issues/detail?id=43
* Share PosInf definition between encoder and decoder
* Minor reformatting to make it easier to backport simplejson changes
  to Python 2.7/3.1 json module
2010-07-08 12:15:39 +00:00
jmmv
3b922a2b77 Transfer ownership to pkgsrc-users. pancake's address is not valid any
more and he has agreed in private mail to drop maintainership.
2010-07-06 10:17:11 +00:00
dholland
9e21f7e065 Add patch comment. I had this lying around uncommitted for some reason. 2010-06-15 04:18:04 +00:00
wiz
e8d8834f6a Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:43:46 +00:00
obache
7b24e57a0b Note commented out LICENSE. 2010-05-16 00:34:32 +00:00
wiz
e6beb0fa18 Update to 1.38.2:
Version 1.38		April 26, 2010

  * Support ENVIRONMENT and FILES sections.
  * Move all translated text into .po files (previously .h2m include
    files were handled seperately).
  * Submit package to the Translation Project (translationproject.org).
  * Add Vietnamese translation.
  * Add some comments for translators.

Version 1.37		November 14, 2009

  * Update GPL to v3.
  * Add --version-string option.
  * Add --no-discard-stderr option.
  * Add line breaks into bug reporting section.
  * Add Brazilian Portuguese and German translations.
  * Select a reasonable configure default for --enable-nls.
  * Revise preload mechanism to not require preloadable libintl.
2010-05-02 11:25:29 +00:00
obache
d1159f0784 let to exec "gs" with absolute path as PR#43214.
Bump PKGREVISION.
2010-04-28 07:32:40 +00:00
obache
01a9bba0c4 + pstotext 2010-04-25 12:48:03 +00:00
obache
db0c27f566 Import pstotext-1.9 as converters/pstotext.
Packaged by Stefan Schaeckeler in pkgsrc-wip.

Pstotext extracts plain-text from postscript files (and somewhat less
reliable from pdf files).
2010-04-25 12:46:19 +00:00
sno
936cd31811 Switching for module type from M:I to M:I::Bundled - installed versions seems to make problems 2010-04-22 15:25:52 +00:00
is
492c26c0a7 Remove one more /usr/tmp. 2010-04-20 10:26:40 +00:00
seb
6e476c561b Update p5-JSON-XS from version 2.280 to version 2.290 (upstream
version 2.29).

Pkgsrc changes:
- Canonical MASTER_SITES

Upstream changes:
2.29  Wed Mar 17 02:39:12 CET 2010
	- fix a memory leak when callbacks set using filter_json_object
          or filter_json_single_key_object were called (great testcase
          by Eric Wilhelm).
2010-04-11 23:03:40 +00:00
obache
f6a072413c Update skf to 1.97.1.
skf (1.97.1)

  * enable -i and -o in nkf compatible mode.
  * restore old umask after overwrite.
  * add flush on unic*de and b-right.
  * disable adding lineend on encode-tail when in LWL extension.
2010-04-01 02:06:01 +00:00
taca
0ea9225066 Add and enable php-mbstring. 2010-03-16 15:05:01 +00:00
taca
c3856f374e Re-import misc/php-mbstring package as converters/php-mbstring
to switch to better category.  misc/php-mbstring package will be
deleted later.
2010-03-16 15:03:42 +00:00
sno
f0944771c2 Updating converters/p5-JSON-XS 2.27 to 2.28
Upstream changes:
2.28  Thu Mar 11 20:30:46 CET 2010
	- implement our own atof function - perl's can be orders of
          magnitudes slower than even the system one. on the positive
          side, ours seems to be more exact in general than perl's.
          (testcase provided by Tim Meadowcroft).
        - clarify floating point conversion issues a bit.
	- update jpsykes csrf article url.
        - updated benchmark section - JSON::PP became much faster!
2010-03-16 10:47:57 +00:00
wiz
aeaceb273d Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
sno
a9a070e266 Updating converters/p5-JSON-XS from 2.260 to 2.270
Upstream changes:
2.27  Thu Jan  7 07:35:08 CET 2010
	- support relaxed option inside the incremental parser
          (testcase provided by IKEGAMI via Makamaka).
2010-02-17 12:47:58 +00:00
obache
75ad31c19f Update skf to 1.97.0a.
Just remove redundant fragments from source package, no source code changes.
2010-02-15 01:04:00 +00:00
zafer
ef2d8c24b6 update homepage and master_sites. 2010-02-07 17:30:08 +00:00
zafer
45e8a5bfd0 satisfy pkglint. 2010-02-07 17:15:54 +00:00
zafer
abae808556 update to version 060102. add license. 2010-02-07 17:12:34 +00:00
obache
878e6a6b3e Update skf to 1.97.0.
skf (1.97.0) experimental; urgency=low

  * Re-enabled MIME encoding
  * nkf compatibility mode further fix and support added.
  * various bug fix from 1.96 series.

 -- Seiji Kaneko <efialtes@sourceforge.jp>  Sat, 06 Feb 2010 23:24:54 +0900
2010-02-07 13:17:55 +00:00
obache
50ef68cc9a Update skf to 1.96.6.
skf (1.96.6) experimental; urgency=low

  * fix mime-decode related bugs
  * fix i18n message output bugs
  * fix terminal control code does not output as documented.

 -- Seiji Kaneko <efialtes@sourceforge.jp>  Wed, 27 Jan 2010 22:36:08 +0900
2010-02-06 11:26:44 +00:00
joerg
fc585c0bb0 No double man in path. 2010-01-31 22:21:32 +00:00
obache
69244f3904 Treat Haiku like BeOS. 2010-01-30 10:24:29 +00:00
joerg
b640919ee1 DESTDIR support 2010-01-29 16:51:38 +00:00
joerg
4b961e3dd8 DESTDIR support 2010-01-29 16:38:20 +00:00
sno
86cb4adc51 Updating converters/p5-MIME-Base64 from 3.08 to 3.09
Upstream changes:
2010-01-25 Release 3.09 - Gisle Aas <gisle@ActiveState.com>
   The Quoted-Printable encoder would sometimes output lines
   that were 77 characters long.  The max line length should be 76.
   [RT#53919]
2010-01-29 15:16:47 +00:00
sno
22d247deaf Updating converters/p5-Unicode-Map8 from 0.12nb3 to 0.13
pkgsrc changes:
  - Adding license definition
  - Adjusting dependencies

Upstream changes:
2010-01-18   Gisle Aas <gisle@ActiveState.com>
   Release 0.13
   Header order tweak to make it compile with Strawberry Perl [RT#50443]
   Get rid of CVS artifacts
2010-01-25 12:08:40 +00:00
wiz
9f6023be3e Set LICENSE. 2010-01-24 13:34:39 +00:00
wiz
8da9490604 Update to 2.17:
2.17  Thu Jan  7 12:23:13 2010
	[JSON]
	- fixed a problem caused by JSON::XS backend and support_by_pp option
	  (rt#52842,  rt#52847 by ikegami)
	[JSON::PP]
	- made compatible with JSON::XS 2.27
	- patched decode for incr_parse (rt#52820 by ikegami)
	- relaxed option caused an infinite loop in some condition.

2.16  Fri Oct 16 15:07:37 2009
	[JSON][JSON::PP]
	- made compatible with JSON::XS 2.26
            *indent adds a final newline
	- corrected copyrights in JSON::PP58.
2010-01-20 14:50:17 +00:00
wiz
91871f449e Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
wiz
579796a3e5 Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
dholland
c17b5fa3a1 Add comments to two patches. These changes were sitting uncommitted in
one of my trees; I don't remember why they didn't get committed when I
updated the package a while back.
2010-01-15 23:47:14 +00:00
tron
43396069f3 Use "libtool" rules similar to those in version 1.13.1 of "libiconv"
to build "preloadable_libiconv.so". This should fix the build
under Linux, OSF1 and Solaris with any supported compiler.
2010-01-06 21:01:09 +00:00
tron
94d1b34324 Fix the part of the makefile that builds "preloadable_libiconv.so" under
Solaris if GCC is used. As this bit is both operating system and compiler
specific we can simple bypass "libtool" which is what must have happened
with the old "libtool".

The build in the non-GCC case or under Linux respectively OSF1 might
still be broken. But I don't have a setup to test that.
2010-01-06 18:53:05 +00:00
obache
1abfa81621 DISTFILE on ftp.sra.co.jp is newer than on ${MASTER_SITE_FREEBSD},
so change MASTER_SITES to only ftp.sra.co.jp and force to use newer one.
As sccsid in source, ${MASTE_SITE_FREEBSD}'s one is 2.2, and sra's one is 2.3,
so bump PKGVERSION to 2.3.
This issue noticed by taca@ by private mail.

While here, set LICENSE=gnu-gpl-v2, modify pach-aa to suppress some
warings by addition of include stdlib.h.
2010-01-06 02:31:53 +00:00
obache
c0c2d8e146 Update skf to 1.96.5.
skf (1.96.5)

  * delete _phpswigglue on clean
  * fix --set-g* does not work on misc mb codeset.
  * preconvert detect and result inconsistency further fix up.
  * ebcdic related ascii loading error fixed.
2009-12-31 11:01:38 +00:00
abs
179802b379 PKG_DESTDIR_SUPPORT 2009-12-17 21:56:22 +00:00
seb
9507d6b7c1 Update p5-Convert-UUlib from version 1.32 to version 1.33.
Upstream changes:
1.33 Wed Oct 28 09:04:38 CET 2009
	- handle yEnc files with part end=0 and total= more gracefully.
          I wish yEnc had been created by somebody who knows;
          what he does;
          but I doubt he even knows;
          what he did.
2009-11-28 10:00:53 +00:00