Daniel Pocock | c283e5d | 2014-08-21 15:46:48 +0000 | [diff] [blame] | 1 | NMUs are welcome |
| 2 | |
Daniel Pocock | c283e5d | 2014-08-21 15:46:48 +0000 | [diff] [blame] | 3 | Use something like the script below to update from Git |
| 4 | |
Daniel Pocock | 9fdc717 | 2014-08-26 11:43:42 +0000 | [diff] [blame] | 5 | Note: there is no "Build-Depends-Indep" in debian/control because |
| 6 | some of the Java tools need to be built for use during the C++ build. |
Daniel Pocock | c283e5d | 2014-08-21 15:46:48 +0000 | [diff] [blame] | 7 | #!/bin/bash |
| 8 | |
| 9 | VERSION=6.3~svn680 |
| 10 | |
| 11 | echo "*.jar export-ignore" > .gitattributes |
| 12 | |
| 13 | git archive --worktree-attributes \ |
| 14 | --format tar \ |
| 15 | --prefix libphonenumber/ \ |
| 16 | -o ../libphonenumber_${VERSION}.orig.tar \ |
| 17 | master |
| 18 | |
| 19 | cd .. |
| 20 | |
| 21 | bzip2 libphonenumber_${VERSION}.orig.tar |