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 |