forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
== [release-2-0-1] 2.0.1: 2014-01-24 A bug fix release of 2.0.0. === milter manager ==== Improvements * Support SIGUSR1 signal to reopen log file ==== Fixes * Drop functionality to report stack trace on crash. Because it is unsafe for all users. [GitHub #38] === milter-core ==== Improvements * Support log output by MILTER_LOG_PATH environment variable. === milter-client ==== Improvements * Support --log-path option. === Ruby milter ==== Improvements * Support --log-path option. * Support SIGUSR1 signal to reopen log file. === Package ==== Improvements * Drop Ubuntu Lucid (10.04) support. * Add Ubuntu Saucy (13.10) support. * deb: Support Ruby 2.0.0 detection on Debian. * rpm: Update Ruby1.9.3 package for CentOS6 to Ruby1.9.3-p484. * Remove auto-generated files from distribution archive. [Reported by Youhei SASAKI][milter-manager-users-ja:00225] === Document ==== Improvements * Update to the latest milter-greylist RPM. [Reported by ishizaka tadanori][milter-manager-users-ja:00220] * Improve English version reference manual. [GitHub #17] === Thanks * Youhei SASAKI * ishizaka tadanori
- Loading branch information
obache
committed
Jan 24, 2014
1 parent
00d11a4
commit aec6fec
Showing
4 changed files
with
26 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.20 2013/08/19 04:47:58 taca Exp $ | ||
$NetBSD: distinfo,v 1.21 2014/01/24 11:29:30 obache Exp $ | ||
|
||
SHA1 (milter-manager-2.0.0.tar.gz) = fc8b04717313d77a41153bb43d0c46a38bf42a4d | ||
RMD160 (milter-manager-2.0.0.tar.gz) = e47b91682f72e4c82c01b9187df4ca0883a0cd49 | ||
Size (milter-manager-2.0.0.tar.gz) = 6694510 bytes | ||
SHA1 (patch-configure) = 46de71e84df3268764e230baa6702cc5a3ae38c1 | ||
SHA1 (milter-manager-2.0.1.tar.gz) = fee731624ab972bc1a34f65ad76a24d8e97a608f | ||
RMD160 (milter-manager-2.0.1.tar.gz) = 3d1446d425ef59dc95411e85515d98eede3620f6 | ||
Size (milter-manager-2.0.1.tar.gz) = 6555523 bytes | ||
SHA1 (patch-configure) = ee1f31e83354c4c6b38ae1c0d4fda40f28ad92b6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
$NetBSD: patch-configure,v 1.1 2013/08/19 04:47:58 taca Exp $ | ||
$NetBSD: patch-configure,v 1.2 2014/01/24 11:29:30 obache Exp $ | ||
|
||
* Not all Gem have source_index method. | ||
* rbconfig_vendorarchhdr dir may not be defined even if rbconfig_hdrdir exists | ||
|
||
--- configure.orig 2013-06-28 02:06:00.000000000 +0000 | ||
--- configure.orig 2014-01-23 02:36:54.000000000 +0000 | ||
+++ configure | ||
@@ -13935,7 +13935,10 @@ fi | ||
rescue LoadError | ||
ruby_glib2_gem = nil | ||
else | ||
- ruby_glib2_gem = Gem.source_index.find_name("glib2").first | ||
+ begin | ||
+ ruby_glib2_gem = Gem.source_index.find_name("glib2").first | ||
+ rescue NoMethodError | ||
+ end | ||
end | ||
if ruby_glib2_gem.nil? | ||
begin | ||
@@ -13989,6 +13989,10 @@ if test "$ruby_available" = "yes"; then | ||
fi | ||
if test -d "$rbconfig_vendorarchhdrdir"; then | ||
RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_vendorarchhdrdir" | ||
+ else | ||
+ if test "$rbconfig_vendorarchdir" != ""; then | ||
+ RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_vendorarchdir" | ||
+ fi | ||
fi | ||
if test -d "$rbconfig_rubyarchhdrdir"; then | ||
RUBY_CFLAGS="$RUBY_CFLAGS -I$rbconfig_rubyarchhdrdir" |