photish 0.7.5 → 0.7.6
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/TODO.md +5 -3
- data/bin/snap-ci/release.sh +10 -9
- data/lib/photish/version.rb +1 -1
- data/tasks/dev.rake +2 -1
- data/tasks/release.rake +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c6353ff1ef6c0dd4f002c47fe1966d90ae8fc23
|
4
|
+
data.tar.gz: 4dac74374517a3b78a5bb7dc9331143d4ba6817a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4ba6016ea247439856cc63c561702262bde91a895f605305c67a678b0ddf8dc4edcee6bef8313610455b3b427a5a04234dc5c57bb94e08454daab4e51e304c0
|
7
|
+
data.tar.gz: 7a7e117745dcd2c514be0375a3984167a397ce32f4c357b1bcbcccdeac7f04bbb83804ab37dc7fb151b6cab1964cb49ff5d803acf07cb3cbf5c6ad3a19d87f80
|
data/TODO.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
## In Progress
|
4
4
|
|
5
|
+
1. Sign the packages with GPG
|
5
6
|
1. Publish DEB on PPA
|
6
7
|
1. Publish RPM on COPR
|
7
8
|
|
@@ -10,9 +11,10 @@
|
|
10
11
|
1. Create BREW package, publish to TAP
|
11
12
|
1. Create ArchLinux package, publish to AUR
|
12
13
|
1. Create choco package with appveyor, maybe git submodule
|
13
|
-
1. Update
|
14
|
-
1.
|
15
|
-
|
14
|
+
1. Update README with services the project uses, travis, snapci etc.
|
15
|
+
1. Update README installation instructions with new packages and platforms, use
|
16
|
+
the latest version as a hard link with all the packages
|
17
|
+
1. Update README development instructions
|
16
18
|
1. Improve CLI help commands and documentation
|
17
19
|
1. Full features do not work in packaged version, i.e. host command, feature
|
18
20
|
flag them
|
data/bin/snap-ci/release.sh
CHANGED
@@ -5,18 +5,19 @@ set -xeuo pipefail
|
|
5
5
|
export COMMIT=$SNAP_COMMIT
|
6
6
|
export BRANCH=$SNAP_BRANCH
|
7
7
|
|
8
|
-
# determine script dir
|
9
|
-
DIR="$(dirname "$(readlink -f "$0")")"
|
10
|
-
|
11
|
-
# setup dependencies and ruby
|
12
|
-
source "$DIR/setup.sh"
|
13
|
-
|
14
|
-
# ls the artifact dir
|
15
|
-
ls -larth ./pkg
|
16
|
-
|
17
8
|
# conditionally release app
|
18
9
|
if git describe --exact-match $COMMIT && [ $BRANCH = 'master' ]
|
19
10
|
then
|
11
|
+
# determine script dir
|
12
|
+
DIR="$(dirname "$(readlink -f "$0")")"
|
13
|
+
|
14
|
+
# setup dependencies and ruby
|
15
|
+
source "$DIR/setup.sh"
|
16
|
+
|
17
|
+
# ls the artifact dir
|
18
|
+
ls -larth ./pkg
|
19
|
+
|
20
|
+
# perform the release
|
20
21
|
bundle exec rake release
|
21
22
|
else
|
22
23
|
echo "This is not a tagged commit on master, skipping release."
|
data/lib/photish/version.rb
CHANGED
data/tasks/dev.rake
CHANGED
data/tasks/release.rake
CHANGED
@@ -39,15 +39,15 @@ namespace :release do
|
|
39
39
|
end
|
40
40
|
|
41
41
|
task :upload_deb => [:ensure_token_set] do
|
42
|
-
upload_file_to_github("DEB i386", "photish
|
43
|
-
upload_file_to_github("DEB amd64", "photish
|
42
|
+
upload_file_to_github("DEB i386", "photish*_i386.deb")
|
43
|
+
upload_file_to_github("DEB amd64", "photish*_amd64.deb")
|
44
44
|
end
|
45
45
|
|
46
46
|
task :upload_build => [:ensure_token_set] do
|
47
47
|
upload_file_to_github("Linux x86", "photish*-x86.tar.gz")
|
48
48
|
upload_file_to_github("Linux x86_64", "photish*-x86_64.tar.gz")
|
49
49
|
upload_file_to_github("MacOSX", "photish*-osx.tar.gz")
|
50
|
-
upload_file_to_github("Win32", "photish*-win32.
|
50
|
+
upload_file_to_github("Win32", "photish*-win32.zip")
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|