[DRE-commits] [ruby-raindrops] 01/01: Imported Upstream version 0.15.0

zeha at debian.org zeha at debian.org
Wed Feb 3 12:27:24 UTC 2016


This is an automated email from the git hooks/post-receive script.

zeha pushed a commit to annotated tag upstream/0.15.0
in repository ruby-raindrops.

commit 6cb72e1456c8569c45eae5a75c8a3f58f7c662f7
Author: Christian Hofstaedtler <zeha at debian.org>
Date:   Wed Feb 3 12:24:49 2016 +0000

    Imported Upstream version 0.15.0
---
 GIT-VERSION-FILE               |  2 +-
 GIT-VERSION-GEN                |  2 +-
 LATEST                         | 15 ++++-----------
 NEWS                           |  7 +++++++
 ext/raindrops/extconf.rb       |  1 +
 ext/raindrops/linux_tcp_info.c |  4 ++--
 metadata.yml                   |  6 +++---
 7 files changed, 19 insertions(+), 18 deletions(-)

diff --git a/GIT-VERSION-FILE b/GIT-VERSION-FILE
index 323658f..ceab376 100644
--- a/GIT-VERSION-FILE
+++ b/GIT-VERSION-FILE
@@ -1 +1 @@
-GIT_VERSION = 0.14.0
+GIT_VERSION = 0.15.0
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index dfa443f..1086f83 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.14.0
+DEF_VER=v0.15.0
 
 LF='
 '
diff --git a/LATEST b/LATEST
index 5ef2483..ce7143c 100644
--- a/LATEST
+++ b/LATEST
@@ -1,14 +1,7 @@
-=== raindrops 0.14.0 - misc doc updates / 2015-06-25 21:50 UTC
+=== raindrops 0.15.0 - non-glibc compat fix on Linux / 2015-07-22 00:30 UTC
 
-  Eric Wong (7):
-        linux_inet_diag: annotate memory freeing on diag errors
-        README: trim intro and update license
-        modernize packaging and documentation
-        move mailing list to raindrops-public at bogomips.org
-        linux_inet_diag: clarify *fprintf usage without GVL
-        TODO: add item for unix_diag and udp_diag
-        linux_inet_diag: fix Wshorten-64-to-32 warnings
+  Thanks to Doug Forster for sending us the report.
+  No other fixes
 
-  Hleb Valoshka (1):
-        Add setup and teardown for ipv6 tests
+  * check for the existence of linux/tcp.h
 
diff --git a/NEWS b/NEWS
index e6f4bde..c1e9b20 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+=== raindrops 0.15.0 - non-glibc compat fix on Linux / 2015-07-22 00:30 UTC
+
+  Thanks to Doug Forster for sending us the report.
+  No other fixes
+
+  * check for the existence of linux/tcp.h
+
 === raindrops 0.14.0 - misc doc updates / 2015-06-25 21:50 UTC
 
   Eric Wong (7):
diff --git a/ext/raindrops/extconf.rb b/ext/raindrops/extconf.rb
index f012808..74ed8f9 100644
--- a/ext/raindrops/extconf.rb
+++ b/ext/raindrops/extconf.rb
@@ -6,6 +6,7 @@ have_func('munmap', 'sys/mman.h') or abort 'munmap() not found'
 
 $CPPFLAGS += " -D_GNU_SOURCE "
 have_func('mremap', 'sys/mman.h')
+have_header('linux/tcp.h')
 
 $CPPFLAGS += " -D_BSD_SOURCE "
 have_func("getpagesize", "unistd.h")
diff --git a/ext/raindrops/linux_tcp_info.c b/ext/raindrops/linux_tcp_info.c
index dcdb153..5e25d4d 100644
--- a/ext/raindrops/linux_tcp_info.c
+++ b/ext/raindrops/linux_tcp_info.c
@@ -1,4 +1,4 @@
-#ifdef __linux__
+#if defined(__linux__) && defined(HAVE_LINUX_TCP_H)
 #include <ruby.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
@@ -170,4 +170,4 @@ void Init_raindrops_linux_tcp_info(void)
 	TCPI_DEFINE_METHOD(total_retrans);
 }
 #endif /* TCP_INFO */
-#endif /* __linux__ */
+#endif /* defined(__linux__) && defined(HAVE_LINUX_TCP_H) */
diff --git a/metadata.yml b/metadata.yml
index b3685fc..7ddcb59 100644
--- a/metadata.yml
+++ b/metadata.yml
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: raindrops
 version: !ruby/object:Gem::Version
-  version: 0.14.0
+  version: 0.15.0
 platform: ruby
 authors:
 - raindrops hackers
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-06-25 00:00:00.000000000 Z
+date: 2015-07-22 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: aggregate
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.8
+rubygems_version: 2.5.0
 signing_key: 
 specification_version: 4
 summary: real-time stats for preforking Rack servers

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-raindrops.git



More information about the Pkg-ruby-extras-commits mailing list