syslog 0.1.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/push_gem.yml +46 -0
- data/.github/workflows/test.yml +5 -1
- data/{LICENSE.txt → BSDL} +3 -3
- data/COPYING +56 -0
- data/README.md +1 -0
- data/Rakefile +9 -1
- data/ext/syslog/extconf.rb +18 -5
- data/ext/syslog/syslog.c +2 -2
- data/lib/syslog.rb +10 -0
- data/syslog.gemspec +2 -2
- metadata +23 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52f533359f850a1836a3161e0f87512e7db229c3f2914766e55797e60a283806
|
4
|
+
data.tar.gz: 28c1054089a598e4784387f3a98f192189683b5673f46355694f1561d2d4c103
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a86150afc0aa20e6af3ef8cca7f135030b58aeedec37dca817e0747a2c67af56712af042f0265b9f4968a171690ca03d4f4b1c1ac86b9d0361aa2224d71c65fc
|
7
|
+
data.tar.gz: b931344ddf90fa04c8a84361a032fd864e7572c0d5efbd0659bbb667b9804ba1a44b59615f57645536b2e47ed33b3d763a81c332d6f1a6b9735814d0d0df84b6
|
@@ -0,0 +1,46 @@
|
|
1
|
+
name: Publish gem to rubygems.org
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- 'v*'
|
7
|
+
|
8
|
+
permissions:
|
9
|
+
contents: read
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
push:
|
13
|
+
if: github.repository == 'ruby/syslog'
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
|
16
|
+
environment:
|
17
|
+
name: rubygems.org
|
18
|
+
url: https://rubygems.org/gems/syslog
|
19
|
+
|
20
|
+
permissions:
|
21
|
+
contents: write
|
22
|
+
id-token: write
|
23
|
+
|
24
|
+
steps:
|
25
|
+
- name: Harden Runner
|
26
|
+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
|
27
|
+
with:
|
28
|
+
egress-policy: audit
|
29
|
+
|
30
|
+
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
31
|
+
|
32
|
+
- name: Set up Ruby
|
33
|
+
uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.0
|
34
|
+
with:
|
35
|
+
bundler-cache: true
|
36
|
+
ruby-version: ruby
|
37
|
+
|
38
|
+
- name: Publish to RubyGems
|
39
|
+
uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
|
40
|
+
|
41
|
+
- name: Create GitHub release
|
42
|
+
run: |
|
43
|
+
tag_name="$(git describe --tags --abbrev=0)"
|
44
|
+
gh release create "${tag_name}" --verify-tag --generate-notes
|
45
|
+
env:
|
46
|
+
GITHUB_TOKEN: ${{ secrets.MATZBOT_GITHUB_WORKFLOW_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
@@ -8,7 +8,11 @@ jobs:
|
|
8
8
|
strategy:
|
9
9
|
matrix:
|
10
10
|
ruby: [ 2.7, 2.6, 2.5, head ]
|
11
|
-
os: [ ubuntu-latest, macos-latest ]
|
11
|
+
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
12
|
+
exclude:
|
13
|
+
- { os: macos-latest, ruby: '2.5' }
|
14
|
+
include:
|
15
|
+
- { os: macos-13, ruby: '2.5' }
|
12
16
|
runs-on: ${{ matrix.os }}
|
13
17
|
steps:
|
14
18
|
- uses: actions/checkout@v4
|
data/{LICENSE.txt → BSDL}
RENAMED
@@ -4,10 +4,10 @@ Redistribution and use in source and binary forms, with or without
|
|
4
4
|
modification, are permitted provided that the following conditions
|
5
5
|
are met:
|
6
6
|
1. Redistributions of source code must retain the above copyright
|
7
|
-
notice, this list of conditions and the following disclaimer.
|
7
|
+
notice, this list of conditions and the following disclaimer.
|
8
8
|
2. Redistributions in binary form must reproduce the above copyright
|
9
|
-
notice, this list of conditions and the following disclaimer in the
|
10
|
-
documentation and/or other materials provided with the distribution.
|
9
|
+
notice, this list of conditions and the following disclaimer in the
|
10
|
+
documentation and/or other materials provided with the distribution.
|
11
11
|
|
12
12
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
13
13
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
data/COPYING
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
|
2
|
+
You can redistribute it and/or modify it under either the terms of the
|
3
|
+
2-clause BSDL (see the file BSDL), or the conditions below:
|
4
|
+
|
5
|
+
1. You may make and give away verbatim copies of the source form of the
|
6
|
+
software without restriction, provided that you duplicate all of the
|
7
|
+
original copyright notices and associated disclaimers.
|
8
|
+
|
9
|
+
2. You may modify your copy of the software in any way, provided that
|
10
|
+
you do at least ONE of the following:
|
11
|
+
|
12
|
+
a. place your modifications in the Public Domain or otherwise
|
13
|
+
make them Freely Available, such as by posting said
|
14
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
15
|
+
the author to include your modifications in the software.
|
16
|
+
|
17
|
+
b. use the modified software only within your corporation or
|
18
|
+
organization.
|
19
|
+
|
20
|
+
c. give non-standard binaries non-standard names, with
|
21
|
+
instructions on where to get the original software distribution.
|
22
|
+
|
23
|
+
d. make other distribution arrangements with the author.
|
24
|
+
|
25
|
+
3. You may distribute the software in object code or binary form,
|
26
|
+
provided that you do at least ONE of the following:
|
27
|
+
|
28
|
+
a. distribute the binaries and library files of the software,
|
29
|
+
together with instructions (in the manual page or equivalent)
|
30
|
+
on where to get the original distribution.
|
31
|
+
|
32
|
+
b. accompany the distribution with the machine-readable source of
|
33
|
+
the software.
|
34
|
+
|
35
|
+
c. give non-standard binaries non-standard names, with
|
36
|
+
instructions on where to get the original software distribution.
|
37
|
+
|
38
|
+
d. make other distribution arrangements with the author.
|
39
|
+
|
40
|
+
4. You may modify and include the part of the software into any other
|
41
|
+
software (possibly commercial). But some files in the distribution
|
42
|
+
are not written by the author, so that they are not under these terms.
|
43
|
+
|
44
|
+
For the list of those files and their copying conditions, see the
|
45
|
+
file LEGAL.
|
46
|
+
|
47
|
+
5. The scripts and library files supplied as input to or produced as
|
48
|
+
output from the software do not automatically fall under the
|
49
|
+
copyright of the software, but belong to whomever generated them,
|
50
|
+
and may be sold commercially, and may be aggregated with this
|
51
|
+
software.
|
52
|
+
|
53
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
54
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
55
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
56
|
+
PURPOSE.
|
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -8,5 +8,13 @@ Rake::TestTask.new(:test) do |t|
|
|
8
8
|
end
|
9
9
|
|
10
10
|
require 'rake/extensiontask'
|
11
|
-
Rake::ExtensionTask.new("
|
11
|
+
Rake::ExtensionTask.new("syslog_ext") do |ext|
|
12
|
+
ext.ext_dir = 'ext/syslog'
|
13
|
+
|
14
|
+
# In contrast to "gem install" a "rake compile" is expecting the C-ext file even on Windows.
|
15
|
+
# Work around by creating a dummy so file.
|
16
|
+
task "#{ext.tmp_dir}/#{ext.platform}/stage/lib" do |t|
|
17
|
+
touch "#{ext.tmp_dir}/#{ext.platform}/#{ext.name}/#{RUBY_VERSION}/#{ext.name}.so"
|
18
|
+
end
|
19
|
+
end
|
12
20
|
task :default => :test
|
data/ext/syslog/extconf.rb
CHANGED
@@ -4,10 +4,23 @@
|
|
4
4
|
|
5
5
|
require 'mkmf'
|
6
6
|
|
7
|
-
|
7
|
+
def generate_dummy_makefile
|
8
|
+
File.open("Makefile", "w") do |f|
|
9
|
+
f.puts dummy_makefile("syslog_ext").join
|
10
|
+
end
|
11
|
+
end
|
8
12
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
create_makefile("syslog")
|
13
|
+
def windows?
|
14
|
+
RbConfig::CONFIG["host_os"] =~ /mswin|mingw/
|
15
|
+
end
|
13
16
|
|
17
|
+
if windows?
|
18
|
+
generate_dummy_makefile
|
19
|
+
else
|
20
|
+
have_library("log") # for Android
|
21
|
+
|
22
|
+
have_header("syslog.h") &&
|
23
|
+
have_func("openlog") &&
|
24
|
+
have_func("setlogmask") &&
|
25
|
+
create_makefile("syslog_ext")
|
26
|
+
end
|
data/ext/syslog/syslog.c
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
#include "ruby/util.h"
|
13
13
|
#include <syslog.h>
|
14
14
|
|
15
|
-
#define SYSLOG_VERSION "0.
|
15
|
+
#define SYSLOG_VERSION "0.3.0"
|
16
16
|
|
17
17
|
/* Syslog class */
|
18
18
|
static VALUE mSyslog;
|
@@ -415,7 +415,7 @@ static VALUE mSyslogMacros_included(VALUE mod, VALUE target)
|
|
415
415
|
*
|
416
416
|
* The syslog protocol is standardized in RFC 5424.
|
417
417
|
*/
|
418
|
-
void
|
418
|
+
void Init_syslog_ext(void)
|
419
419
|
{
|
420
420
|
#undef rb_intern
|
421
421
|
mSyslog = rb_define_module("Syslog");
|
data/lib/syslog.rb
ADDED
data/syslog.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
23
|
end
|
24
24
|
spec.extensions = ["ext/syslog/extconf.rb"]
|
25
|
-
spec.bindir = "exe"
|
26
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
25
|
spec.require_paths = ["lib"]
|
26
|
+
|
27
|
+
spec.add_dependency "logger"
|
28
28
|
end
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: syslog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Akinori MUSHA
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
11
|
+
date: 2025-03-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: logger
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
description: Ruby interface for the POSIX system logging facility.
|
14
28
|
email:
|
15
29
|
- knu@idaemons.org
|
@@ -21,10 +35,12 @@ files:
|
|
21
35
|
- ".git-blame-ignore-revs"
|
22
36
|
- ".github/CODEOWNERS"
|
23
37
|
- ".github/dependabot.yml"
|
38
|
+
- ".github/workflows/push_gem.yml"
|
24
39
|
- ".github/workflows/test.yml"
|
25
40
|
- ".gitignore"
|
41
|
+
- BSDL
|
42
|
+
- COPYING
|
26
43
|
- Gemfile
|
27
|
-
- LICENSE.txt
|
28
44
|
- README.md
|
29
45
|
- Rakefile
|
30
46
|
- bin/console
|
@@ -32,6 +48,7 @@ files:
|
|
32
48
|
- ext/syslog/extconf.rb
|
33
49
|
- ext/syslog/syslog.c
|
34
50
|
- ext/syslog/syslog.txt
|
51
|
+
- lib/syslog.rb
|
35
52
|
- lib/syslog/logger.rb
|
36
53
|
- syslog.gemspec
|
37
54
|
homepage: https://github.com/ruby/syslog
|
@@ -56,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
73
|
- !ruby/object:Gem::Version
|
57
74
|
version: '0'
|
58
75
|
requirements: []
|
59
|
-
rubygems_version: 3.5.
|
76
|
+
rubygems_version: 3.5.11
|
60
77
|
signing_key:
|
61
78
|
specification_version: 4
|
62
79
|
summary: Ruby interface for the POSIX system logging facility.
|