mirror of
https://github.com/dvorka/hstr.git
synced 2025-02-24 06:47:16 +08:00
Improving release scripts.
This commit is contained in:
parent
4ed4568691
commit
6e667287c6
4 changed files with 16 additions and 3 deletions
2
debian/copyright
vendored
2
debian/copyright
vendored
|
@ -3,7 +3,7 @@ Upstream-Name: hh
|
||||||
Source: https://github.com/dvorka/hstr
|
Source: https://github.com/dvorka/hstr
|
||||||
|
|
||||||
Files: debian/*
|
Files: debian/*
|
||||||
Copyright: 2013 Martin Dvorak <martin.dvorak@mindforger.com>
|
Copyright: 2015 Martin Dvorak <martin.dvorak@mindforger.com>
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
|
1
dist/github-env.sh
vendored
1
dist/github-env.sh
vendored
|
@ -5,6 +5,5 @@ export GH_RELEASE_DIR=~/p/hstr/release
|
||||||
export GH_DISTRO_DIR=${GH_RELEASE_DIR}/release-${NOW}
|
export GH_DISTRO_DIR=${GH_RELEASE_DIR}/release-${NOW}
|
||||||
|
|
||||||
export HHVERSION="1.16"
|
export HHVERSION="1.16"
|
||||||
export GH_MSG="History timestamps, Zsh support and management fixes."
|
|
||||||
|
|
||||||
# eof
|
# eof
|
||||||
|
|
7
dist/github-release.sh
vendored
7
dist/github-release.sh
vendored
|
@ -1,6 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# update github-env.sh to put there version and release comment
|
# Release checklist:
|
||||||
|
# - update version in the source code (hstr.c)
|
||||||
|
# - update version in configure.ac
|
||||||
|
# - update version github-env.sh
|
||||||
|
# - run this script from this directory
|
||||||
|
|
||||||
. ./github-env.sh
|
. ./github-env.sh
|
||||||
export SCRIPT_HOME=`pwd`
|
export SCRIPT_HOME=`pwd`
|
||||||
|
|
||||||
|
|
9
dist/ubuntu-make-all-distros.sh
vendored
9
dist/ubuntu-make-all-distros.sh
vendored
|
@ -1,5 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Launchpad release checklist:
|
||||||
|
# - update version in source code (hstr.c)
|
||||||
|
# - update version in configure.ac
|
||||||
|
# - update release message in this file
|
||||||
|
# - update version in this file
|
||||||
|
# - check target Ubuntu distributions in this file
|
||||||
|
# - check minor version in this file
|
||||||
|
# - run this script from ~/p/hstr/launchpad
|
||||||
|
|
||||||
export HHBZRMSG="History timestamps, Zsh support and management fixes."
|
export HHBZRMSG="History timestamps, Zsh support and management fixes."
|
||||||
export VERSION=1.16.
|
export VERSION=1.16.
|
||||||
export MINOR=1
|
export MINOR=1
|
||||||
|
|
Loading…
Reference in a new issue