Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. /home/gour/repos/darcs/tailor/vcpx/repository/__init__.py:64: DeprecationWarning: object.__new__() takes no parameters
  2. project, which)
  3. 12:04:48 [I] Bootstrapping "aur" in "/home/gour/repos/mtn/aur"
  4. 12:04:48 [I] $ mtn db init --db /home/gour/.monotone/databases/aur.mtn 2>&1
  5. 12:04:48 [I] [Ok]
  6. 12:04:48 [I] Using key gour@gour-nitai.com for commits
  7. 12:04:48 [I] $ mtn setup --db /home/gour/.monotone/databases/aur.mtn --branch org.no-ip.gaura-nitai.aur --key gour@gour-nitai.com /home/gour/repos/mtn/aur 2>&1
  8. 12:04:48 [I] [Ok]
  9. 12:04:48 [I] $ darcs changes --xml-output --repo /home/gour/repos/darcs/aur --reverse
  10. 12:04:48 [I] [Ok]
  11. 12:04:48 [I] $ darcs --version
  12. 12:04:48 [I] [Ok]
  13. 12:04:48 [I] /home/gour/repos/mtn/aur $ darcs initialize
  14. 12:04:48 [I] [Ok]
  15. 12:04:48 [I] /home/gour/repos/mtn/aur $ darcs pull --all --quiet --match "hash 20090901062715-7d543-c1c56897e9cb893730fc5d707f4ef0b491335e85.gz" /home/gour/repos/darcs/aur 2>&1
  16. 12:04:48 [I] [Ok]
  17. 12:04:48 [I] /home/gour/repos/mtn/aur $ darcs changes --last 1 --xml-output
  18. 12:04:48 [I] [Ok]
  19. 12:04:48 [I] /home/gour/repos/mtn/aur $ mtn add --recursive -- . 2>&1
  20. 12:04:48 [I] [Ok]
  21. BEFORE Revision: tryton-1.2.1
  22. Date: 2009-09-01 06:27:15+00:00
  23. Author: Gour <gour@gour-nitai.com>
  24. Entries:
  25. Log:
  26. 12:04:48 [I] /home/gour/repos/mtn/aur $ mtn commit --author "Gour <gour@gour-nitai.com>" --date 2009-09-01T06:27:15 --message-file /tmp/tailorEZonuCmtn . 2>&1
  27.  
  28.  
  29. [gour@gaura-nitai aur] cat aur.py
  30. #!/usr/bin/env /home/gour/repos/darcs/tailor/tailor
  31. """
  32.  
  33.  
  34. [DEFAULT]
  35. verbose = True
  36. before-commit = before
  37. after-commit = after
  38.  
  39. [aur]
  40. target = monotone:aur
  41. root-directory = .
  42. source = darcs:aur
  43. start-revision = INITIAL
  44.  
  45.  
  46. [darcs:aur]
  47. repository = /home/gour/repos/darcs/aur
  48.  
  49. [monotone:aur]
  50. keyid = gour@gour-nitai.com
  51. repository = /home/gour/.monotone/databases/aur.mtn
  52. module = org.no-ip.gaura-nitai.aur
  53. """
  54.  
  55. def before(wd, changeset):
  56. print "BEFORE", changeset
  57. changeset.author = "Gour <gour@gour-nitai.com>"
  58. return changeset
  59. def after(wd, changeset):
  60. print "AFTER", changeset
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement