diff options
author | jakllsch <jakllsch@pkgsrc.org> | 2016-09-24 17:17:47 +0000 |
---|---|---|
committer | jakllsch <jakllsch@pkgsrc.org> | 2016-09-24 17:17:47 +0000 |
commit | 77cfa2639718101d7bb8720f603326a6b200e80f (patch) | |
tree | 4e4dcfce4a1c61f39830a8c6edd4cd22c334d0da /cross/dfu-programmer/Makefile | |
parent | 2e181033b7236a2cc93d4e1b5db83be01111a3c2 (diff) | |
download | pkgsrc-77cfa2639718101d7bb8720f603326a6b200e80f.tar.gz |
Update dfu-programmer to 0.7.2
Upstream's NEWS:
== Release 0.7.2 [2015-02-04]
* Fix memory bounds used for XMega targets.
== Release 0.7.1 [2015-01-03]
* Fix use of mandatory filename ChangeLog in distribution tarball
* Fix infinite loop in rpl_malloc
* Add experimental support for autocomplete on Ubuntu
* Fix exit status of help-related options and improve start sequence
== Release 0.7.0 [2014-08-02]
* Add support for atmega16c4 and atmega32c4
* Fix device erase for bootloaders which return busy status
* Better include file defaults for libusb when run bootstrap is run without pkgconfig.
* Improved status output
* Add hex dump commands
* Add blank memory check
* Major rework of the flash/user/eeprom code
* Replace start and reset commands with launch
* Repository and website migrated to GitHub
== Release 0.6.2 [2013-07-19]
* Use correct default libusb-1.0 path
* Workaround for "Device not found" errors
== Release 0.6.1 [2013-04-04]
* Added support for specifying a USB bus and address
* Added support for device serialization
* Fix packaging problem which failed to supply the default path
for libusb-1.0 files when built on a machine without that package.
* Clarified some error messages
== Release 0.6.0 [2013-01-29]
* Added support for xmega chips currently supported by FLIP
* Do not attempt eeprom operations on devices without eeprom
* Allow setting the security bit on AVR32
* Add HTML help file for Windows users
* Added new commands --version, --help, --targets
* Improved built in help text
* Improved several error messages
== Release 0.5.5 [2012-12-22]
* Added support for atmega16u2
* Fixed operation of reset command
* More reliable autoconf operation
* Better support for Windows users
* Fixed erase timeout for AVR32
Diffstat (limited to 'cross/dfu-programmer/Makefile')
-rw-r--r-- | cross/dfu-programmer/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cross/dfu-programmer/Makefile b/cross/dfu-programmer/Makefile index 979630f39f1..e40ab92f13a 100644 --- a/cross/dfu-programmer/Makefile +++ b/cross/dfu-programmer/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.3 2012/10/03 00:10:29 asau Exp $ +# $NetBSD: Makefile,v 1.4 2016/09/24 17:17:47 jakllsch Exp $ # -DISTNAME= dfu-programmer-0.5.4 +DISTNAME= dfu-programmer-0.7.2 CATEGORIES= cross -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dfu-programmer/dfu-programmer/0.5.4/} +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dfu-programmer/dfu-programmer/0.7.2/} MAINTAINER= jakllsch@NetBSD.org HOMEPAGE= http://dfu-programmer.sourceforge.net/ @@ -11,6 +11,7 @@ COMMENT= Programmer for Atmel USB DFU Bootloader LICENSE= gnu-gpl-v2 GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --disable-libusb_1_0 .include "../../devel/libusb/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |