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