Commit graph

13 commits

Author SHA1 Message Date
wiz
d92701a4b1 Update to 3.230/3.2.3.0:
3.230	Sunday August 29, 2010, 04:00:00 PM -0700

	* imgsize
	* lib/Image/Size.pm
	perlcritic clean-ups from new rules.

	* lib/Image/Size.pm
	* t/Test_emf_small.emf (added)
	* t/all.t
	RT #59995: Added support for Windows Enhanced Metafile Format
	(EMF).

	* t/00_load.t (deleted)
	* t/01_pod.t (deleted)
	* t/02_pod_coverage.t (deleted)
	* t/03_meta.t (deleted)
	* t/04_minimumversion.t (deleted)
	* t/05_critic.t (deleted)
	* xt/00_load.t (added)
	* xt/01_pod.t (added)
	* xt/02_pod_coverage.t (added)
	* xt/03_meta.t (added)
	* xt/04_minimumversion.t (added)
	* xt/05_critic.t (added)
	Move the author/distro-sanity tests to an "xt" directory.

3.221	Sunday April 25, 2010, 02:10:00 PM -0700

	* imgsize
	* lib/Image/Size.pm
	Large-scale code and documentation clean-up based on perlcritic
	and visual review.
2010-09-06 11:27:48 +00:00
sno
050c709638 Updating graphics/p5-Image-Size from 3.2.1 to 3.2.2
pkgsrc changes:
- Mark Test::Simple to be used from perl core, when possible

Upstream changes:
3.220	Sunday November  8, 2009, 05:45:00 PM -0800
	* lib/Image/Size.pm
	Small fix to the regex for detecting GIFs, per Slaven Rezic.
2010-02-25 17:29:41 +00:00
sno
cd68c69139 Updating graphics/p5-Image-Size from 3.2 to 3.2.1
pkgsrc changes:
  - Correcting license definition
  - Adjusting dependencies

Upstream changes:
3.210	Wednesday October 21, 2009, 06:50:00 PM -0700
	* t/magick.t
	Removed a stray colon causing errors with some Perl versions.

	* t/00_load.t (added)
	* t/00_signature.t (deleted)
	* t/01_pod.t (added)
	* t/02_pod_coverage.t (added)
	* t/03_meta.t (added)
	* t/04_minimumversion.t (added)
	* t/05_critic.t (added)
	* t/magick.t
	* t/pod.t (deleted)
	* t/pod_coverage.t (deleted)
	Removed useless signature test, added QA tests, removed a
	duplicate test.

	* lib/Image/Size.pm
	Moved around some conditionally-needed libs to delay loading
	until/unless needed. Also made a small fix per Perl::Critic.
2009-10-25 13:11:16 +00:00
sno
c1d2f0abdf PkgSrc changes:
- Updating package for p5 module Image::Size to 3.2
  - Add license artistic 2.0

Upstream changes:
3.2	Monday February 23, 2009, 05:00:00 AM -0800

	* lib/Image/Size.pm
	* t/all.t
	Make the package buildable in a pure-Perl software stack. Per
	RT ticket #42930, make Compress::Zlib optional, so that those
	who do not need it are not required to install it. Updated the
	test around the compressed-SWF file to skip if Compress::Zlib
	is absent.

	* Build.PL (restored)
	* ChangeLog (deleted)
	* ChangeLog.xml (added)
	* MANIFEST (deleted)
	* Makefile.PL (deleted)
	* README.Win32 (deleted)
	* etc/ChangeLogML.xsd (added)
	Making large-scale house-keeping changes to the build/dist
	process. Replace ChangeLog (plain-text) with a ChangeLogML file
	created from the CVS/SVN history and hand-adjusted; add the XSD
	for ChangeLogML; restore Build.PL and heavily enhance; and
	remove README.Win32, Makefile.PL and MANIFEST.

	* lib/Image/Size.pm
	Per RT ticket #43452, make the cache visible outside the
	lexical scope of the module This allows the hash to be used
	with packages like IPC::Shareable or IPC::MM to enable sharing
	the cache between processes. Added extra documentation of this,
	and a new section describing approaches to cache-sharing.

	Transaction revision: 136
	* imgsize
	* lib/Image/Size.pm
	Fix URL/specification of the license info for LGPL.
2009-04-12 12:05:43 +00:00
rhaen
2054a36377 - updated to 3.1.1
- added dependency to devel/p5-Compress-Zlib

ChangeLog:
* Updated the license information to make sure all references are to both the
  Artistic 2.0 and the LGPL.

* Changed "use 5.6.0" lines to no longer use v-strings, for forward
  compatibility with Perl 5.10.0.

* Added "recommends" specification to Build.PL to refer to modules used in
  the testing phase (there is no "build_recommends" setting).

* Added Compress::Zlib to the list of required modules in Makefile.PL and
  Build.PL.

* Added "use warnings" to Size.pm to make sure it stays warnings-clean.

Changes in 3.1:

* Small change from n@shaplov.ru for a bug in CWS handling that only surfaced
  when two CWS files were sized consecutively.

* Updated the date on the copyright notice and added a "COPYRIGHT" section
  to the documentation.

* Changed the licensing terms. This is now dual-licensed under Artistic 2.0
  and LGPL 2.1.

* Restored the old Makefile.PL for users who don't have Module::Build.

Changes in 3.01:

* Added ex/ directory with a few samples.

* Dropped ExtUtils::MakeMaker and switched to Module::Build. Makefile.PL is
  now a wrapper of sorts around Build.PL. This allows adding licensing
  information to META.yml for CPAN indexing.

Changes in 3.0:

* Added test suites for POD correctness and POD coverage.

* Implemented and documented a flag called $Image::Size::GIF_BEHAVIOR that
  controls whether the GIF code returns the screensize, the first sub-image
  or the largest of the sub-images.

* Applied a patch from mrj@mrj.spb.ru to fix usage of the Compress::Zlib
  module in the handling of compressed flash files. Added a new SWF file to
  test this, and added reference to the file in MANIFEST and t/all.t.

* Delay Image::Magick loading until it is needed. (Mark Stosberg).
  Add support for Graphics::Magick as an alternative to Image::Magick.
  If either Graphics::Magick or Image::Magick is loaded into memory
  that module will be used. Otherwise, they are both tried to be loaded,
  with Graphics::Magick being tried first. (Mark Stosberg). This patch also
  adds a new test suite, t/magick.t, to the distribution and modifies both
  MANIFEST and Makefile.PL (to add a build-dependancy on Test::More).

* With Test::More now required for building, converted t/all.t to use it.
2008-07-18 15:07:13 +00:00
agc
6a7b384635 Add RMD160 digests 2005-02-24 08:45:01 +00:00
abs
fa2844bfea Update p5-Image-Size to 2.992 (also fix '@echo not found' build issue
with perl58)

Changes since 2.991:

* Added support for FlashMX (Shockwave Flash ver. 6), as contributed by
  Victor L Kuriashkin <victor@yasp.com>.
2003-11-26 11:19:09 +00:00
shell
5c83054baa Updated to p5-Image-Size-2.991
Changes :
* Small fix to setup of scalar refs in Size.pm, in case the
  ref points to an undef value.
* Code clean-up on the imgsize script.
* Applied two patches from Ville Skyttä <ville.skytta@iki.fi> :
   - providing support for MNG
   - supporting anything Image::Magick does.
2003-01-31 10:24:51 +00:00
martti
7e851bfc49 Updated p5-Image-Size to 2.980 (provided by Shell Hung in pkg/15873)
* From tips provided by Philip Newton after a close reading of the manual page
  and other docs, several typos and errors were cleared out, and a small
  buglet in the error message within bmpsize() was corrected.

* Moved the code that changes a relative filename to an absolute one. This
  was being called in all cases, now it is *not* called if cacheing is
  disabled (via $NO_CACHE). This is for the sake of applications running in
  environments where they may have trouble with full paths (due to "lockbox"
  configurations).

* Made a few adjustments to the docs per suggestion, to clarify some of the
  usage cases.
2002-03-15 12:14:51 +00:00
wiz
3104b1f74e Update to 2.96, now with PCD (Kodak PhotoCD) support.
Provided by Shell Hung in pkg/14708.
2001-11-27 16:28:44 +00:00
wiz
98df8d7636 Update to 2.94.
Changes since 2.91:
* Fixed a small bug in the PSD code, and added a test to the suite using an
  image supplied by Alex Weslowski <aweslowski@rpinteractive.com>.
* Added a routine to provide Flash support, provided by Dmitry Dorofeev
  <dima@yasp.com>.
* Added a patch from Dan Klein to make certain that imgsize() closes any
  file descriptors it opens.
2001-10-29 01:16:44 +00:00
wiz
a4f21a5507 Move to sha1 digests, and/or add distfile sizes. 2001-04-21 09:54:06 +00:00
agc
fb467f5ac2 + move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-17 11:22:34 +00:00