diff -Nru geda-gaf-1.8.2/debian/changelog geda-gaf-1.8.2/debian/changelog --- geda-gaf-1.8.2/debian/changelog 2014-04-05 23:52:11.000000000 +0000 +++ geda-gaf-1.8.2/debian/changelog 2014-12-07 11:43:49.000000000 +0000 @@ -1,3 +1,13 @@ +geda-gaf (1:1.8.2-5) unstable; urgency=medium + + * Update my email address. + * Add bashims.diff patch to fix bashisms in some example scripts. + (Closes: #772246) + * debian/copyright: Update copyright years. + * debian/control: Bumped Standards-Version to 3.9.6 + + -- أحمد المحمودي (Ahmed El-Mahmoudy) Sun, 07 Dec 2014 13:42:01 +0200 + geda-gaf (1:1.8.2-4) unstable; urgency=low * patch from upstream to fix warnings for components with no refdes diff -Nru geda-gaf-1.8.2/debian/control geda-gaf-1.8.2/debian/control --- geda-gaf-1.8.2/debian/control 2014-04-05 23:52:11.000000000 +0000 +++ geda-gaf-1.8.2/debian/control 2014-12-07 11:43:49.000000000 +0000 @@ -2,8 +2,8 @@ Section: electronics Priority: optional Maintainer: Debian Electronics Team -Uploaders: Peter Clifton , أحمد المحمودي (Ahmed El-Mahmoudy) , Hamish Moffatt , Bdale Garbee -Standards-Version: 3.9.5 +Uploaders: Peter Clifton , أحمد المحمودي (Ahmed El-Mahmoudy) , Hamish Moffatt , Bdale Garbee +Standards-Version: 3.9.6 Build-Depends: debhelper (>= 9), libgtk2.0-dev (>= 2.16.0), guile-2.0-dev, libgd-dev, libxml-parser-perl, ghostscript, transfig, libstroke0-dev, groff, libglib2.0-dev, flex, intltool, dh-autoreconf Homepage: http://geda.seul.org/ Vcs-Git: git://anonscm.debian.org/pkg-electronics/geda-gaf.git diff -Nru geda-gaf-1.8.2/debian/copyright geda-gaf-1.8.2/debian/copyright --- geda-gaf-1.8.2/debian/copyright 2014-04-05 23:52:11.000000000 +0000 +++ geda-gaf-1.8.2/debian/copyright 2014-12-07 11:43:49.000000000 +0000 @@ -10,7 +10,7 @@ Files: debian/* Copyright: 1998-2009, Hamish Moffatt 2009-2010, Peter Clifton - 2009-2013, أحمد المحمودي (Ahmed El-Mahmoudy) + 2009-2014, أحمد المحمودي (Ahmed El-Mahmoudy) License: GPL-2+ License: GPL-2+ diff -Nru geda-gaf-1.8.2/debian/patches/bashims.diff geda-gaf-1.8.2/debian/patches/bashims.diff --- geda-gaf-1.8.2/debian/patches/bashims.diff 1970-01-01 00:00:00.000000000 +0000 +++ geda-gaf-1.8.2/debian/patches/bashims.diff 2014-12-07 11:43:49.000000000 +0000 @@ -0,0 +1,50 @@ +Description: Fix bashims +Bug-Debian: https://bugs.debian.org/772246 +Author: أحمد المحمودي (Ahmed El-Mahmoudy) +--- a/gnetlist/scripts/bom_xref.sh.in ++++ b/gnetlist/scripts/bom_xref.sh.in +@@ -3,7 +3,7 @@ + + if [ -z "$1" ] ; then + echo "usage $0 geda-bom # output on stdout" +- exit -1 ++ exit 255 + fi + cat $1 | sort -k1,1 |\ + @AWK@ '!/device/{printf("%-5s %-20s %-20s %-20s\n", toupper($1), toupper($2), toupper($3), toupper($4));} /device/{}' +--- a/gnetlist/scripts/bompp.sh.in ++++ b/gnetlist/scripts/bompp.sh.in +@@ -3,7 +3,7 @@ + + if [ -z "$1" ] ; then + echo "usage $0 geda-bom # output on stdout" +- exit -1 ++ exit 255 + fi + cat $1 | @AWK@ '{print toupper($2)" "toupper($3)" "toupper($4)" "toupper($1)}'\ + | sort +0 | @AWK@ '\ +--- a/gnetlist/scripts/sch2eaglepos.sh ++++ b/gnetlist/scripts/sch2eaglepos.sh +@@ -17,7 +17,7 @@ + By Braddock Gaskill (braddock@braddock.com), August 2004 + + EOF +- exit -1 ++ exit 255 + fi + XOFFSET=40000 + YOFFSET=33000 +@@ -44,11 +44,11 @@ + grep -B1 refdes= "$FNAME" |sed 's/=/ /' | cut -d" " -f2,3 |grep -v '^--' >${tmpf} + + +-while read; do ++while read REPLY; do + # the directory on the client to backup + X=`echo $REPLY | cut -d' ' -f1` + Y=`echo $REPLY | cut -d' ' -f2` +- read; ++ read REPLY; + PART="$REPLY" + X=`echo "scale=5; ($X - $XOFFSET) / $XSCALE" |bc` + Y=`echo "scale=5; ($Y - $YOFFSET) / $YSCALE" |bc` diff -Nru geda-gaf-1.8.2/debian/patches/series geda-gaf-1.8.2/debian/patches/series --- geda-gaf-1.8.2/debian/patches/series 2014-04-05 23:52:11.000000000 +0000 +++ geda-gaf-1.8.2/debian/patches/series 2014-12-07 11:43:49.000000000 +0000 @@ -1 +1,2 @@ no-refdes-warning-fix.patch +bashims.diff