~ubuntu-branches/ubuntu/quantal/ruby1.9.1/quantal

« back to all changes in this revision

Viewing changes to ext/tk/lib/tkextlib/tcllib.rb

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2010-07-31 17:08:39 UTC
  • mfrom: (1.1.4 upstream) (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100731170839-j034dmpdqt1cc4p6
Tags: 1.9.2~svn28788-1
* New release based on upstream snapshot from the 1.9.2 branch,
  after 1.9.2 RC2. That branch is (supposed to be) binary-compatible
  with the 1.9.1 branch.
  + Builds fine on i386. Closes: #580852.
* Upgrade to Standards-Version: 3.9.1. No changes needed.
* Updated generated incs.
* Patches that still need work:
  + Unclear status, need more investigation:
   090729_fix_Makefile_deps.dpatch
   090803_exclude_rdoc.dpatch
   203_adjust_base_of_search_path.dpatch
   902_define_YAML_in_yaml_stringio.rb.dpatch
   919_common.mk_tweaks.dpatch
   931_libruby_suffix.dpatch
   940_test_thread_mutex_sync_shorter.dpatch
  + Maybe not needed anymore, keeping but not applying.
   102_skip_test_copy_stream.dpatch (test doesn't block anymore?)
   104_skip_btest_io.dpatch (test doesn't block anymore?)
   201_gem_prelude.dpatch (we don't use that rubygems anyway?)
   202_gem_default_dir.dpatch (we don't use that rubygems anyway?)
   940_test_file_exhaustive_fails_as_root.dpatch
   940_test_priority_fails.dpatch
   100518_load_libc_libm.dpatch
* Add disable-tests.diff: disable some tests that cause failures on FreeBSD.
  Closes: #590002, #543805, #542927.
* However, many new failures on FreeBSD. Since that version is still an
  improvement, add the check that makes test suite failures non-fatal on
  FreeBSD again. That still needs to be investigated.
* Re-add 903_skip_base_ruby_check.dpatch
* Add build-dependency on ruby1.8 and drop all pre-generated files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  module Tcllib
43
43
    TkComm::TkExtlibAutoloadModule.unshift(self)
44
44
 
 
45
    # package:: autoscroll
 
46
    autoload :Autoscroll,         'tkextlib/tcllib/autoscroll'
 
47
 
45
48
    # package:: ctext
46
49
    autoload :CText,              'tkextlib/tcllib/ctext'
47
50
 
 
51
    # package:: cursor
 
52
    autoload :Cursor,             'tkextlib/tcllib/cursor'
 
53
 
 
54
    # package:: datefield
 
55
    autoload :Datefield,          'tkextlib/tcllib/datefield'
 
56
    autoload :DateField,          'tkextlib/tcllib/datefield'
 
57
 
48
58
    # package:: getstring
49
59
    autoload :GetString_Dialog,   'tkextlib/tcllib/getstring'
50
60
 
51
61
    # package:: history
52
62
    autoload :History,            'tkextlib/tcllib/history'
53
63
 
54
 
    # package:: datefield
55
 
    autoload :Datefield,          'tkextlib/tcllib/datefield'
56
 
    autoload :DateField,          'tkextlib/tcllib/datefield'
57
 
 
58
64
    # package:: ico
59
65
    autoload :ICO,                'tkextlib/tcllib/ico'
60
66
 
62
68
    autoload :IP_Entry,           'tkextlib/tcllib/ip_entry'
63
69
    autoload :IPEntry,            'tkextlib/tcllib/ip_entry'
64
70
 
 
71
    # package:: khim
 
72
    autoload :KHIM,               'tkextlib/tcllib/khim'
 
73
 
 
74
    # package:: ntext
 
75
    autoload :Ntext,              'tkextlib/tcllib/ntext'
 
76
 
 
77
    # package:: Plotchart
 
78
    autoload :Plotchart,          'tkextlib/tcllib/plotchart'
 
79
 
 
80
    # package:: style
 
81
    autoload :Style,              'tkextlib/tcllib/style'
 
82
 
65
83
    # package:: swaplist
66
84
    autoload :Swaplist_Dialog,    'tkextlib/tcllib/swaplist'
67
85
 
68
 
    # package:: Plotchart
69
 
    autoload :Plotchart,          'tkextlib/tcllib/plotchart'
70
 
 
71
86
    # package:: tablelist
72
87
    autoload :Tablelist,           'tkextlib/tcllib/tablelist'
73
88
    autoload :TableList,           'tkextlib/tcllib/tablelist'
81
96
    autoload :Tooltip,            'tkextlib/tcllib/tooltip'
82
97
 
83
98
    # package:: widget
84
 
    autoload :Wdiget,             'tkextlib/tcllib/widget'
 
99
    autoload :Widget,             'tkextlib/tcllib/widget'
85
100
  end
86
101
end
87
102