vagrant-sshfs 1.3.2 → 1.3.3
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/RELEASE.txt +19 -25
- data/lib/vagrant-sshfs/synced_folder.rb +1 -1
- data/lib/vagrant-sshfs/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e9ff9b1fd87da6b91c13cfb4105db3effa881e20b2531b9cd4577fe93a3e44c
|
|
4
|
+
data.tar.gz: ace7bd3d0aecc7be27a6ad38ce54a3feb8fd998d0d372abe0a234e375703160a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45788073570dd9a335cc52de46973d980743388d014c376ec4530d94f37c43c5fd58083c41de9e692868d6736258d4c0b84179f8c9ab7fdf884bef09a340bfab
|
|
7
|
+
data.tar.gz: 4eb66e002b3d2f0d7a2ceacda2a602f043c96199196127830aaa5530c5d1790f66b73aaf41293afffdedcec7b303f9932638b391fcba49507943ca59a28ebe67
|
data/RELEASE.txt
CHANGED
|
@@ -8,30 +8,27 @@ follow README for running tests
|
|
|
8
8
|
# Make sure to bump version in lib/vagrant-sshfs/version.rb and commit
|
|
9
9
|
# DO NOT TAG YET
|
|
10
10
|
|
|
11
|
+
# Craft a commit message for the tag.
|
|
12
|
+
LASTTAG='v1.3.1'
|
|
13
|
+
VERSION='1.3.2'
|
|
14
|
+
NEWTAG="v${VERSION}"
|
|
15
|
+
cat <<EOF > release-notes.txt
|
|
16
|
+
This is release ${NEWTAG} of the vagrant-sshfs plugin.
|
|
11
17
|
|
|
12
|
-
|
|
13
|
-
a previous tag by running: git tag -l -n100 v1.2.1
|
|
18
|
+
Thanks to the following contributors for patches during this release:
|
|
14
19
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
and
|
|
18
|
-
git log --no-merges --pretty=format:"%h - %ae - %s"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-> In vim add commit log - grab with
|
|
22
|
-
git log --no-merges --pretty=format:"%h %s"
|
|
23
|
-
|
|
24
|
-
-> In vim add release message - see previous tag for example
|
|
20
|
+
$(git shortlog --no-merges --pretty=format:"%h %s" -e ${LASTTAG}..HEAD)
|
|
21
|
+
EOF
|
|
25
22
|
|
|
26
23
|
# After crafting message then install git-evtag and sign
|
|
27
24
|
|
|
28
|
-
git-evtag sign
|
|
25
|
+
git-evtag sign ${NEWTAG}
|
|
29
26
|
|
|
30
27
|
|
|
31
28
|
close and type in password for signing
|
|
32
29
|
|
|
33
|
-
verify with git-evtag verify
|
|
34
|
-
verify with git verify-tag
|
|
30
|
+
verify with git-evtag verify ${NEWTAG}
|
|
31
|
+
verify with git verify-tag ${NEWTAG}
|
|
35
32
|
|
|
36
33
|
git push
|
|
37
34
|
git push --tags
|
|
@@ -43,20 +40,17 @@ git push --tags
|
|
|
43
40
|
# cannot mount using driver overlay in rootless mode. You need to run it in a `buildah unshare` session
|
|
44
41
|
buildah unshare ./build.sh
|
|
45
42
|
|
|
46
|
-
# Sign the output
|
|
47
|
-
|
|
48
|
-
$ ls pkg/vagrant-sshfs-1.2.0.gem*
|
|
49
|
-
pkg/vagrant-sshfs-1.2.0.gem pkg/vagrant-sshfs-1.2.0.gem.asc
|
|
43
|
+
# Sign the output (This will create a .asc file)
|
|
44
|
+
gpg2 --armor --detach-sign ./vagrant-sshfs-${VERSION}.gem
|
|
50
45
|
|
|
51
46
|
# make tar.gz and zip files
|
|
52
|
-
git archive --format=tar.gz
|
|
53
|
-
|
|
54
|
-
git archive --format=zip
|
|
55
|
-
|
|
47
|
+
git archive --format=tar.gz ${NEWTAG} > vagrant-sshfs-${VERSION}.tar.gz
|
|
48
|
+
gpg2 --armor --detach-sign vagrant-sshfs-${VERSION}.tar.gz
|
|
49
|
+
git archive --format=zip ${NEWTAG} > vagrant-sshfs-${VERSION}.zip
|
|
50
|
+
gpg2 --armor --detach-sign vagrant-sshfs-${VERSION}.zip
|
|
56
51
|
|
|
57
52
|
|
|
58
53
|
# Update release notes and upload files on github
|
|
59
54
|
|
|
60
55
|
# push to rubygems with:
|
|
61
|
-
gem push
|
|
62
|
-
|
|
56
|
+
gem push ./vagrant-sshfs-${VERSION}.gem
|
|
@@ -113,7 +113,7 @@ module VagrantPlugins
|
|
|
113
113
|
ENV['PATH'] += ':/usr/libexec/openssh' # Linux (Red Hat Family)
|
|
114
114
|
ENV['PATH'] += ':/usr/lib/openssh' # Linux (Debian Family)
|
|
115
115
|
ENV['PATH'] += ':/usr/lib/ssh' # Linux (Arch Linux Family)
|
|
116
|
-
ENV['PATH'] += ':/usr/
|
|
116
|
+
ENV['PATH'] += ':/usr/lib64/misc' # Linux (Gentoo Family)
|
|
117
117
|
ENV['PATH'] += ':/usr/libexec/' # Mac OS X
|
|
118
118
|
end
|
|
119
119
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-sshfs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dusty Mabe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: win32-process
|