photish 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb99245ada78036f7935c06f8ed802d2a05ce9a7
4
- data.tar.gz: 5edffbbb83da0bdc2cf0978b64a0c8501bc9e497
3
+ metadata.gz: 4c6353ff1ef6c0dd4f002c47fe1966d90ae8fc23
4
+ data.tar.gz: 4dac74374517a3b78a5bb7dc9331143d4ba6817a
5
5
  SHA512:
6
- metadata.gz: 31d61f0c21fd73fa5325ea93099adfe72f91339081932be88a182cb4c3813478b42e42cdb900ec85d65af492aad3ca5391e763315e8d38f42e8284ec2ae4e285
7
- data.tar.gz: 91cd52b5e6cefed8d6a558faf7f92b49d9d4fc7362cd238aeaa2ecacdb35d7d637ab8314145d2b9a1898be14da2ae38e3c19f0d9940e1efc8e0c91c70cdcb412
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 installation instructions with new packages and platforms
14
- 1. Track the associated project pages - travi, snap-ci etc.
15
- 1. Update development instructions
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
@@ -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."
@@ -1,5 +1,5 @@
1
1
  module Photish
2
- VERSION = "0.7.5"
2
+ VERSION = "0.7.6"
3
3
 
4
4
  NAME = 'photish'
5
5
  NAME_AND_VERSION = "#{NAME} v#{VERSION}"
@@ -15,6 +15,7 @@ namespace :dev do
15
15
  "Creating tag failed".red
16
16
  raise
17
17
  end
18
- sh("git push --tags") || abort("Push failed".red)
18
+ sh("git push") || abort("Push failed".red)
19
+ sh("git push --tags") || abort("Push of tags failed".red)
19
20
  end
20
21
  end
@@ -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*.i386.deb")
43
- upload_file_to_github("DEB amd64", "photish*.amd64.deb")
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.tar.gz")
50
+ upload_file_to_github("Win32", "photish*-win32.zip")
51
51
  end
52
52
  end
53
53
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: photish
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henry Lawson