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 9f024db4c6f60d24bfa4d637c56b10f798898f21

bin/ > release/
Author: Martin Dvorak
Author date (UTC): 2013-12-26 00:04
Committer name: Martin Dvorak
Committer date (UTC): 2013-12-26 00:04
Parent(s): eef3a67183f3b3f8a97800c97c02b7f3e90dc5d4
Signing key:
Tree: 115d625ef049f26cc5acf3c4f23c8a5d3b0f6a96
File Lines added Lines deleted
bin/clean.sh 0 12
bin/deb-build.sh 0 10
bin/deb-push.sh 0 7
bin/deb.sh 0 18
bin/dist.sh 0 17
bin/man.sh 0 5
bin/ppa-add.sh 0 6
debian/changelog 2 2
File bin/clean.sh deleted (index 3002dfa..0000000)
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 bin/deb-build.sh deleted (index 5b3e234..0000000)
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 bin/deb-push.sh deleted (index b8ee84b..0000000)
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 bin/deb.sh deleted (index 5aa5df0..0000000)
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 bin/dist.sh deleted (index 101b926..0000000)
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 bin/man.sh deleted (index a60dfa5..0000000)
1 #!/bin/bash
2
3 cd ../man && groff -man -Tascii hh.1
4
5 # eof
File bin/ppa-add.sh deleted (index 2773667..0000000)
1 #!/bin/bash
2
3 sudo add-apt-repository ppa:ultradvorka/ppa
4 sudo apt-get update
5
6 # eof
File debian/changelog changed (mode: 100644) (index b0f3bae..f3d9fe6)
1 hh (0.7-1ubuntu2) raring; urgency=low
1 hh (0.7-2ubuntu3) raring; urgency=low
2 2
3 * Fixing history and curses includes.
3 * Making source C99 compliant.
4 4
5 5 -- Martin Dvorak (Dvorka) <martin.dvorak@mindforger.com> Wed, 25 Dec 2013 17:21:31 +0100 -- Martin Dvorak (Dvorka) <martin.dvorak@mindforger.com> Wed, 25 Dec 2013 17:21:31 +0100
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