xaizek / hstr (License: Apachev2) (since 2018-12-07)
Bash and Zsh shell history suggest box - easily view, navigate, search and manage your command history.
Commit d1a0027eb9e8a7605e1be9c18109993c2f05da25

Ubuntu scripts improved.
Author: Martin Dvorak
Author date (UTC): 2013-12-26 08:26
Committer name: Martin Dvorak
Committer date (UTC): 2013-12-26 08:26
Parent(s): b7859396ab8633cda2f0ef5cade8f6f5a3b25ce5
Signing key:
Tree: 4edfe2567cc332060d535c91531f9d9d31bd7929
File Lines added Lines deleted
dist/deb-build.sh 3 1
dist/deb-push.sh 3 1
dist/deb.sh 6 6
dist/env.sh 7 0
dist/src-sync.sh 5 0
File dist/deb-build.sh changed (mode: 100755) (index 5b3e234..7136e0d)
1 1 #!/bin/bash #!/bin/bash
2 2
3 . ./env.sh
4
3 5 rm -vf *.*~ rm -vf *.*~
4 6
5 7 cd .. cd ..
6 8 bzr commit -m "Sync." bzr commit -m "Sync."
7 9 bzr builddeb -- -us -uc bzr builddeb -- -us -uc
8 bzr builddeb -S && cd ../build-area && pbuilder-dist raring build hh_0.7-0ubuntu1.dsc
10 bzr builddeb -S && cd ../build-area && pbuilder-dist raring build ${HHRELEASE}.dsc
9 11
10 12 # eof # eof
File dist/deb-push.sh changed (mode: 100755) (index b8ee84b..215022a)
1 1 #!/bin/bash #!/bin/bash
2 2
3 . ./env.sh
4
3 5 cd ../.. cd ../..
4 6 bzr push lp:~ultradvorka/+junk/hh-package bzr push lp:~ultradvorka/+junk/hh-package
5 dput ppa:ultradvorka hh_0.7-1ubuntu2_source.changes
7 dput ppa:ultradvorka ${HHRELEASE}_source.changes
6 8
7 9 # eof # eof
File dist/deb.sh changed (mode: 100755) (index 5aa5df0..606a969)
1 1 #!/bin/bash #!/bin/bash
2 2
3 # copy hstr/ source code to a work directory and run this script to create DEB package
4 3 mv -vf ../debian ../.. mv -vf ../debian ../..
5 4 ./dist.sh ./dist.sh
6 5 cd ../.. cd ../..
7 mv hstr hh-0.7
8 tar zcf hh-0.7.tgz hh-0.7
9 bzr dh-make hh 0.7 hh-0.7.tgz
6 mv hstr ${HH}
7 tar zcf ${HH}.tgz ${HH}
8 bzr dh-make hh 0.7 ${HH}.tgz
10 9 cd hh cd hh
11 10 rm -rvf debian rm -rvf debian
12 11 cp -vrf ../debian . cp -vrf ../debian .
13 12 bzr commit -m "Initial commit of Debian packaging." bzr commit -m "Initial commit of Debian packaging."
14 13 bzr builddeb -- -us -uc bzr builddeb -- -us -uc
15
16 bzr builddeb -S && cd ../build-area && pbuilder-dist raring build hh_0.7-0ubuntu1.dsc
14 bzr builddeb -S
15 cd ../build-area
16 pbuilder-dist raring build ${HHRELEASE}.dsc
17 17
18 18 # eof # eof
File dist/env.sh added (mode: 100755) (index 0000000..4453a58)
1 #!/bin/bash
2
3 export HH=hh_0.7
4 export HHRELEASE=${HH}-1ubuntu2
5 export HHHOME=/home/dvorka/hstr/github/hstr
6
7 # eof
File dist/src-sync.sh added (mode: 100755) (index 0000000..351d516)
1 #!/bin/bash
2
3 . ./env.sh
4
5 # eof
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/hstr

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/hstr

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master