Hello community,

here is the log from the commit of package avrdude for openSUSE:Factory checked 
in at 2012-12-10 17:15:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/avrdude (Old)
 and      /work/SRC/openSUSE:Factory/.avrdude.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "avrdude", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/avrdude/avrdude.changes  2012-11-21 
14:57:07.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.avrdude.new/avrdude.changes     2012-12-10 
17:15:32.000000000 +0100
@@ -1,0 +2,15 @@
+Sat Dec  8 11:27:23 UTC 2012 - [email protected]
+
+- Did not build.
+- 5.11 tar balls are now missing again. retrying with 5.11.1
+- typo in spec file fixed.
+
+-------------------------------------------------------------------
+Wed Nov 21 14:23:27 UTC 2012 - [email protected]
+
+- All this should have been part of my earlier submit sr#142228:
+  * obsoleted upstreamed patches: tn4313.diff, avrdude_butterfly_mk.patch
+  * pulled patch from o:F: avrdude-use-serial-device-for-serbb.patch
+  * dropped dubious patch: avrdude-5.5.usbtiny.64bit.patch
+
+-------------------------------------------------------------------

New:
----
  avrdude-5.11.1.tar.gz
  avrdude-doc-5.11.1.pdf
  avrdude-doc-5.11.1.tar.gz
  avrdude-use-serial-device-for-serbb.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ avrdude.spec ++++++
--- /var/tmp/diff_new_pack.SUIvFG/_old  2012-12-10 17:15:33.000000000 +0100
+++ /var/tmp/diff_new_pack.SUIvFG/_new  2012-12-10 17:15:33.000000000 +0100
@@ -17,7 +17,7 @@
 
 Name:           avrdude
 BuildRequires:  bison flex libusb-devel readline-devel libftdi1-devel
-Version:        5.11
+Version:        5.11.1
 Release:        1
 Url:            http://savannah.nongnu.org/projects/avrdude
 Group:          Development/Tools/Other
@@ -29,7 +29,7 @@
 Source3:        modprobe.avrdude_parport
 Source4:        avrdude-udev.rules
 Patch0:         avrdude-5.11-no-builddate.diff
-#Patch0:        xx.patch
+Patch1:         avrdude-use-serial-device-for-serbb.patch
 Provides:       avr-programmer
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 PreReq:         /bin/cat /sbin/modprobe
@@ -44,7 +44,12 @@
 %setup -q -a 1
 cp -a %{S:2} %name.pdf
 mv %name-html html
+
+# avrdude-5.11-no-builddate.diff
 %patch0 -p1
+# avrdude-use-serial-device-for-serbb.patch
+%patch1 -p1
+
 touch lexer.l
 
 %build

++++++ avrdude-5.11-no-builddate.diff ++++++
--- /var/tmp/diff_new_pack.SUIvFG/_old  2012-12-10 17:15:33.000000000 +0100
+++ /var/tmp/diff_new_pack.SUIvFG/_new  2012-12-10 17:15:33.000000000 +0100
@@ -1,8 +1,14 @@
-diff --git a/main.c b/main.c
-index d224bd6..a88af3d 100644
---- a/main.c
-+++ b/main.c
-@@ -565,10 +565,10 @@ int main(int argc, char * argv [])
+---
+ main.c |    4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+Index: avrdude-5.11/main.c
+===================================================================
+--- avrdude-5.11.orig/main.c
++++ avrdude-5.11/main.c
+@@ -563,14 +563,14 @@ int main(int argc, char * argv [])
+     /*
+      * Print out an identifying string so folks can tell what version
       * they are running
       */
      fprintf(stderr,
@@ -15,3 +21,5 @@
    }
  
    if (verbose) {
+     fprintf(stderr, "%sSystem wide configuration file is \"%s\"\n",
+             progbuf, sys_config);

++++++ avrdude-use-serial-device-for-serbb.patch ++++++
From: Bernhard Walle <[email protected]>
Subject: [PATCH] Use default_serial for "serbb" programmers

This patch fixes the problem that "default_parport" device is used
even for "serbb" programmers like the "ponyser" device. That is wrong.


Signed-off-by: Bernhard Walle <[email protected]>

---
 main.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: avrdude-5.10/main.c
===================================================================
--- avrdude-5.10.orig/main.c
+++ avrdude-5.10/main.c
@@ -683,7 +683,8 @@ int main(int argc, char * argv [])
       (strcmp(pgm->type, "avr910") == 0) ||
       (strcmp(pgm->type, "BusPirate") == 0) ||
       (strcmp(pgm->type, "STK500V2") == 0) ||
-      (strcmp(pgm->type, "JTAGMKII") == 0)) {
+      (strcmp(pgm->type, "JTAGMKII") == 0) ||
+      (strcmp(pgm->type, "SERBB") == 0)) {
     if (port == default_parallel) {
       port = default_serial;
     }
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to