| | 276 | ==== upload python-defaults ==== |
| | 277 | |
| | 278 | (aka python-all) |
| | 279 | |
| | 280 | Upload: |
| | 281 | {{{ |
| | 282 | #!/bin/sh -x |
| | 283 | |
| | 284 | sudo apt-get build-dep python-defaults |
| | 285 | |
| | 286 | wget http://archive.ubuntu.com/ubuntu/pool/main/p/python-defaults/python-defaults_2.6.2-0ubuntu1.dsc |
| | 287 | wget http://archive.ubuntu.com/ubuntu/pool/main/p/python-defaults/python-defaults_2.6.2-0ubuntu1.tar.gz |
| | 288 | dpkg-source -x python-defaults_2.6.2-0ubuntu1.dsc |
| | 289 | cd python-defaults-2.6.2 |
| | 290 | cp debian/changelog debian/changelog.orig |
| | 291 | ppa="testing" # "testing" or "ppa" (for stable) |
| | 292 | try="1" |
| | 293 | |
| | 294 | for dist in hardy intrepid; do |
| | 295 | cp debian/changelog.orig debian/changelog |
| | 296 | (cd debian && debchange --force-bad-version --preserve --newversion \ |
| | 297 | "2.6.2-0ubuntu1~${ppa}${try}~${dist}${try}" \ |
| | 298 | backport to ppa ${ppa}, dist ${dist}, try ${try}) |
| | 299 | # Replace 0xAA95C349 to your GnuPG Key ID |
| | 300 | debuild -S -k0xAA95C349 |
| | 301 | dput bcfg2-testing-force-${dist} ../python-defaults_2.6.2-0ubuntu1~${ppa}${try}~${dist}${try}_source.changes |
| | 302 | done |
| | 303 | }}} |
| | 304 | |
| | 305 | And then make sure it's installed locally for the next step. |
| | 306 | |
| | 307 | ==== upload jinja2 ==== |
| | 308 | |
| | 309 | (aka python-jinja2) |
| | 310 | |
| | 311 | Upload: |
| | 312 | {{{ |
| | 313 | #!/bin/sh -x |
| | 314 | |
| | 315 | sudo apt-get build-dep jinja2 |
| | 316 | |
| | 317 | wget http://archive.ubuntu.com/ubuntu/pool/universe/j/jinja2/jinja2_2.1.1-2ubuntu2.dsc |
| | 318 | wget http://archive.ubuntu.com/ubuntu/pool/universe/j/jinja2/jinja2_2.1.1.orig.tar.gz |
| | 319 | wget http://archive.ubuntu.com/ubuntu/pool/universe/j/jinja2/jinja2_2.1.1-2ubuntu2.diff.gz |
| | 320 | dpkg-source -x jinja2_2.1.1-2ubuntu2.dsc |
| | 321 | cd jinja2-2.1.1 |
| | 322 | cp debian/changelog debian/changelog.orig |
| | 323 | ppa="testing" # "testing" or "ppa" (for stable) |
| | 324 | try="2" |
| | 325 | |
| | 326 | for dist in hardy intrepid; do |
| | 327 | cp debian/changelog.orig debian/changelog |
| | 328 | (cd debian && debchange --force-bad-version --preserve --newversion \ |
| | 329 | "2.1.1-2ubuntu2~${ppa}${try}~${dist}${try}" \ |
| | 330 | backport to ppa ${ppa}, dist ${dist}, try ${try}) |
| | 331 | # Replace 0xAA95C349 to your GnuPG Key ID |
| | 332 | debuild -S -k0xAA95C349 |
| | 333 | dput bcfg2-testing-force-${dist} ../jinja2_2.1.1-2ubuntu2~${ppa}${try}~${dist}${try}_source.changes |
| | 334 | done |
| | 335 | }}} |
| | 336 | |
| | 337 | And then make sure it's installed locally for the next step. |
| | 338 | |