itamae-plugin-recipe-tmux 0.1.4 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2cc6ed10b0d8f132512369a0d17646b6059abadfa35e7f64f48ac5f395d9c9f5
4
- data.tar.gz: 19d02e74b190fcabd8c78b8d12a1b6fd1c9d6423666dcf93c1c7e3995d61c501
3
+ metadata.gz: e0015a5c3ac1eaa024dc1246f8b3d632f60a0a91f6272bdad0781c8fcc4f4d12
4
+ data.tar.gz: c33f72a16607b980032802ad73b4fc52b40cd200bc653e3e43ccb6a7fac77f09
5
5
  SHA512:
6
- metadata.gz: 70f710d4bd659edb3bc4a85461bd9531fd61076e8efffe412d0e80cd5c07aaa8d42b6b42729f234521870d2c746f011a3bd16b22007ea695a7b6cad221362b01
7
- data.tar.gz: 710df61b1a0a2b4fb05e91306e68220e8d2c23f3dc079e1b8c5579b9b7f5399184fe6019abaa66505fd5296f0ecae7db28d2daca8192e5fedcc1af054140c18d
6
+ metadata.gz: 7d44c69d72af29f20a4efc9254b93fb4410704d0d81a365e9f4809b3434f58316c2fd3b5852b67a53ff5eba2a29a5d7c15b234492af33ea8900b9061f74e37db
7
+ data.tar.gz: 6dd9b0c2a6210884d5f62c32d6a0cf53b99fb4f76f6029c488e52d1fc2afff1bc4ccd7b41c4dd213375e6e0eadcadf7ce9ba07151009d6429357d47558526637
data/.circleci/config.yml CHANGED
@@ -7,7 +7,7 @@ orbs:
7
7
  executors:
8
8
  default:
9
9
  docker:
10
- - image: circleci/ruby:2.5.0
10
+ - image: cimg/ruby:2.6
11
11
  working_directory: ~/app
12
12
 
13
13
  jobs:
@@ -52,11 +52,14 @@ jobs:
52
52
 
53
53
  build_jobs: &build_jobs
54
54
  - build:
55
- name: centos:7
56
- image: centos:7
55
+ name: debian:bullseye
56
+ image: debian:bullseye
57
57
  - build:
58
- name: debian:stretch
59
- image: debian:stretch
58
+ name: debian:bookworm
59
+ image: debian:bookworm
60
+ - build:
61
+ name: debian:trixie
62
+ image: debian:trixie
60
63
 
61
64
  workflows:
62
65
  version: 2
@@ -0,0 +1,31 @@
1
+ # ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
2
+
3
+ changelog:
4
+ exclude:
5
+ labels:
6
+ - chore
7
+
8
+ categories:
9
+ - title: ":bomb: Breaking Changes"
10
+ labels:
11
+ - breaking change
12
+
13
+ - title: ":lock: Security Fix"
14
+ labels:
15
+ - security
16
+
17
+ - title: ":rocket: Features"
18
+ labels:
19
+ - enhancement
20
+
21
+ - title: ":bug: Bug Fixes"
22
+ labels:
23
+ - bug
24
+
25
+ - title: ":dependabot: Dependency updates"
26
+ labels:
27
+ - dependencies
28
+
29
+ - title: ":pencil: Other Changes"
30
+ labels:
31
+ - "*"
@@ -0,0 +1,41 @@
1
+ name: Publish gem to rubygems.org
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ release:
8
+ if: github.repository == 'sue445/itamae-plugin-recipe-tmux'
9
+ runs-on: ubuntu-latest
10
+
11
+ environment:
12
+ name: rubygems.org
13
+ url: https://rubygems.org/gems/itamae-plugin-recipe-tmux
14
+
15
+ permissions:
16
+ contents: write
17
+ id-token: write
18
+
19
+ steps:
20
+ - name: Harden Runner
21
+ uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
22
+ with:
23
+ egress-policy: audit
24
+
25
+ - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
26
+
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
29
+ with:
30
+ bundler-cache: true
31
+ ruby-version: ruby
32
+
33
+ - name: Publish to RubyGems
34
+ uses: rubygems/release-gem@1c162a739e8b4cb21a676e97b087e8268d8fc40b # v1.1.2
35
+
36
+ - name: Create GitHub release
37
+ run: |
38
+ tag_name="$(git describe --tags --abbrev=0)"
39
+ gh release create "${tag_name}" --verify-tag --generate-notes
40
+ env:
41
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
data/CHANGELOG.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # Changelog
2
2
 
3
3
  ## [Unreleased](https://github.com/sue445/itamae-plugin-recipe-tmux/tree/HEAD)
4
- [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.4...HEAD)
4
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.5...HEAD)
5
+
6
+ ## [v0.1.5](https://github.com/sue445/itamae-plugin-recipe-tmux/releases/tag/v0.1.5) (2025/12/06)
7
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.4...v0.1.5)
8
+
9
+ * Fixed error that occurred when building with Debian bookworm+
10
+ * https://github.com/sue445/itamae-plugin-recipe-tmux/pull/28
11
+ * Release gem from GitHub Actions
12
+ * https://github.com/sue445/itamae-plugin-recipe-tmux/pull/29
5
13
 
6
14
  ## [v0.1.4](https://github.com/sue445/itamae-plugin-recipe-tmux/tree/v0.1.4) (2021/11/20)
7
15
  [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.3...v0.1.4)
data/README.md CHANGED
@@ -45,12 +45,12 @@ tmux:
45
45
  version: 2.1
46
46
 
47
47
  libevent:
48
- # install version (default: 2.0.22)
49
- version: 2.0.22
50
-
48
+ # install version (default: 2.1.12)
49
+ version: 2.1.12
50
+
51
51
  ncurses:
52
52
  # install version (default: 6.0)
53
- version: 6.0
53
+ version: 6.0
54
54
  ```
55
55
 
56
56
  ## Development
@@ -6,7 +6,7 @@ node.reverse_merge!(
6
6
  prefix: "/home/#{username}/local",
7
7
  },
8
8
  libevent: {
9
- version: "2.0.22",
9
+ version: "2.1.12",
10
10
  },
11
11
  ncurses: {
12
12
  version: "6.0",
@@ -1,3 +1,5 @@
1
1
  package "wget"
2
2
  package "gcc"
3
3
  package "make"
4
+ package "libssl-dev"
5
+ package "file"
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Tmux
5
- VERSION = "0.1.4"
5
+ VERSION = "0.1.5"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-tmux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2021-11-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: itamae
@@ -88,6 +87,8 @@ extensions: []
88
87
  extra_rdoc_files: []
89
88
  files:
90
89
  - ".circleci/config.yml"
90
+ - ".github/release.yml"
91
+ - ".github/workflows/release_gem.yml"
91
92
  - ".github_changelog_generator"
92
93
  - ".gitignore"
93
94
  - ".rspec"
@@ -117,7 +118,6 @@ metadata:
117
118
  source_code_uri: https://github.com/sue445/itamae-plugin-recipe-tmux
118
119
  changelog_uri: https://github.com/sue445/itamae-plugin-recipe-tmux/blob/master/CHANGELOG.md
119
120
  rubygems_mfa_required: 'true'
120
- post_install_message:
121
121
  rdoc_options: []
122
122
  require_paths:
123
123
  - lib
@@ -132,8 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
132
  - !ruby/object:Gem::Version
133
133
  version: '0'
134
134
  requirements: []
135
- rubygems_version: 3.2.22
136
- signing_key:
135
+ rubygems_version: 3.6.9
137
136
  specification_version: 4
138
137
  summary: Itamae plugin to install tmux without any packages
139
138
  test_files: []