| 246 | | |
| 247 | | ==== upload po4a ==== |
| 248 | | |
| 249 | | Upload: |
| 250 | | {{{ |
| 251 | | #!/bin/sh -x |
| 252 | | |
| 253 | | sudo apt-get build-dep po4a |
| 254 | | |
| 255 | | wget http://archive.ubuntu.com/ubuntu/pool/main/p/po4a/po4a_0.36.1-1.dsc |
| 256 | | wget http://archive.ubuntu.com/ubuntu/pool/main/p/po4a/po4a_0.36.1.orig.tar.gz |
| 257 | | wget http://archive.ubuntu.com/ubuntu/pool/main/p/po4a/po4a_0.36.1-1.diff.gz |
| 258 | | dpkg-source -x po4a_0.36.1-1.dsc |
| 259 | | cd po4a-0.36.1 |
| 260 | | cp debian/changelog debian/changelog.orig |
| 261 | | ppa="testing" # "testing" or "ppa" (for stable) |
| 262 | | try="1" |
| 263 | | |
| 264 | | for dist in dapper hardy intrepid jaunty karmic; do |
| 265 | | cp debian/changelog.orig debian/changelog |
| 266 | | (cd debian && debchange --force-bad-version --preserve --newversion \ |
| 267 | | "0.36.1-1~${ppa}${try}~${dist}${try}" \ |
| 268 | | backport to ppa ${ppa}, dist ${dist}, try ${try}) |
| 269 | | # Replace 0xAA95C349 to your GnuPG Key ID |
| 270 | | debuild -S -k0xAA95C349 |
| 271 | | dput bcfg2-testing-force-${dist} ../po4a_0.36.1-1~${ppa}${try}~${dist}${try}_source.changes |
| 272 | | done |
| 273 | | }}} |
| 274 | | |
| 275 | | And then make sure it's installed locally for the next step. |