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 +4 -4
- data/.circleci/config.yml +8 -5
- data/.github/release.yml +31 -0
- data/.github/workflows/release_gem.yml +41 -0
- data/CHANGELOG.md +9 -1
- data/README.md +4 -4
- data/lib/itamae/plugin/recipe/tmux/default.rb +1 -1
- data/lib/itamae/plugin/recipe/tmux/dependency.rb +2 -0
- data/lib/itamae/plugin/recipe/tmux/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0015a5c3ac1eaa024dc1246f8b3d632f60a0a91f6272bdad0781c8fcc4f4d12
|
|
4
|
+
data.tar.gz: c33f72a16607b980032802ad73b4fc52b40cd200bc653e3e43ccb6a7fac77f09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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:
|
|
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:
|
|
56
|
-
image:
|
|
55
|
+
name: debian:bullseye
|
|
56
|
+
image: debian:bullseye
|
|
57
57
|
- build:
|
|
58
|
-
name: debian:
|
|
59
|
-
image: debian:
|
|
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
|
data/.github/release.yml
ADDED
|
@@ -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
|
+
[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.
|
|
49
|
-
version: 2.
|
|
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
|
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
|
+
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:
|
|
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.
|
|
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: []
|