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 a03cb7c692d21b0eda5ddd6c3b8efd1ac254e690

release/ > dist/
Author: Martin Dvorak
Author date (UTC): 2013-12-26 00:05
Committer name: Martin Dvorak
Committer date (UTC): 2013-12-26 00:05
Parent(s): 9f024db4c6f60d24bfa4d637c56b10f798898f21
Signing key:
Tree: ba1b2436a9bdfd22cf0fd20f6c56762aa035f777
File Lines added Lines deleted
dist/clean.sh 12 0
dist/deb-build.sh 10 0
dist/deb-push.sh 7 0
dist/deb.sh 18 0
dist/dist.sh 17 0
dist/man.sh 5 0
dist/ppa-add.sh 6 0
File dist/clean.sh added (mode: 100755) (index 0000000..3002dfa)
1 #!/bin/bash
2
3 rm -vrf ../.git ../.settings ../Debug ../Release ../.cproject ../.project ../.gitignore
4
5 rm -vf *.*~ ../*.*~ ../src/*.*~
6 rm -rvf ../atom5te.cache
7 rm -vf ../man/Makefile ../man/Makefile.in
8 rm -vf ../src/Makefile ../src/Makefile.in ../src/hh ../src/*.o
9 rm -rvf ../src/.deps
10 rm -vf ../Makefile ../Makefile.in ../aclocal.m4 ../config.log ../config.status ../configure ../depcomp ../install-sh ../missing
11
12 # eof
File dist/deb-build.sh added (mode: 100755) (index 0000000..5b3e234)
1 #!/bin/bash
2
3 rm -vf *.*~
4
5 cd ..
6 bzr commit -m "Sync."
7 bzr builddeb -- -us -uc
8 bzr builddeb -S && cd ../build-area && pbuilder-dist raring build hh_0.7-0ubuntu1.dsc
9
10 # eof
File dist/deb-push.sh added (mode: 100755) (index 0000000..b8ee84b)
1 #!/bin/bash
2
3 cd ../..
4 bzr push lp:~ultradvorka/+junk/hh-package
5 dput ppa:ultradvorka hh_0.7-1ubuntu2_source.changes
6
7 # eof
File dist/deb.sh added (mode: 100755) (index 0000000..5aa5df0)
1 #!/bin/bash
2
3 # copy hstr/ source code to a work directory and run this script to create DEB package
4 mv -vf ../debian ../..
5 ./dist.sh
6 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
10 cd hh
11 rm -rvf debian
12 cp -vrf ../debian .
13 bzr commit -m "Initial commit of Debian packaging."
14 bzr builddeb -- -us -uc
15
16 bzr builddeb -S && cd ../build-area && pbuilder-dist raring build hh_0.7-0ubuntu1.dsc
17
18 # eof
File dist/dist.sh added (mode: 100755) (index 0000000..101b926)
1 #!/bin/bash
2
3 ./clean.sh
4
5 cd ..
6 aclocal
7 automake --force-missing --add-missing
8 autoconf
9
10 rm -vf depcomp install-sh missing
11 cp -vf /usr/share/automake-1.11/depcomp .
12 cp -vf /usr/share/automake-1.11/install-sh .
13 cp -vf /usr/share/automake-1.11/missing .
14
15 cd bin
16
17 # eof
File dist/man.sh added (mode: 100755) (index 0000000..a60dfa5)
1 #!/bin/bash
2
3 cd ../man && groff -man -Tascii hh.1
4
5 # eof
File dist/ppa-add.sh added (mode: 100755) (index 0000000..2773667)
1 #!/bin/bash
2
3 sudo add-apt-repository ppa:ultradvorka/ppa
4 sudo apt-get update
5
6 # 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