328 | | sudo apt-get build-dep jinja2 |
329 | | |
330 | | wget http://archive.ubuntu.com/ubuntu/pool/universe/j/jinja2/jinja2_2.1.1-2ubuntu2.dsc |
331 | | wget http://archive.ubuntu.com/ubuntu/pool/universe/j/jinja2/jinja2_2.1.1.orig.tar.gz |
332 | | wget http://archive.ubuntu.com/ubuntu/pool/universe/j/jinja2/jinja2_2.1.1-2ubuntu2.diff.gz |
333 | | dpkg-source -x jinja2_2.1.1-2ubuntu2.dsc |
334 | | cd jinja2-2.1.1 |
| 327 | sudo apt-get build-dep sqlalchemy |
| 328 | |
| 329 | wget http://backports.org/debian/pool/main/s/sqlalchemy/sqlalchemy_0.5.6-1~bpo50+1.dsc |
| 330 | wget http://backports.org/debian/pool/main/s/sqlalchemy/sqlalchemy_0.5.6.orig.tar.gz |
| 331 | wget http://backports.org/debian/pool/main/s/sqlalchemy/sqlalchemy_0.5.6-1~bpo50+1.diff.gz |
| 332 | dpkg-source -x sqlalchemy_0.5.6-1~bpo50+1.dsc |
| 333 | cd sqlalchemy-0.5.6 |
349 | | |
350 | | And then make sure it's installed locally for the next step. |
351 | | |
352 | | ===== upload sphinx ===== |
353 | | |
354 | | Upload: |
355 | | {{{ |
356 | | #!/bin/sh -x |
357 | | |
358 | | sudo apt-get build-dep sphinx |
359 | | |
360 | | wget http://archive.ubuntu.com/ubuntu/pool/main/s/sphinx/sphinx_0.6.2-1.dsc |
361 | | wget http://archive.ubuntu.com/ubuntu/pool/main/s/sphinx/sphinx_0.6.2.orig.tar.gz |
362 | | wget http://archive.ubuntu.com/ubuntu/pool/main/s/sphinx/sphinx_0.6.2-1.diff.gz |
363 | | dpkg-source -x sphinx_0.6.2-1.dsc |
364 | | cd sphinx-0.6.2 |
365 | | cp debian/changelog debian/changelog.orig |
366 | | ppa="testing" # "testing" or "ppa" (for stable) |
367 | | try="1" |
368 | | |
369 | | for dist in dapper hardy intrepid jaunty; do |
370 | | cp debian/changelog.orig debian/changelog |
371 | | (cd debian && debchange --force-bad-version --preserve --newversion \ |
372 | | "0.6.2-1~${ppa}${try}~${dist}${try}" \ |
373 | | backport to ppa ${ppa}, dist ${dist}, try ${try}) |
374 | | # Replace 0xAA95C349 to your GnuPG Key ID |
375 | | debuild -S -k0xAA95C349 |
376 | | dput bcfg2-testing-force-${dist} ../sphinx_0.6.2-1~${ppa}${try}~${dist}${try}_source.changes |
377 | | done |
378 | | }}} |
379 | | |
380 | | And then make sure it's installed locally for the next step. |
381 | | |
382 | | ===== upload sqlalchemy ===== |
383 | | |
384 | | Upload: |
385 | | {{{ |
386 | | #!/bin/sh -x |
387 | | |
388 | | sudo apt-get build-dep sqlalchemy |
389 | | |
390 | | wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sqlalchemy/sqlalchemy_0.5.5-1.dsc |
391 | | wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sqlalchemy/sqlalchemy_0.5.5.orig.tar.gz |
392 | | wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sqlalchemy/sqlalchemy_0.5.5-1.diff.gz |
393 | | dpkg-source -x sqlalchemy_0.5.5-1.dsc |
394 | | cd sqlalchemy-0.5.5 |
395 | | cp debian/changelog debian/changelog.orig |
396 | | ppa="testing" # "testing" or "ppa" (for stable) |
397 | | try="1" |
398 | | |
399 | | for dist in dapper hardy intrepid jaunty; do |
400 | | cp debian/changelog.orig debian/changelog |
401 | | (cd debian && debchange --force-bad-version --preserve --newversion \ |
402 | | "0.5.5-1~${ppa}${try}~${dist}${try}" \ |
403 | | backport to ppa ${ppa}, dist ${dist}, try ${try}) |
404 | | # Replace 0xAA95C349 to your GnuPG Key ID |
405 | | debuild -S -k0xAA95C349 |
406 | | dput bcfg2-testing-force-${dist} ../sqlalchemy_0.5.5-1~${ppa}${try}~${dist}${try}_source.changes |
407 | | done |
408 | | }}} |