Commit graph

36 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
seb
c3f1e700ad Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
2010-08-21 16:32:42 +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
sno
dfca1e1ce5 PkgSrc changes:
- removed packages p5-IO-Compress-Base, p5-IO-Compress-Zlib,
    p5-IO-Compress-Bzip2 and p5-Compress-Zlib because they are
    merged into p5-IO-Compress
  - Updated dependend packages to depend on p5-IO-Compress
    and bump PKGREVISION

Upstream changes:
  2.017 30 March 2009

      * Merged IO-Compress-Base, IO-Compress-Bzip2, IO-Compress-Zlib &
        Compress-Zlib into IO-Compress.
      * The interface to Compress-Raw-Zlib now uses the new LimitOutput
        feature. This will make all of the zlib-related IO-Compress modules
        less greedy in their memory consumption.
      * Removed MAN3PODS from Makefile.PL
      * A few changes to get the test harness to work on VMS courtesy of
        Craig. A. Berry.
      * IO::Compress::Base & IO::Uncompress::Base
        Downgraded some croaks in the constructors to just set $! (by letting
        the code attempt to open a file and fail).
        This makes the behavior more consistent to a standard open.
        [RT #42657]
      * IO::Uncompress::Base
        Doing a seek with MultiStream could drop some of the uncompressed
        data. Fixed.
      * IO::Compress::Zip
        - Fixed problem with the uncompressed & uncompressed fields when
          zip64 is enabled. They were set to 0x0000FFFF instead of
          0xFFFFFFFF. Also the ZIP64 extra field was 4 bytes short.
          Problem spotted by Dino Chiesa.
      * IO::Uncompress::Unzip
        - use POSIX::mktime instead of Time::Local::timelocal to convert
          the zip DOS time field into Unix time.
      * Compress::Zlib
        - Documented Compress::Zlib::zlib_version()
2009-04-11 23:15:19 +00:00
he
b021813da0 Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
2008-10-19 19:17:40 +00:00
rhaen
1132dc138f Fixed the problems reported by babylon5.netbsd.org weekly pkgsrc output for Thu Jul 24 02:20:00 2008 2008-07-25 08:48:23 +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
joerg
ba171a91fa Add DESTDIR support. 2008-06-12 02:14:13 +00:00
jlam
56ba4d2690 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
2007-10-25 16:54:26 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00
jlam
7fbb8d9527 Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.
2005-08-06 06:19:03 +00:00
jlam
7a6521287b Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.
2005-07-13 18:01:18 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
6a7b384635 Add RMD160 digests 2005-02-24 08:45:01 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
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-12-20 11:30:55 +00:00
minskim
527f6f4f94 Bl3ify and enable pkgviews installation. 2004-04-25 04:41:23 +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
grant
0155927c43 s/netbsd.org/NetBSD.org/ 2003-07-17 21:41:05 +00:00
jschauma
e366d0c694 Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.
2003-06-02 01:15:31 +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
seb
cf0b1c7919 Convert to buildlink2. Use perl5/module.mk. 2002-10-07 22:34:23 +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
jlam
cc4128d97e Buildlinkify, in the sense that only the perl headers are found in
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-11-26 06:49:36 +00:00
zuntum
d038a73ebd Move pkg/ files into package's toplevel directory 2001-10-31 22:52:58 +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
veego
63ad910dee SVR4 packages have a limit of 9 chars for a package name.
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-10-18 15:20:01 +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
wiz
bb8662f434 Update the package to 2.91 (PKGNAME 2.910 because previous was 2.901),
per pkg/11605 by Damon Brodie (but with a newer version of the package).
Changes: cache improvements, portability fixes, and some bugfixes.
2001-02-28 13:00:46 +00:00
wiz
a2a4d06c6f Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. 2001-02-16 15:22:13 +00:00
jlam
18cba9d7fa Convert packages to use PERL5_PACKLIST (part 1). These were the easy
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-08-27 07:10:59 +00:00
abs
df05aef71f Strip trailing '.', and/or leading '(a|an) ' 2000-01-05 15:37:50 +00:00
kim
696ae8a32b Initial import of p5-Image-Size-2.901
Image::Size returns a raw (X, Y) pair of the height and width of
an image, and includes wrappers to pre-format that output into
either HTML or a set of attribute pairs suitable for the CGI.pm
library by Lincoln Stein.

Currently Image::Size can size images in XPM, XBM, GIF, JPEG, PNG,
TIFF and the PPM family of formats (PPM/PGM/PBM).
1999-09-03 17:08:51 +00:00