Bug 169595 - Update sysutils/bsdhwmon to 20120702
Summary: Update sysutils/bsdhwmon to 20120702
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jase Thew
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-07-02 11:10 UTC by Jeremy Chadwick
Modified: 2012-07-11 11:30 UTC (History)
0 users

See Also:


Attachments
file.diff (1.89 KB, patch)
2012-07-02 11:10 UTC, Jeremy Chadwick
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jeremy Chadwick 2012-07-02 11:10:10 UTC
	Update sysutils/bsdhwmon to version 20120702.  Changes per
	doc/CHANGES:


	Some general documentation adjustments; nothing important.

	Adjust some CFLAGS (remove -Wunused; implied by -Wall).

	Split collect.c up into individual chip_XXX.c files; easier to
	maintain.

	W83627DHG: Add support for the Nuvoton/Winbond 83627DHG-P
	and 83627DHG-PT.

	Properly fix SMBus slave address addressing "bug" in 20090703.
	smb(4) and ichsmb(4) changes made shortly after the release of
	7.2-RELEASE (specifically __FreeBSD_version 702101) caused this.
	Key off of __FreeBSD_version to decide whether or not to shift
	the slave address or not.  Thanks to Billy Newsom for bringing
	this to my attention.

	W83792D: Fetch Winbond chip revision for debugging purposes.

	Use exclusive locks when opening the /dev/smbX device; this ensures
	only one bsdhwmon process can access the device at a time.

	Fixes for small memory leaks (missing free() statements), re-order
	some include statements, and pre-initialise some structs.  Valgrind
	came in handy here for sure!

	Try our best to adhere to style(9).  This includes:
	- Making use of err(3) family functions and sysexits(3) codes
	- General code formatting changes

	Ensure consistency of variable sizes between x86 and amd64; make
	use of intXX_t and uintXX_t types.  This also falls under style(9).

	Addition of doc/REFERENCES (technical reference material).

	Update author Email address (yes, again).

	Make better use of "const" throughout program, especially for the
	pinmap structs.

	Update all source code headers' copyright years.

Fix: Apply below patch.

	Patch can also be downloaded at the below URL, once I've received a GNATS
	PR numbers:

	http://jdc.koitsu.org/freebsd/{prnum}/

How-To-Repeat: 	n/a
Comment 1 Jase Thew freebsd_committer freebsd_triage 2012-07-02 11:27:22 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jase

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-07-11 11:24:25 UTC
jase        2012-07-11 10:24:10 UTC

  FreeBSD ports repository

  Modified files:
    sysutils/bsdhwmon    Makefile distinfo pkg-descr 
  Log:
  - Update to 2.1.8 [1]
  - Convert to optionsNG and add DEBUG option
  - Pet portlint(1): fix overly long line and missing ending newline in
    pkg-descr
  
  PR:             ports/169595 [1]
  Submitted by:   Jeremy Chadwick <jdc@koitsu.org> (maintainer)
  Approved by:    flo (mentor)
  
  Revision  Changes    Path
  1.6       +7 -4      ports/sysutils/bsdhwmon/Makefile
  1.5       +2 -2      ports/sysutils/bsdhwmon/distinfo
  1.3       +3 -2      ports/sysutils/bsdhwmon/pkg-descr
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Jase Thew freebsd_committer freebsd_triage 2012-07-11 11:24:51 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!