[Pkg-puppet-devel] [facter] branch master updated (bd307c4 -> 0251c91)
Stig Sandbeck Mathisen
ssm at debian.org
Sun Sep 1 10:47:25 UTC 2013
This is an automated email from the git hooks/post-receive script.
ssm pushed a change to branch master
in repository facter.
from bd307c4 Use canonical URIs in vcs field
new 1ad5ba7 (packaging) Add raring to the default cows list
new e8590a6 (packaging) Remove f16 from mocks to build as it is EOL
new 8381ffb Merge pull request #427 from haus/update_cows_mocks
new 819c8db (#14522) Force /proc/self/status encoding to valid UTF-8 (try 2)
new db5281e (#20236) Add example that reproduces dmidecode issue
new ef8db18 (#20236) Refactor the virtual fact and fix dmidecode
new 06c55ee Merge remote-tracking branch 'pr/429' into 1.7.x
new c3a47a5 (#19764) Fix ipaddress issue scanning beyond the first address
new 8e31013 Merge pull request #431 from jeffmccune/fix_ipaddress_scanning
new b858297 (maint) Move facter.gemspec to .gemspec
new 28408fb (maint) Make facter gemspec report correct version
new 4d25c29 Merge branch 'hide_gemspec' into stable
new e5b8cd5 (#20321) Be more descriptive in deprecation message
new 547cf56 Merge branch 'pull-435' into stable
new 0da8bd7 (#20301) Handle different error in ruby 1.9
new d6569cd Merge branch 'pull-433' into stable
new b5cb1ef (#20301) Handle different error in ruby 1.9
new bf39f9a (packaging) Update FACTERVERSION to 1.7.1-rc1
new 9ba1e2d Merge branch 'release_1.7.1_rc' into stable
new 785fd8b (packaging) Update FACTERVERSION to 1.7.1
new 77fc786 Merge branch '1.7.1_release' into stable
new 3f2e478 (maint) Use RSpec 2.9 expectations
new d4fb548 (maint) Use RSpec 2.9 expectations
new 81ed8d2 Merge branch 'maint-rspec_29_compat' into 1.7.x
new 35af4ce (#20301) Handle different error in ruby 1.9
new 8114d9f Merge pull request #433 from joshcooper/ticket/20301/win2003-ruby19
new 3a4ec61 Merge remote-tracking branch 'upstream/1.7.x' into stable
new d249246 (#20229) Fix per-interface netmask_* facts with net-tools 1.60
new 928b7e8 (#20229) Fix netmask fact with Linux net-tools 1.60
new 423a3bc (maint) De-duplicate parses RSpec alias
new c7407f8 Merge pull request #432 from jeffmccune/fix_netmask_scanner
new f2a1923 (Maint) Remove whitespace errors
new 1204033 (#20938) Ignore stderr from domain commands
new 9c0cc1e (Maint) Remove duplication in domain tests
new fc6a207 Merge pull request #445 from zaphod42/issues/stable/20938-noise-on-stderr-from-domain-fact
new a164fe3 (#20915) Read dmi entries as binary data
new 65b3be4 Merge pull request #455 'zaphod42/issue/stable/20915-virtual-fact-causing-utf8-error' into stable
new 2029359 (packaging) Use the packaging loader for tasks
new c45b1d9 Merge pull request #460 from MosesMendoza/maint/stable/packaging_loader
new 9ad6dea (packaging) Remove Ubuntu Oneiric from build targets
new be70452 Merge pull request #461 from MosesMendoza/maint/stable/remove_oneiric
new 4b3a085 (packaging) Update FACTERVERSION to 1.7.2-rc1
new 2027595 (packaging) Update FACTERVERSION to 1.7.2
new 7046085 Imported Upstream version 1.7.2
new 29b77ad Merge tag 'upstream/1.7.2'
new 0251c91 Imported upstream version 1.7.2
The 46 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
Rakefile | 6 +-
debian/changelog | 6 +
ext/build_defaults.yaml | 4 +-
ext/debian/changelog | 4 +-
ext/ips/facter.p5m | 4 +-
ext/osx/preflight | 204 ++++++++--------
ext/osx/prototype.plist | 2 +-
ext/redhat/facter.spec | 8 +-
lib/facter/domain.rb | 21 +-
lib/facter/ipaddress.rb | 10 +-
lib/facter/processor.rb | 4 +-
lib/facter/util/file_read.rb | 4 +
lib/facter/util/ip.rb | 2 +-
lib/facter/util/netmask.rb | 2 +-
lib/facter/util/resolution.rb | 2 +-
lib/facter/util/virtual.rb | 7 +-
lib/facter/version.rb | 2 +-
lib/facter/virtual.rb | 201 ++++++++--------
.../interfaces}/ifconfig_net_tools_1.60.txt | 0
.../interfaces/ifconfig_net_tools_1.60.txt.em1} | 9 -
.../unit/interfaces/ifconfig_net_tools_1.60.txt.lo | 8 +
.../ipaddress/ifconfig_multiple_127_addresses.txt | 20 ++
.../netmask}/ifconfig_net_tools_1.60.txt | 0
.../netmask}/ifconfig_ubuntu_1204.txt | 0
.../unit/util/virtual/invalid_unicode_dmi_entries | Bin 0 -> 74 bytes
spec/shared_formats/parses.rb | 3 +
spec/unit/domain_spec.rb | 243 +++++++++++---------
spec/unit/interfaces_spec.rb | 26 +++
spec/unit/ipaddress_spec.rb | 4 +
spec/unit/netmask_spec.rb | 29 +++
spec/unit/processor_spec.rb | 3 +-
spec/unit/util/resolution_spec.rb | 2 +-
spec/unit/util/virtual_spec.rb | 9 +
spec/unit/virtual_spec.rb | 7 +
34 files changed, 499 insertions(+), 357 deletions(-)
copy spec/fixtures/{ifconfig => unit/interfaces}/ifconfig_net_tools_1.60.txt (100%)
copy spec/fixtures/{ifconfig/ifconfig_net_tools_1.60.txt => unit/interfaces/ifconfig_net_tools_1.60.txt.em1} (61%)
create mode 100644 spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo
create mode 100644 spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt
copy spec/fixtures/{ifconfig => unit/netmask}/ifconfig_net_tools_1.60.txt (100%)
copy spec/fixtures/{ifconfig => unit/netmask}/ifconfig_ubuntu_1204.txt (100%)
create mode 100644 spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries
create mode 100644 spec/shared_formats/parses.rb
create mode 100644 spec/unit/netmask_spec.rb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-puppet/facter.git
More information about the Pkg-puppet-devel
mailing list