1. 20 Mar, 2005 1 kayıt (commit)
  2. 10 Kas, 2004 1 kayıt (commit)
  3. 14 Eki, 2004 1 kayıt (commit)
  4. 13 Eki, 2004 1 kayıt (commit)
  5. 18 Tem, 2004 1 kayıt (commit)
  6. 22 Mar, 2004 1 kayıt (commit)
    • Anthony Baxter's avatar
      Basic dependency checking. setup() has two new optional arguments · 05f842ba
      Anthony Baxter yazdı
      requires and provides. requires is a sequence of strings, of the
      form 'packagename-version'. The dependency checking so far merely
      does an '__import__(packagename)' and checks for packagename.__version__
      You can also leave off the version, and any version of the package
      will be installed.
      There's a special case for the package 'python' - sys.version_info
      is used, so
      requires= ( 'python-2.3', )
      just works.
      
      Provides is of the same format as requires - but if it's not supplied,
      a provides is generated by adding the version to each entry in packages,
      or modules if packages isn't there.
      Provides is currently only used in the PKG-INFO file. Shortly, PyPI
      will grow the ability to accept these lines, and register will be
      updated to send them.
      
      There's a new command 'checkdep' command that runs these checks.
      For this version, only greater-than-or-equal checking is done. We'll
      add the ability to specify an optional operator later.
      05f842ba
  7. 12 Şub, 2004 1 kayıt (commit)
  8. 19 Şub, 2003 1 kayıt (commit)
  9. 27 Ock, 2003 1 kayıt (commit)
  10. 19 Kas, 2002 1 kayıt (commit)
  11. 14 Kas, 2002 1 kayıt (commit)
  12. 08 Kas, 2002 1 kayıt (commit)
  13. 07 Kas, 2002 1 kayıt (commit)
  14. 04 Kas, 2002 1 kayıt (commit)
  15. 11 Eyl, 2002 1 kayıt (commit)
  16. 04 Haz, 2002 3 kayıt (commit)
    • Jeremy Hylton's avatar
    • Jeremy Hylton's avatar
      Fix unused local variables caught by pychecker. · a2f9989c
      Jeremy Hylton yazdı
      Fixes a bug for Solaris pkgtool (bdist_pkgtool) that would have
      prevented it from building subpackages.
      a2f9989c
    • Jeremy Hylton's avatar
      Make setup.py less chatty by default. · cd8a1148
      Jeremy Hylton yazdı
      This is a conservative version of SF patch 504889.  It uses the log
      module instead of calling print in various places, and it ignores the
      verbose argument passed to many functions and set as an attribute on
      some objects.  Instead, it uses the verbosity set on the logger via
      the command line.
      
      The log module is now preferred over announce() and warn() methods
      that exist only for backwards compatibility.
      
      XXX This checkin changes a lot of modules that have no test suite and
      aren't exercised by the Python build process.  It will need
      substantial testing.
      cd8a1148
  17. 06 Ara, 2001 1 kayıt (commit)
  18. 26 Eyl, 2000 1 kayıt (commit)
  19. 01 Eyl, 2000 1 kayıt (commit)
    • Greg Ward's avatar
      Added 'run_setup()' to allow outsiders to run a setup script under · e3644e24
      Greg Ward yazdı
      fairly tight control, and the '_setup_stop_after' and '_setup_distribution'
      globals to provide the tight control.
      
      This isn't entirely reliable yet: it dies horribly with a NameError on the
      example PIL setup script in examples/pil_setup.py (at least with Python
      1.5.2; untested with current Python).  There's some strangeness going
      on with execfile(), but I don't understand it and don't have time
      to track it down right now.
      e3644e24
  20. 29 Agu, 2000 1 kayıt (commit)
    • Greg Ward's avatar
      Added 'script_name' and 'script_args' instance attributes to Distribution. · 9821bf4e
      Greg Ward yazdı
      Changed 'core.setup()' so it sets them to reasonable defaults.
      Tweaked how the "usage" string is generated: 'core' now provides
        'gen_usage()', which is used instead of 'USAGE'.
      Modified "build_py" and "sdist" commands to refer to
        'self.distribution.script_name' rather than 'sys.argv[0]'.
      9821bf4e
  21. 21 Haz, 2000 1 kayıt (commit)
  22. 17 Haz, 2000 1 kayıt (commit)
  23. 03 Haz, 2000 1 kayıt (commit)
  24. 02 Haz, 2000 2 kayıt (commit)
  25. 31 May, 2000 1 kayıt (commit)
  26. 30 May, 2000 1 kayıt (commit)
  27. 26 May, 2000 1 kayıt (commit)
  28. 23 May, 2000 2 kayıt (commit)
  29. 12 May, 2000 1 kayıt (commit)
  30. 22 Nis, 2000 2 kayıt (commit)
  31. 09 Nis, 2000 1 kayıt (commit)
  32. 04 Nis, 2000 1 kayıt (commit)
  33. 31 Mar, 2000 1 kayıt (commit)
    • Greg Ward's avatar
      Added 'get_name()' and 'get_full_name()' methods to Distribution. · 1b64a7e4
      Greg Ward yazdı
      Simplified 'Command.get_peer_option()' a tad -- just call 'find_peer()'
        to get the peer command object.
      Updated 'Command.copy_file()' to take a 'link' parameter, just like
        'util.copy_file()' does now.
      Added 'Command.make_archive()' to wrap 'util.make_archive()'.
      1b64a7e4
  34. 29 Mar, 2000 1 kayıt (commit)
  35. 26 Mar, 2000 1 kayıt (commit)