pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/ruby-RMagick



Module Name:    pkgsrc
Committed By:   taca
Date:           Mon Feb 25 16:48:58 UTC 2019

Modified Files:
        pkgsrc/graphics/ruby-RMagick: Makefile PLIST distinfo

Log Message:
graphics/ruby-RMagick: update to 3.0.0

## RMagick 3.0.0

Breaking Changes:

- Drop support for Ruby < 2.3.
- Drop support for ImageMagick < 6.8.
- Raise error when `nil` or empty string are passed to `Image.read`. (#351)
- Monitor feature disabled on Windows. (#344)
- Note: ruby versions > 2.4 and ImageMagick versions > 6.8 are not *explicitly*
  supported, yet, but if you are using them already, they should continue to
  work in the same fashion.

Enhancements:

- Add feature `Image#channel_entropy` (#300)
- Many quality of life improvements in the codebase.

Bug Fixes:

- Many memory leaks fixed!
- Fix `LoadError` on Windows. (#315)
- fix argument count in `Image#morphology_channel` (#306)


To generate a diff of this commit:
cvs rdiff -u -r1.111 -r1.112 pkgsrc/graphics/ruby-RMagick/Makefile
cvs rdiff -u -r1.27 -r1.28 pkgsrc/graphics/ruby-RMagick/PLIST
cvs rdiff -u -r1.54 -r1.55 pkgsrc/graphics/ruby-RMagick/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/ruby-RMagick/Makefile
diff -u pkgsrc/graphics/ruby-RMagick/Makefile:1.111 pkgsrc/graphics/ruby-RMagick/Makefile:1.112
--- pkgsrc/graphics/ruby-RMagick/Makefile:1.111 Wed Nov 14 22:21:45 2018
+++ pkgsrc/graphics/ruby-RMagick/Makefile       Mon Feb 25 16:48:58 2019
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.111 2018/11/14 22:21:45 kleink Exp $
+# $NetBSD: Makefile,v 1.112 2019/02/25 16:48:58 taca Exp $
 
-DISTNAME=      rmagick-2.16.0
+DISTNAME=      rmagick-3.0.0
 PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME:S/rmagick/RMagick/}
-PKGREVISION=   8
 CATEGORIES=    graphics
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/graphics/ruby-RMagick/PLIST
diff -u pkgsrc/graphics/ruby-RMagick/PLIST:1.27 pkgsrc/graphics/ruby-RMagick/PLIST:1.28
--- pkgsrc/graphics/ruby-RMagick/PLIST:1.27     Mon Oct 10 14:56:26 2016
+++ pkgsrc/graphics/ruby-RMagick/PLIST  Mon Feb 25 16:48:58 2019
@@ -1,12 +1,16 @@
-@comment $NetBSD: PLIST,v 1.27 2016/10/10 14:56:26 taca Exp $
+@comment $NetBSD: PLIST,v 1.28 2019/02/25 16:48:58 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_EXTSDIR}/RMagick2.${RUBY_DLEXT}
 ${GEM_EXTSDIR}/gem.build_complete
+${GEM_LIBDIR}/.appveyor.yml
+${GEM_LIBDIR}/.circleci/config.yml
 ${GEM_LIBDIR}/.editorconfig
 ${GEM_LIBDIR}/.gitignore
 ${GEM_LIBDIR}/.hound.yml
 ${GEM_LIBDIR}/.rspec
 ${GEM_LIBDIR}/.rubocop.yml
+${GEM_LIBDIR}/.rubocop_todo.yml
+${GEM_LIBDIR}/.ruby-version
 ${GEM_LIBDIR}/.simplecov
 ${GEM_LIBDIR}/.travis.yml
 ${GEM_LIBDIR}/CHANGELOG.md
@@ -344,6 +348,7 @@ ${GEM_LIBDIR}/ext/RMagick/rmfill.c
 ${GEM_LIBDIR}/ext/RMagick/rmilist.c
 ${GEM_LIBDIR}/ext/RMagick/rmimage.c
 ${GEM_LIBDIR}/ext/RMagick/rminfo.c
+${GEM_LIBDIR}/ext/RMagick/rmkinfo.c
 ${GEM_LIBDIR}/ext/RMagick/rmmain.c
 ${GEM_LIBDIR}/ext/RMagick/rmmontage.c
 ${GEM_LIBDIR}/ext/RMagick/rmpixel.c
@@ -371,13 +376,16 @@ ${GEM_LIBDIR}/rmagick.gemspec
 ${GEM_LIBDIR}/spec/rmagick/ImageList1_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/draw_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/blue_shift_spec.rb
+${GEM_LIBDIR}/spec/rmagick/image/channel_entropy_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/composite_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/constitute_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/dispatch_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/from_blob_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/ping_spec.rb
 ${GEM_LIBDIR}/spec/rmagick/image/properties_spec.rb
+${GEM_LIBDIR}/spec/rmagick/image/read_spec.rb
 ${GEM_LIBDIR}/spec/spec_helper.rb
+${GEM_LIBDIR}/spec/support/issue_200/app.rb
 ${GEM_LIBDIR}/test/Image1.rb
 ${GEM_LIBDIR}/test/Image2.rb
 ${GEM_LIBDIR}/test/Image3.rb

Index: pkgsrc/graphics/ruby-RMagick/distinfo
diff -u pkgsrc/graphics/ruby-RMagick/distinfo:1.54 pkgsrc/graphics/ruby-RMagick/distinfo:1.55
--- pkgsrc/graphics/ruby-RMagick/distinfo:1.54  Mon Oct 10 14:56:26 2016
+++ pkgsrc/graphics/ruby-RMagick/distinfo       Mon Feb 25 16:48:58 2019
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.54 2016/10/10 14:56:26 taca Exp $
+$NetBSD: distinfo,v 1.55 2019/02/25 16:48:58 taca Exp $
 
-SHA1 (rmagick-2.16.0.gem) = a633d52af37d4ca18117aab43c995a38b62b9443
-RMD160 (rmagick-2.16.0.gem) = 49d8eeb97cd9916d0a989017990d1c3e157acdf8
-SHA512 (rmagick-2.16.0.gem) = e37fdd9c1e45d7ef7000602f495c3951ee2abcae83a87f68702a51a2183edb6fd8e576ca1a5ac8b64e05ae0287141137b505bf27fddc579e753f9310cb4d653c
-Size (rmagick-2.16.0.gem) = 1545728 bytes
-SHA1 (patch-ext_RMagick_extconf.rb) = df38f70cba6a770a5907999ac6a6d22a0b9f77bd
+SHA1 (rmagick-3.0.0.gem) = 728ba8e33d50c4abc2d48ba06bddf65afc5bdb05
+RMD160 (rmagick-3.0.0.gem) = 7a1c13a60778469ed6e1731d48f86a285048bb44
+SHA512 (rmagick-3.0.0.gem) = 7d8c2ae731e9565f168cb13adb8b454acb51d42b237f6bfb721735f9198d2546fbf0117d3296ac57bcd59b0a03eff611b7508d6684e533f203fdd7a6816adee4
+Size (rmagick-3.0.0.gem) = 1551360 bytes



Home | Main Index | Thread Index | Old Index