Tue Oct 24 02:21:55 2017 UTC ()
Update to pcb-4.0.1

========================================================================
Release notes for pcb-4.0.1
========================================================================

Dear Users,

This release fixes a number of bugs.

Kind regards,

The pcb development team

Contributors
------------
The following authors contributed to the 4.0.1 release:
- Milan Prochac
- Charles Parker
- Dan McMahill
- Sergey Alyoshin
- Igor2
- Peter Clifton
- bert

Please note that names are in no particular order and all e-mail
addresses have been removed for privacy.

User experience improvements
----------------------------
- reorchestrated the closing of the command window to not crash.
- only invalidate the screen after changes to the crosshair or mark are
  complete.

Plugins
-------
- none

Exporters
---------
- fix for gcode dimensions.
- added a regression test for the IPC-D-356 exporter.
- added more documentation for the IPC-D-356 netlist exporter.

Footprints library
------------------
- add macro with more programmability for 2 pin axial components. Use
  this to add a few IPC-7251 compliant footprints for axial inductors,
  horizontally mounted.  Use this in turn for the TDK B82145A RF chokes
  family.
- add toko category and the 7P variable inductors.
- gen_geda_*.awk were nearly identical to gen_*.awk so add 2 lines to
  geda.inc so we can use the same script for everything.  Verified that
  pcblib-newlib builds with identical results before/after.
- for the horizontally mounted axial macro add the missing bits for
  marking polarity on parts like diodes.
- add PKG_RADIAL_MM100 macro for doing more general metric 2 pin radial
  packages.
- add some IPC radial capacitor footprints and use those to create some
  united chemicon footprints.
- add DO-41 diode package, horizontally mounted.
- add PKG_MTHOLE_GENERIC macro for fairly generic mounting holes.  Use
  this to define IPC mounting holes for #4 and #6 machine screws with
  pan heads or flat washers for both "tight" (board < 4") and "loose"
  (board > 4") fits.
- add TO-263 footprint.
- add some notes about m4 library development.
- fix problem in some possible invocations of the generic mounting hole
  macro.  All footprints pass syntax checks again.
- remove an extra empty attribute which is not needed and causes
  warnings in the mounting hole macro.
- fix clearance on the Toko 7P footprint.
- in the mounting hole macro, change the calculation of the pad size for
  the support vias to make them as large as possible without actually
  changing the copper (the support vias are covered by the main pad).
  This does not affect the fabricated board but it does remove some
  false positive DRC complaints.

Developer experience improvements
---------------------------------
- allow translators to change number of tabs in message.
- In the test suite, check for a working X display using xhost before
  running action script tests
- match() with 3 arguments is a gawk extension. Rework the code to avoid
  using a 3 argument call to match() in one spot.  Lets the script run
  with gawk or NetBSD's awk (20121220).  Verified that the generated
  result is identical to the previous gawk result using both gawk and
  NetBSDs awk.
- change from AC_FD_CC to AS_MESSAGE_LOG_FD
- removed the antifork abomination.
- disabled one of the checks used to deal with older gdlib installs on
  some linux systems when building under cygwin as the test has
  problems.  Repairs building for mingw under cygwin.
- when building under cygwin, create a pcbtest.bat batch file that
  allows testing the compiled pcb without installing.  This is somewhat
  analogous to the pcbtest.sh script generated on linux and other
  unix-like systems.
- cleanup the win32 build script a good bit.  An important change is
  that instead of blindly installing all of the mingw cross system root
  files, only install a set of listed ones.  This not only reduces the
  size of the windows installer but makes sure we have a more repeatable
  build and know what we are actually bundling into the installer.
- fixed the Attribute deletion code.

Notes for early adapters
------------------------
- none

Changed dependencies
--------------------
- none

Fixed and committed Launchpad bug reports
-----------------------------------------
#700193   Append branch to version string.
#917308   m4lib_to_newlib.sh does not work with mawk.
#1528040  Gcode export smaller pad size.
#1654821  Attribute deletion code is broken.
#1659045  gts source do not compile when DEBUG symbol defined.
#1659061  Compile warnings when DEBUG symbol is defined.
#1660058  Several i18n fixes.
#1672886  Crash when reopening command entry window in gtk.
#1674133  Last action executed when escaping from command entry.
#1682654  Drawing area redrawn twice when crosshair moves.

========================================================================


(dmcmahill)
diff -r1.87 -r1.88 pkgsrc/cad/pcb/Makefile
diff -r1.19 -r1.20 pkgsrc/cad/pcb/PLIST
diff -r1.25 -r1.26 pkgsrc/cad/pcb/distinfo

cvs diff -r1.87 -r1.88 pkgsrc/cad/pcb/Makefile (expand / switch to unified diff)

--- pkgsrc/cad/pcb/Makefile 2017/02/28 15:20:02 1.87
+++ pkgsrc/cad/pcb/Makefile 2017/10/24 02:21:55 1.88
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.87 2017/02/28 15:20:02 ryoon Exp $ 1# $NetBSD: Makefile,v 1.88 2017/10/24 02:21:55 dmcmahill Exp $
2# 2#
3 3
4DISTNAME= pcb-4.0.0 4DISTNAME= pcb-4.0.1
5PKGREVISION= 3 
6CATEGORIES= cad 5CATEGORIES= cad
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pcb/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pcb/}
8 7
9MAINTAINER= dmcmahill@NetBSD.org 8MAINTAINER= dmcmahill@NetBSD.org
10HOMEPAGE= http://pcb.geda-project.org/ 9HOMEPAGE= http://pcb.geda-project.org/
11COMMENT= Printed circuit board layout system 10COMMENT= Printed circuit board layout system
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14DEPENDS+= gettext-tools>=0.14.6:../../devel/gettext-tools 13DEPENDS+= gettext-tools>=0.14.6:../../devel/gettext-tools
15 14
16CONFLICTS+= pcb-current-[0-9]* 15CONFLICTS+= pcb-current-[0-9]*
17 16
18GNU_CONFIGURE= yes 17GNU_CONFIGURE= yes

cvs diff -r1.19 -r1.20 pkgsrc/cad/pcb/PLIST (expand / switch to unified diff)

--- pkgsrc/cad/pcb/PLIST 2017/01/21 01:56:13 1.19
+++ pkgsrc/cad/pcb/PLIST 2017/10/24 02:21:55 1.20
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.19 2017/01/21 01:56:13 dmcmahill Exp $ 1@comment $NetBSD: PLIST,v 1.20 2017/10/24 02:21:55 dmcmahill Exp $
2bin/MergePCBPS 2bin/MergePCBPS
3bin/Merge_dimPCBPS 3bin/Merge_dimPCBPS
4bin/pcb 4bin/pcb
5info/pcb.info 5info/pcb.info
6man/man1/pcb.1 6man/man1/pcb.1
7share/appdata/pcb.appdata.xml 7share/appdata/pcb.appdata.xml
8share/applications/pcb.desktop 8share/applications/pcb.desktop
9share/doc/pcb/debumpify.out.png 9share/doc/pcb/debumpify.out.png
10share/doc/pcb/debumpify.png 10share/doc/pcb/debumpify.png
11share/doc/pcb/examples/LED.net 11share/doc/pcb/examples/LED.net
12share/doc/pcb/examples/LED.pcb 12share/doc/pcb/examples/LED.pcb
13share/doc/pcb/examples/LED2.pcb 13share/doc/pcb/examples/LED2.pcb
14share/doc/pcb/examples/libraries/example.inc 14share/doc/pcb/examples/libraries/example.inc
@@ -146,30 +146,39 @@ share/pcb/m4/pci.inc @@ -146,30 +146,39 @@ share/pcb/m4/pci.inc
146share/pcb/m4/pci.list 146share/pcb/m4/pci.list
147share/pcb/m4/pci.m4 147share/pcb/m4/pci.m4
148share/pcb/m4/plcc.inc 148share/pcb/m4/plcc.inc
149share/pcb/m4/qfn.inc 149share/pcb/m4/qfn.inc
150share/pcb/m4/qfp.inc 150share/pcb/m4/qfp.inc
151share/pcb/m4/qfp2.inc 151share/pcb/m4/qfp2.inc
152share/pcb/m4/qfpdj.inc 152share/pcb/m4/qfpdj.inc
153share/pcb/m4/resistor_0.25W.m4 153share/pcb/m4/resistor_0.25W.m4
154share/pcb/m4/resistor_adjust.inc 154share/pcb/m4/resistor_adjust.inc
155share/pcb/m4/resistor_adjust.m4 155share/pcb/m4/resistor_adjust.m4
156share/pcb/m4/resistor_array.m4 156share/pcb/m4/resistor_array.m4
157share/pcb/m4/rules.inc 157share/pcb/m4/rules.inc
158share/pcb/m4/smt.inc 158share/pcb/m4/smt.inc
 159share/pcb/m4/tdk.inc
 160share/pcb/m4/tdk.list
 161share/pcb/m4/tdk.m4
159share/pcb/m4/texas_inst_amplifier.m4 162share/pcb/m4/texas_inst_amplifier.m4
160share/pcb/m4/texas_inst_voltage_reg.m4 163share/pcb/m4/texas_inst_voltage_reg.m4
161share/pcb/m4/to.inc 164share/pcb/m4/to.inc
 165share/pcb/m4/toko.inc
 166share/pcb/m4/toko.list
 167share/pcb/m4/toko.m4
162share/pcb/m4/transistor.m4 168share/pcb/m4/transistor.m4
 169share/pcb/m4/united_chemicon.inc
 170share/pcb/m4/united_chemicon.list
 171share/pcb/m4/united_chemicon.m4
163share/pcb/m4/zif.inc 172share/pcb/m4/zif.inc
164share/pcb/newlib/2_pin_thru-hole_packages/0.125W_Carbon_Resistor 173share/pcb/newlib/2_pin_thru-hole_packages/0.125W_Carbon_Resistor
165share/pcb/newlib/2_pin_thru-hole_packages/1W_Carbon_Resistor 174share/pcb/newlib/2_pin_thru-hole_packages/1W_Carbon_Resistor
166share/pcb/newlib/2_pin_thru-hole_packages/CK05_type_Capacitor 175share/pcb/newlib/2_pin_thru-hole_packages/CK05_type_Capacitor
167share/pcb/newlib/2_pin_thru-hole_packages/CK06_type_capacitor 176share/pcb/newlib/2_pin_thru-hole_packages/CK06_type_capacitor
168share/pcb/newlib/2_pin_thru-hole_packages/IRU1015-33CT_3.3V_reg_TO220 177share/pcb/newlib/2_pin_thru-hole_packages/IRU1015-33CT_3.3V_reg_TO220
169share/pcb/newlib/2_pin_thru-hole_packages/RN55_type_0.1W_Resistor 178share/pcb/newlib/2_pin_thru-hole_packages/RN55_type_0.1W_Resistor
170share/pcb/newlib/2_pin_thru-hole_packages/T1.75_LED 179share/pcb/newlib/2_pin_thru-hole_packages/T1.75_LED
171share/pcb/newlib/connectors/100_Pin_jack 180share/pcb/newlib/connectors/100_Pin_jack
172share/pcb/newlib/connectors/16x1_SMD_jack 181share/pcb/newlib/connectors/16x1_SMD_jack
173share/pcb/newlib/connectors/3terminal_screw_block 182share/pcb/newlib/connectors/3terminal_screw_block
174share/pcb/newlib/connectors/72pin45degreeSIMMconnector 183share/pcb/newlib/connectors/72pin45degreeSIMMconnector
175share/pcb/newlib/connectors/MOLEX_miniFitJr-12pin 184share/pcb/newlib/connectors/MOLEX_miniFitJr-12pin
@@ -455,26 +464,104 @@ share/pcb/pcblib-newlib/geda/CAPC2012M.f @@ -455,26 +464,104 @@ share/pcb/pcblib-newlib/geda/CAPC2012M.f
455share/pcb/pcblib-newlib/geda/CAPC2012N.fp 464share/pcb/pcblib-newlib/geda/CAPC2012N.fp
456share/pcb/pcblib-newlib/geda/CAPC3216L.fp 465share/pcb/pcblib-newlib/geda/CAPC3216L.fp
457share/pcb/pcblib-newlib/geda/CAPC3216M.fp 466share/pcb/pcblib-newlib/geda/CAPC3216M.fp
458share/pcb/pcblib-newlib/geda/CAPC3216N.fp 467share/pcb/pcblib-newlib/geda/CAPC3216N.fp
459share/pcb/pcblib-newlib/geda/CAPC3225L.fp 468share/pcb/pcblib-newlib/geda/CAPC3225L.fp
460share/pcb/pcblib-newlib/geda/CAPC3225M.fp 469share/pcb/pcblib-newlib/geda/CAPC3225M.fp
461share/pcb/pcblib-newlib/geda/CAPC3225N.fp 470share/pcb/pcblib-newlib/geda/CAPC3225N.fp
462share/pcb/pcblib-newlib/geda/CAPC4532L.fp 471share/pcb/pcblib-newlib/geda/CAPC4532L.fp
463share/pcb/pcblib-newlib/geda/CAPC4532M.fp 472share/pcb/pcblib-newlib/geda/CAPC4532M.fp
464share/pcb/pcblib-newlib/geda/CAPC4532N.fp 473share/pcb/pcblib-newlib/geda/CAPC4532N.fp
465share/pcb/pcblib-newlib/geda/CAPC4564L.fp 474share/pcb/pcblib-newlib/geda/CAPC4564L.fp
466share/pcb/pcblib-newlib/geda/CAPC4564M.fp 475share/pcb/pcblib-newlib/geda/CAPC4564M.fp
467share/pcb/pcblib-newlib/geda/CAPC4564N.fp 476share/pcb/pcblib-newlib/geda/CAPC4564N.fp
 477share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H2500A.fp
 478share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H2500B.fp
 479share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H2500C.fp
 480share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H3000A.fp
 481share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H3000B.fp
 482share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H3000C.fp
 483share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H3500A.fp
 484share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H3500B.fp
 485share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H3500C.fp
 486share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H4000A.fp
 487share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H4000B.fp
 488share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H4000C.fp
 489share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H4500A.fp
 490share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H4500B.fp
 491share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H4500C.fp
 492share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H5000A.fp
 493share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H5000B.fp
 494share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2200H5000C.fp
 495share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H2500A.fp
 496share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H2500B.fp
 497share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H2500C.fp
 498share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H3000A.fp
 499share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H3000B.fp
 500share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H3000C.fp
 501share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H3500A.fp
 502share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H3500B.fp
 503share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H3500C.fp
 504share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H4000A.fp
 505share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H4000B.fp
 506share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H4000C.fp
 507share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H4500A.fp
 508share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H4500B.fp
 509share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H4500C.fp
 510share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H5000A.fp
 511share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H5000B.fp
 512share/pcb/pcblib-newlib/geda/CAPPRD1000W170D2500H5000C.fp
 513share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H2500A.fp
 514share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H2500B.fp
 515share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H2500C.fp
 516share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H3000A.fp
 517share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H3000B.fp
 518share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H3000C.fp
 519share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H3500A.fp
 520share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H3500B.fp
 521share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H3500C.fp
 522share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H4000A.fp
 523share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H4000B.fp
 524share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H4000C.fp
 525share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H4500A.fp
 526share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H4500B.fp
 527share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H4500C.fp
 528share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H5000A.fp
 529share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H5000B.fp
 530share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3000H5000C.fp
 531share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H2500A.fp
 532share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H2500B.fp
 533share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H2500C.fp
 534share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H3000A.fp
 535share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H3000B.fp
 536share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H3000C.fp
 537share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H3500A.fp
 538share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H3500B.fp
 539share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H3500C.fp
 540share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H4000A.fp
 541share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H4000B.fp
 542share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H4000C.fp
 543share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H4500A.fp
 544share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H4500B.fp
 545share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H4500C.fp
 546share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H5000A.fp
 547share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H5000B.fp
 548share/pcb/pcblib-newlib/geda/CAPPRD1000W170D3500H5000C.fp
 549share/pcb/pcblib-newlib/geda/CAPPRD750W80D1600H3150A.fp
 550share/pcb/pcblib-newlib/geda/CAPPRD750W80D1600H3150B.fp
 551share/pcb/pcblib-newlib/geda/CAPPRD750W80D1600H3150C.fp
 552share/pcb/pcblib-newlib/geda/CAPPRD750W80D1800H3150A.fp
 553share/pcb/pcblib-newlib/geda/CAPPRD750W80D1800H3150B.fp
 554share/pcb/pcblib-newlib/geda/CAPPRD750W80D1800H3150C.fp
468share/pcb/pcblib-newlib/geda/DB15F.fp 555share/pcb/pcblib-newlib/geda/DB15F.fp
469share/pcb/pcblib-newlib/geda/DB15M.fp 556share/pcb/pcblib-newlib/geda/DB15M.fp
470share/pcb/pcblib-newlib/geda/DB25F.fp 557share/pcb/pcblib-newlib/geda/DB25F.fp
471share/pcb/pcblib-newlib/geda/DB25M.fp 558share/pcb/pcblib-newlib/geda/DB25M.fp
472share/pcb/pcblib-newlib/geda/DB37F.fp 559share/pcb/pcblib-newlib/geda/DB37F.fp
473share/pcb/pcblib-newlib/geda/DB37M.fp 560share/pcb/pcblib-newlib/geda/DB37M.fp
474share/pcb/pcblib-newlib/geda/DB9F.fp 561share/pcb/pcblib-newlib/geda/DB9F.fp
475share/pcb/pcblib-newlib/geda/DB9M.fp 562share/pcb/pcblib-newlib/geda/DB9M.fp
476share/pcb/pcblib-newlib/geda/DIN41612C64F.fp 563share/pcb/pcblib-newlib/geda/DIN41612C64F.fp
477share/pcb/pcblib-newlib/geda/DIN41612C64FS.fp 564share/pcb/pcblib-newlib/geda/DIN41612C64FS.fp
478share/pcb/pcblib-newlib/geda/DIN41612C64M.fp 565share/pcb/pcblib-newlib/geda/DIN41612C64M.fp
479share/pcb/pcblib-newlib/geda/DIN41612C64MS.fp 566share/pcb/pcblib-newlib/geda/DIN41612C64MS.fp
480share/pcb/pcblib-newlib/geda/DIN41612C96F.fp 567share/pcb/pcblib-newlib/geda/DIN41612C96F.fp
@@ -491,26 +578,29 @@ share/pcb/pcblib-newlib/geda/DIN41651_20 @@ -491,26 +578,29 @@ share/pcb/pcblib-newlib/geda/DIN41651_20
491share/pcb/pcblib-newlib/geda/DIN41651_20S.fp 578share/pcb/pcblib-newlib/geda/DIN41651_20S.fp
492share/pcb/pcblib-newlib/geda/DIN41651_26.fp 579share/pcb/pcblib-newlib/geda/DIN41651_26.fp
493share/pcb/pcblib-newlib/geda/DIN41651_26S.fp 580share/pcb/pcblib-newlib/geda/DIN41651_26S.fp
494share/pcb/pcblib-newlib/geda/DIN41651_34.fp 581share/pcb/pcblib-newlib/geda/DIN41651_34.fp
495share/pcb/pcblib-newlib/geda/DIN41651_34S.fp 582share/pcb/pcblib-newlib/geda/DIN41651_34S.fp
496share/pcb/pcblib-newlib/geda/DIN41651_40.fp 583share/pcb/pcblib-newlib/geda/DIN41651_40.fp
497share/pcb/pcblib-newlib/geda/DIN41651_40S.fp 584share/pcb/pcblib-newlib/geda/DIN41651_40S.fp
498share/pcb/pcblib-newlib/geda/DIN41651_50.fp 585share/pcb/pcblib-newlib/geda/DIN41651_50.fp
499share/pcb/pcblib-newlib/geda/DIN41651_50S.fp 586share/pcb/pcblib-newlib/geda/DIN41651_50S.fp
500share/pcb/pcblib-newlib/geda/DIN41651_60.fp 587share/pcb/pcblib-newlib/geda/DIN41651_60.fp
501share/pcb/pcblib-newlib/geda/DIN41651_60S.fp 588share/pcb/pcblib-newlib/geda/DIN41651_60S.fp
502share/pcb/pcblib-newlib/geda/DIN41651_64.fp 589share/pcb/pcblib-newlib/geda/DIN41651_64.fp
503share/pcb/pcblib-newlib/geda/DIN41651_64S.fp 590share/pcb/pcblib-newlib/geda/DIN41651_64S.fp
 591share/pcb/pcblib-newlib/geda/DIOAD1170W87L521D272C.fp
 592share/pcb/pcblib-newlib/geda/DIOAD1221W87L521D272B.fp
 593share/pcb/pcblib-newlib/geda/DIOAD1290W87L521D272A.fp
504share/pcb/pcblib-newlib/geda/DIP14.fp 594share/pcb/pcblib-newlib/geda/DIP14.fp
505share/pcb/pcblib-newlib/geda/DIP14M.fp 595share/pcb/pcblib-newlib/geda/DIP14M.fp
506share/pcb/pcblib-newlib/geda/DIP16.fp 596share/pcb/pcblib-newlib/geda/DIP16.fp
507share/pcb/pcblib-newlib/geda/DIP16M.fp 597share/pcb/pcblib-newlib/geda/DIP16M.fp
508share/pcb/pcblib-newlib/geda/DIP18.fp 598share/pcb/pcblib-newlib/geda/DIP18.fp
509share/pcb/pcblib-newlib/geda/DIP18M.fp 599share/pcb/pcblib-newlib/geda/DIP18M.fp
510share/pcb/pcblib-newlib/geda/DIP20.fp 600share/pcb/pcblib-newlib/geda/DIP20.fp
511share/pcb/pcblib-newlib/geda/DIP20M.fp 601share/pcb/pcblib-newlib/geda/DIP20M.fp
512share/pcb/pcblib-newlib/geda/DIP22.fp 602share/pcb/pcblib-newlib/geda/DIP22.fp
513share/pcb/pcblib-newlib/geda/DIP22M.fp 603share/pcb/pcblib-newlib/geda/DIP22M.fp
514share/pcb/pcblib-newlib/geda/DIP24.fp 604share/pcb/pcblib-newlib/geda/DIP24.fp
515share/pcb/pcblib-newlib/geda/DIP24M.fp 605share/pcb/pcblib-newlib/geda/DIP24M.fp
516share/pcb/pcblib-newlib/geda/DIP24N.fp 606share/pcb/pcblib-newlib/geda/DIP24N.fp
@@ -520,26 +610,29 @@ share/pcb/pcblib-newlib/geda/DIP28N.fp @@ -520,26 +610,29 @@ share/pcb/pcblib-newlib/geda/DIP28N.fp
520share/pcb/pcblib-newlib/geda/DIP32.fp 610share/pcb/pcblib-newlib/geda/DIP32.fp
521share/pcb/pcblib-newlib/geda/DIP36.fp 611share/pcb/pcblib-newlib/geda/DIP36.fp
522share/pcb/pcblib-newlib/geda/DIP4.fp 612share/pcb/pcblib-newlib/geda/DIP4.fp
523share/pcb/pcblib-newlib/geda/DIP40.fp 613share/pcb/pcblib-newlib/geda/DIP40.fp
524share/pcb/pcblib-newlib/geda/DIP42.fp 614share/pcb/pcblib-newlib/geda/DIP42.fp
525share/pcb/pcblib-newlib/geda/DIP44.fp 615share/pcb/pcblib-newlib/geda/DIP44.fp
526share/pcb/pcblib-newlib/geda/DIP48.fp 616share/pcb/pcblib-newlib/geda/DIP48.fp
527share/pcb/pcblib-newlib/geda/DIP6.fp 617share/pcb/pcblib-newlib/geda/DIP6.fp
528share/pcb/pcblib-newlib/geda/DIP64.fp 618share/pcb/pcblib-newlib/geda/DIP64.fp
529share/pcb/pcblib-newlib/geda/DIP8.fp 619share/pcb/pcblib-newlib/geda/DIP8.fp
530share/pcb/pcblib-newlib/geda/DIP8M.fp 620share/pcb/pcblib-newlib/geda/DIP8M.fp
531share/pcb/pcblib-newlib/geda/DO214.fp 621share/pcb/pcblib-newlib/geda/DO214.fp
532share/pcb/pcblib-newlib/geda/DO214AB.fp 622share/pcb/pcblib-newlib/geda/DO214AB.fp
 623share/pcb/pcblib-newlib/geda/DO41_H_L.fp
 624share/pcb/pcblib-newlib/geda/DO41_H_M.fp
 625share/pcb/pcblib-newlib/geda/DO41_H_N.fp
533share/pcb/pcblib-newlib/geda/EIA3216.fp 626share/pcb/pcblib-newlib/geda/EIA3216.fp
534share/pcb/pcblib-newlib/geda/EIA3528.fp 627share/pcb/pcblib-newlib/geda/EIA3528.fp
535share/pcb/pcblib-newlib/geda/EIA6032.fp 628share/pcb/pcblib-newlib/geda/EIA6032.fp
536share/pcb/pcblib-newlib/geda/EIA7343.fp 629share/pcb/pcblib-newlib/geda/EIA7343.fp
537share/pcb/pcblib-newlib/geda/EMI0603.fp 630share/pcb/pcblib-newlib/geda/EMI0603.fp
538share/pcb/pcblib-newlib/geda/EMI0805.fp 631share/pcb/pcblib-newlib/geda/EMI0805.fp
539share/pcb/pcblib-newlib/geda/EMI1206.fp 632share/pcb/pcblib-newlib/geda/EMI1206.fp
540share/pcb/pcblib-newlib/geda/EMI1806.fp 633share/pcb/pcblib-newlib/geda/EMI1806.fp
541share/pcb/pcblib-newlib/geda/HC49.fp 634share/pcb/pcblib-newlib/geda/HC49.fp
542share/pcb/pcblib-newlib/geda/HC49U.fp 635share/pcb/pcblib-newlib/geda/HC49U.fp
543share/pcb/pcblib-newlib/geda/HC49UH.fp 636share/pcb/pcblib-newlib/geda/HC49UH.fp
544share/pcb/pcblib-newlib/geda/HC49U_3.fp 637share/pcb/pcblib-newlib/geda/HC49U_3.fp
545share/pcb/pcblib-newlib/geda/HC49U_3H.fp 638share/pcb/pcblib-newlib/geda/HC49U_3H.fp
@@ -602,26 +695,29 @@ share/pcb/pcblib-newlib/geda/HEADER58_2. @@ -602,26 +695,29 @@ share/pcb/pcblib-newlib/geda/HEADER58_2.
602share/pcb/pcblib-newlib/geda/HEADER60_1.fp 695share/pcb/pcblib-newlib/geda/HEADER60_1.fp
603share/pcb/pcblib-newlib/geda/HEADER60_2.fp 696share/pcb/pcblib-newlib/geda/HEADER60_2.fp
604share/pcb/pcblib-newlib/geda/HEADER62_1.fp 697share/pcb/pcblib-newlib/geda/HEADER62_1.fp
605share/pcb/pcblib-newlib/geda/HEADER62_2.fp 698share/pcb/pcblib-newlib/geda/HEADER62_2.fp
606share/pcb/pcblib-newlib/geda/HEADER64_1.fp 699share/pcb/pcblib-newlib/geda/HEADER64_1.fp
607share/pcb/pcblib-newlib/geda/HEADER64_2.fp 700share/pcb/pcblib-newlib/geda/HEADER64_2.fp
608share/pcb/pcblib-newlib/geda/HEADER6_1.fp 701share/pcb/pcblib-newlib/geda/HEADER6_1.fp
609share/pcb/pcblib-newlib/geda/HEADER6_2.fp 702share/pcb/pcblib-newlib/geda/HEADER6_2.fp
610share/pcb/pcblib-newlib/geda/HEADER80_1.fp 703share/pcb/pcblib-newlib/geda/HEADER80_1.fp
611share/pcb/pcblib-newlib/geda/HEADER80_2.fp 704share/pcb/pcblib-newlib/geda/HEADER80_2.fp
612share/pcb/pcblib-newlib/geda/HEADER8_1.fp 705share/pcb/pcblib-newlib/geda/HEADER8_1.fp
613share/pcb/pcblib-newlib/geda/HEADER8_2.fp 706share/pcb/pcblib-newlib/geda/HEADER8_2.fp
614share/pcb/pcblib-newlib/geda/HEPTAWATT.fp 707share/pcb/pcblib-newlib/geda/HEPTAWATT.fp
 708share/pcb/pcblib-newlib/geda/INDAD1520W80L1200D650C.fp
 709share/pcb/pcblib-newlib/geda/INDAD1560W80L1200D650B.fp
 710share/pcb/pcblib-newlib/geda/INDAD1600W80L1200D650A.fp
615share/pcb/pcblib-newlib/geda/INDC0402L.fp 711share/pcb/pcblib-newlib/geda/INDC0402L.fp
616share/pcb/pcblib-newlib/geda/INDC0402M.fp 712share/pcb/pcblib-newlib/geda/INDC0402M.fp
617share/pcb/pcblib-newlib/geda/INDC0402N.fp 713share/pcb/pcblib-newlib/geda/INDC0402N.fp
618share/pcb/pcblib-newlib/geda/INDC1005L.fp 714share/pcb/pcblib-newlib/geda/INDC1005L.fp
619share/pcb/pcblib-newlib/geda/INDC1005M.fp 715share/pcb/pcblib-newlib/geda/INDC1005M.fp
620share/pcb/pcblib-newlib/geda/INDC1005N.fp 716share/pcb/pcblib-newlib/geda/INDC1005N.fp
621share/pcb/pcblib-newlib/geda/INDC1608L.fp 717share/pcb/pcblib-newlib/geda/INDC1608L.fp
622share/pcb/pcblib-newlib/geda/INDC1608M.fp 718share/pcb/pcblib-newlib/geda/INDC1608M.fp
623share/pcb/pcblib-newlib/geda/INDC1608N.fp 719share/pcb/pcblib-newlib/geda/INDC1608N.fp
624share/pcb/pcblib-newlib/geda/INDC2012L.fp 720share/pcb/pcblib-newlib/geda/INDC2012L.fp
625share/pcb/pcblib-newlib/geda/INDC2012M.fp 721share/pcb/pcblib-newlib/geda/INDC2012M.fp
626share/pcb/pcblib-newlib/geda/INDC2012N.fp 722share/pcb/pcblib-newlib/geda/INDC2012N.fp
627share/pcb/pcblib-newlib/geda/INDC2520L.fp 723share/pcb/pcblib-newlib/geda/INDC2520L.fp
@@ -698,26 +794,50 @@ share/pcb/pcblib-newlib/geda/MTA100_10.f @@ -698,26 +794,50 @@ share/pcb/pcblib-newlib/geda/MTA100_10.f
698share/pcb/pcblib-newlib/geda/MTA100_11.fp 794share/pcb/pcblib-newlib/geda/MTA100_11.fp
699share/pcb/pcblib-newlib/geda/MTA100_12.fp 795share/pcb/pcblib-newlib/geda/MTA100_12.fp
700share/pcb/pcblib-newlib/geda/MTA100_13.fp 796share/pcb/pcblib-newlib/geda/MTA100_13.fp
701share/pcb/pcblib-newlib/geda/MTA100_14.fp 797share/pcb/pcblib-newlib/geda/MTA100_14.fp
702share/pcb/pcblib-newlib/geda/MTA100_15.fp 798share/pcb/pcblib-newlib/geda/MTA100_15.fp
703share/pcb/pcblib-newlib/geda/MTA100_2.fp 799share/pcb/pcblib-newlib/geda/MTA100_2.fp
704share/pcb/pcblib-newlib/geda/MTA100_3.fp 800share/pcb/pcblib-newlib/geda/MTA100_3.fp
705share/pcb/pcblib-newlib/geda/MTA100_4.fp 801share/pcb/pcblib-newlib/geda/MTA100_4.fp
706share/pcb/pcblib-newlib/geda/MTA100_5.fp 802share/pcb/pcblib-newlib/geda/MTA100_5.fp
707share/pcb/pcblib-newlib/geda/MTA100_6.fp 803share/pcb/pcblib-newlib/geda/MTA100_6.fp
708share/pcb/pcblib-newlib/geda/MTA100_7.fp 804share/pcb/pcblib-newlib/geda/MTA100_7.fp
709share/pcb/pcblib-newlib/geda/MTA100_8.fp 805share/pcb/pcblib-newlib/geda/MTA100_8.fp
710share/pcb/pcblib-newlib/geda/MTA100_9.fp 806share/pcb/pcblib-newlib/geda/MTA100_9.fp
 807share/pcb/pcblib-newlib/geda/MTGP1010H370V8L.fp
 808share/pcb/pcblib-newlib/geda/MTGP1010H370V8M.fp
 809share/pcb/pcblib-newlib/geda/MTGP1010H370V8N.fp
 810share/pcb/pcblib-newlib/geda/MTGP1170H360V8L.fp
 811share/pcb/pcblib-newlib/geda/MTGP1170H360V8M.fp
 812share/pcb/pcblib-newlib/geda/MTGP1170H360V8N.fp
 813share/pcb/pcblib-newlib/geda/MTGP1200H390V8L.fp
 814share/pcb/pcblib-newlib/geda/MTGP1200H390V8M.fp
 815share/pcb/pcblib-newlib/geda/MTGP1200H390V8N.fp
 816share/pcb/pcblib-newlib/geda/MTGP570H330V6L.fp
 817share/pcb/pcblib-newlib/geda/MTGP570H330V6M.fp
 818share/pcb/pcblib-newlib/geda/MTGP570H330V6N.fp
 819share/pcb/pcblib-newlib/geda/MTGP610H370V6L.fp
 820share/pcb/pcblib-newlib/geda/MTGP610H370V6M.fp
 821share/pcb/pcblib-newlib/geda/MTGP610H370V6N.fp
 822share/pcb/pcblib-newlib/geda/MTGP700H360V6L.fp
 823share/pcb/pcblib-newlib/geda/MTGP700H360V6M.fp
 824share/pcb/pcblib-newlib/geda/MTGP700H360V6N.fp
 825share/pcb/pcblib-newlib/geda/MTGP730H390V6L.fp
 826share/pcb/pcblib-newlib/geda/MTGP730H390V6M.fp
 827share/pcb/pcblib-newlib/geda/MTGP730H390V6N.fp
 828share/pcb/pcblib-newlib/geda/MTGP970H330V8L.fp
 829share/pcb/pcblib-newlib/geda/MTGP970H330V8M.fp
 830share/pcb/pcblib-newlib/geda/MTGP970H330V8N.fp
711share/pcb/pcblib-newlib/geda/MULTIWATT11.fp 831share/pcb/pcblib-newlib/geda/MULTIWATT11.fp
712share/pcb/pcblib-newlib/geda/MULTIWATT15.fp 832share/pcb/pcblib-newlib/geda/MULTIWATT15.fp
713share/pcb/pcblib-newlib/geda/MULTIWATT8.fp 833share/pcb/pcblib-newlib/geda/MULTIWATT8.fp
714share/pcb/pcblib-newlib/geda/OSC14.fp 834share/pcb/pcblib-newlib/geda/OSC14.fp
715share/pcb/pcblib-newlib/geda/PENTAWATT.fp 835share/pcb/pcblib-newlib/geda/PENTAWATT.fp
716share/pcb/pcblib-newlib/geda/PLCC20.fp 836share/pcb/pcblib-newlib/geda/PLCC20.fp
717share/pcb/pcblib-newlib/geda/PLCC20X.fp 837share/pcb/pcblib-newlib/geda/PLCC20X.fp
718share/pcb/pcblib-newlib/geda/PLCC28.fp 838share/pcb/pcblib-newlib/geda/PLCC28.fp
719share/pcb/pcblib-newlib/geda/PLCC28X.fp 839share/pcb/pcblib-newlib/geda/PLCC28X.fp
720share/pcb/pcblib-newlib/geda/PLCC32.fp 840share/pcb/pcblib-newlib/geda/PLCC32.fp
721share/pcb/pcblib-newlib/geda/PLCC32X.fp 841share/pcb/pcblib-newlib/geda/PLCC32X.fp
722share/pcb/pcblib-newlib/geda/PLCC44.fp 842share/pcb/pcblib-newlib/geda/PLCC44.fp
723share/pcb/pcblib-newlib/geda/PLCC44X.fp 843share/pcb/pcblib-newlib/geda/PLCC44X.fp
@@ -748,26 +868,28 @@ share/pcb/pcblib-newlib/geda/QFN32_5.fp @@ -748,26 +868,28 @@ share/pcb/pcblib-newlib/geda/QFN32_5.fp
748share/pcb/pcblib-newlib/geda/QFN32_5_EP.fp 868share/pcb/pcblib-newlib/geda/QFN32_5_EP.fp
749share/pcb/pcblib-newlib/geda/QFN32_7.fp 869share/pcb/pcblib-newlib/geda/QFN32_7.fp
750share/pcb/pcblib-newlib/geda/QFN32_7_EP.fp 870share/pcb/pcblib-newlib/geda/QFN32_7_EP.fp
751share/pcb/pcblib-newlib/geda/QFN36_6.fp 871share/pcb/pcblib-newlib/geda/QFN36_6.fp
752share/pcb/pcblib-newlib/geda/QFN36_6_EP.fp 872share/pcb/pcblib-newlib/geda/QFN36_6_EP.fp
753share/pcb/pcblib-newlib/geda/QFN40_6.fp 873share/pcb/pcblib-newlib/geda/QFN40_6.fp
754share/pcb/pcblib-newlib/geda/QFN40_6_EP.fp 874share/pcb/pcblib-newlib/geda/QFN40_6_EP.fp
755share/pcb/pcblib-newlib/geda/QFN44_7.fp 875share/pcb/pcblib-newlib/geda/QFN44_7.fp
756share/pcb/pcblib-newlib/geda/QFN44_7_EP.fp 876share/pcb/pcblib-newlib/geda/QFN44_7_EP.fp
757share/pcb/pcblib-newlib/geda/QFN48_7.fp 877share/pcb/pcblib-newlib/geda/QFN48_7.fp
758share/pcb/pcblib-newlib/geda/QFN48_7_EP.fp 878share/pcb/pcblib-newlib/geda/QFN48_7_EP.fp
759share/pcb/pcblib-newlib/geda/QFN56_8.fp 879share/pcb/pcblib-newlib/geda/QFN56_8.fp
760share/pcb/pcblib-newlib/geda/QFN56_8_EP.fp 880share/pcb/pcblib-newlib/geda/QFN56_8_EP.fp
 881share/pcb/pcblib-newlib/geda/QFN64_9.fp
 882share/pcb/pcblib-newlib/geda/QFN64_9_EP.fp
761share/pcb/pcblib-newlib/geda/QFN68_10.fp 883share/pcb/pcblib-newlib/geda/QFN68_10.fp
762share/pcb/pcblib-newlib/geda/QFN68_10_EP.fp 884share/pcb/pcblib-newlib/geda/QFN68_10_EP.fp
763share/pcb/pcblib-newlib/geda/QFP100_14.fp 885share/pcb/pcblib-newlib/geda/QFP100_14.fp
764share/pcb/pcblib-newlib/geda/QFP100_R.fp 886share/pcb/pcblib-newlib/geda/QFP100_R.fp
765share/pcb/pcblib-newlib/geda/QFP120_28.fp 887share/pcb/pcblib-newlib/geda/QFP120_28.fp
766share/pcb/pcblib-newlib/geda/QFP128_28.fp 888share/pcb/pcblib-newlib/geda/QFP128_28.fp
767share/pcb/pcblib-newlib/geda/QFP128_R.fp 889share/pcb/pcblib-newlib/geda/QFP128_R.fp
768share/pcb/pcblib-newlib/geda/QFP144_28.fp 890share/pcb/pcblib-newlib/geda/QFP144_28.fp
769share/pcb/pcblib-newlib/geda/QFP160_28.fp 891share/pcb/pcblib-newlib/geda/QFP160_28.fp
770share/pcb/pcblib-newlib/geda/QFP208_28.fp 892share/pcb/pcblib-newlib/geda/QFP208_28.fp
771share/pcb/pcblib-newlib/geda/QFP240_32.fp 893share/pcb/pcblib-newlib/geda/QFP240_32.fp
772share/pcb/pcblib-newlib/geda/QFP304_40.fp 894share/pcb/pcblib-newlib/geda/QFP304_40.fp
773share/pcb/pcblib-newlib/geda/QFP32_7.fp 895share/pcb/pcblib-newlib/geda/QFP32_7.fp
@@ -991,26 +1113,27 @@ share/pcb/pcblib-newlib/geda/TO126S.fp @@ -991,26 +1113,27 @@ share/pcb/pcblib-newlib/geda/TO126S.fp
991share/pcb/pcblib-newlib/geda/TO126SW.fp 1113share/pcb/pcblib-newlib/geda/TO126SW.fp
992share/pcb/pcblib-newlib/geda/TO126W.fp 1114share/pcb/pcblib-newlib/geda/TO126W.fp
993share/pcb/pcblib-newlib/geda/TO18.fp 1115share/pcb/pcblib-newlib/geda/TO18.fp
994share/pcb/pcblib-newlib/geda/TO218.fp 1116share/pcb/pcblib-newlib/geda/TO218.fp
995share/pcb/pcblib-newlib/geda/TO220.fp 1117share/pcb/pcblib-newlib/geda/TO220.fp
996share/pcb/pcblib-newlib/geda/TO220ACS.fp 1118share/pcb/pcblib-newlib/geda/TO220ACS.fp
997share/pcb/pcblib-newlib/geda/TO220ACSTAND.fp 1119share/pcb/pcblib-newlib/geda/TO220ACSTAND.fp
998share/pcb/pcblib-newlib/geda/TO220S.fp 1120share/pcb/pcblib-newlib/geda/TO220S.fp
999share/pcb/pcblib-newlib/geda/TO220SW.fp 1121share/pcb/pcblib-newlib/geda/TO220SW.fp
1000share/pcb/pcblib-newlib/geda/TO220W.fp 1122share/pcb/pcblib-newlib/geda/TO220W.fp
1001share/pcb/pcblib-newlib/geda/TO247.fp 1123share/pcb/pcblib-newlib/geda/TO247.fp
1002share/pcb/pcblib-newlib/geda/TO247_2.fp 1124share/pcb/pcblib-newlib/geda/TO247_2.fp
1003share/pcb/pcblib-newlib/geda/TO251.fp 1125share/pcb/pcblib-newlib/geda/TO251.fp
 1126share/pcb/pcblib-newlib/geda/TO263.fp
1004share/pcb/pcblib-newlib/geda/TO264.fp 1127share/pcb/pcblib-newlib/geda/TO264.fp
1005share/pcb/pcblib-newlib/geda/TO39.fp 1128share/pcb/pcblib-newlib/geda/TO39.fp
1006share/pcb/pcblib-newlib/geda/TO92.fp 1129share/pcb/pcblib-newlib/geda/TO92.fp
1007share/pcb/pcblib-newlib/geda/TQFN12_4.fp 1130share/pcb/pcblib-newlib/geda/TQFN12_4.fp
1008share/pcb/pcblib-newlib/geda/TQFN12_4_EP.fp 1131share/pcb/pcblib-newlib/geda/TQFN12_4_EP.fp
1009share/pcb/pcblib-newlib/geda/TQFN16_3.fp 1132share/pcb/pcblib-newlib/geda/TQFN16_3.fp
1010share/pcb/pcblib-newlib/geda/TQFN16_3_EP.fp 1133share/pcb/pcblib-newlib/geda/TQFN16_3_EP.fp
1011share/pcb/pcblib-newlib/geda/TQFN16_4.fp 1134share/pcb/pcblib-newlib/geda/TQFN16_4.fp
1012share/pcb/pcblib-newlib/geda/TQFN16_4_EP.fp 1135share/pcb/pcblib-newlib/geda/TQFN16_4_EP.fp
1013share/pcb/pcblib-newlib/geda/TQFN16_5.fp 1136share/pcb/pcblib-newlib/geda/TQFN16_5.fp
1014share/pcb/pcblib-newlib/geda/TQFN16_5_EP.fp 1137share/pcb/pcblib-newlib/geda/TQFN16_5_EP.fp
1015share/pcb/pcblib-newlib/geda/TQFN20_4.fp 1138share/pcb/pcblib-newlib/geda/TQFN20_4.fp
1016share/pcb/pcblib-newlib/geda/TQFN20_4_EP.fp 1139share/pcb/pcblib-newlib/geda/TQFN20_4_EP.fp
@@ -1025,26 +1148,28 @@ share/pcb/pcblib-newlib/geda/TQFN32_5.fp @@ -1025,26 +1148,28 @@ share/pcb/pcblib-newlib/geda/TQFN32_5.fp
1025share/pcb/pcblib-newlib/geda/TQFN32_5_EP.fp 1148share/pcb/pcblib-newlib/geda/TQFN32_5_EP.fp
1026share/pcb/pcblib-newlib/geda/TQFN32_7.fp 1149share/pcb/pcblib-newlib/geda/TQFN32_7.fp
1027share/pcb/pcblib-newlib/geda/TQFN32_7_EP.fp 1150share/pcb/pcblib-newlib/geda/TQFN32_7_EP.fp
1028share/pcb/pcblib-newlib/geda/TQFN36_6.fp 1151share/pcb/pcblib-newlib/geda/TQFN36_6.fp
1029share/pcb/pcblib-newlib/geda/TQFN36_6_EP.fp 1152share/pcb/pcblib-newlib/geda/TQFN36_6_EP.fp
1030share/pcb/pcblib-newlib/geda/TQFN40_6.fp 1153share/pcb/pcblib-newlib/geda/TQFN40_6.fp
1031share/pcb/pcblib-newlib/geda/TQFN40_6_EP.fp 1154share/pcb/pcblib-newlib/geda/TQFN40_6_EP.fp
1032share/pcb/pcblib-newlib/geda/TQFN44_7.fp 1155share/pcb/pcblib-newlib/geda/TQFN44_7.fp
1033share/pcb/pcblib-newlib/geda/TQFN44_7_EP.fp 1156share/pcb/pcblib-newlib/geda/TQFN44_7_EP.fp
1034share/pcb/pcblib-newlib/geda/TQFN48_7.fp 1157share/pcb/pcblib-newlib/geda/TQFN48_7.fp
1035share/pcb/pcblib-newlib/geda/TQFN48_7_EP.fp 1158share/pcb/pcblib-newlib/geda/TQFN48_7_EP.fp
1036share/pcb/pcblib-newlib/geda/TQFN56_8.fp 1159share/pcb/pcblib-newlib/geda/TQFN56_8.fp
1037share/pcb/pcblib-newlib/geda/TQFN56_8_EP.fp 1160share/pcb/pcblib-newlib/geda/TQFN56_8_EP.fp
 1161share/pcb/pcblib-newlib/geda/TQFN64_9.fp
 1162share/pcb/pcblib-newlib/geda/TQFN64_9_EP.fp
1038share/pcb/pcblib-newlib/geda/TQFN68_10.fp 1163share/pcb/pcblib-newlib/geda/TQFN68_10.fp
1039share/pcb/pcblib-newlib/geda/TQFN68_10_EP.fp 1164share/pcb/pcblib-newlib/geda/TQFN68_10_EP.fp
1040share/pcb/pcblib-newlib/geda/TQFP100_12.fp 1165share/pcb/pcblib-newlib/geda/TQFP100_12.fp
1041share/pcb/pcblib-newlib/geda/TQFP100_14.fp 1166share/pcb/pcblib-newlib/geda/TQFP100_14.fp
1042share/pcb/pcblib-newlib/geda/TQFP120_28.fp 1167share/pcb/pcblib-newlib/geda/TQFP120_28.fp
1043share/pcb/pcblib-newlib/geda/TQFP128_14.fp 1168share/pcb/pcblib-newlib/geda/TQFP128_14.fp
1044share/pcb/pcblib-newlib/geda/TQFP128_14_EP.fp 1169share/pcb/pcblib-newlib/geda/TQFP128_14_EP.fp
1045share/pcb/pcblib-newlib/geda/TQFP128_28.fp 1170share/pcb/pcblib-newlib/geda/TQFP128_28.fp
1046share/pcb/pcblib-newlib/geda/TQFP144_28.fp 1171share/pcb/pcblib-newlib/geda/TQFP144_28.fp
1047share/pcb/pcblib-newlib/geda/TQFP160_28.fp 1172share/pcb/pcblib-newlib/geda/TQFP160_28.fp
1048share/pcb/pcblib-newlib/geda/TQFP208_28.fp 1173share/pcb/pcblib-newlib/geda/TQFP208_28.fp
1049share/pcb/pcblib-newlib/geda/TQFP240_32.fp 1174share/pcb/pcblib-newlib/geda/TQFP240_32.fp
1050share/pcb/pcblib-newlib/geda/TQFP304_40.fp 1175share/pcb/pcblib-newlib/geda/TQFP304_40.fp
@@ -1214,26 +1339,173 @@ share/pcb/pcblib-newlib/johnstech/JOHNST @@ -1214,26 +1339,173 @@ share/pcb/pcblib-newlib/johnstech/JOHNST
1214share/pcb/pcblib-newlib/johnstech/JOHNSTECH_QFN48_7.fp 1339share/pcb/pcblib-newlib/johnstech/JOHNSTECH_QFN48_7.fp
1215share/pcb/pcblib-newlib/johnstech/JOHNSTECH_QFN56_8.fp 1340share/pcb/pcblib-newlib/johnstech/JOHNSTECH_QFN56_8.fp
1216share/pcb/pcblib-newlib/johnstech/JOHNSTECH_QFN68_10.fp 1341share/pcb/pcblib-newlib/johnstech/JOHNSTECH_QFN68_10.fp
1217share/pcb/pcblib-newlib/johnstech/index.html 1342share/pcb/pcblib-newlib/johnstech/index.html
1218share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CA531.fp 1343share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CA531.fp
1219share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CB518.fp 1344share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CB518.fp
1220share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CB539.fp 1345share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CB539.fp
1221share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD541.fp 1346share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD541.fp
1222share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD542.fp 1347share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD542.fp
1223share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD636.fp 1348share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD636.fp
1224share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD637.fp 1349share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_CD637.fp
1225share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_KK81.fp 1350share/pcb/pcblib-newlib/minicircuits/MINICIRCUITS_KK81.fp
1226share/pcb/pcblib-newlib/minicircuits/index.html 1351share/pcb/pcblib-newlib/minicircuits/index.html
 1352share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_25_L.fp
 1353share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_25_M.fp
 1354share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_25_N.fp
 1355share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_30_L.fp
 1356share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_30_M.fp
 1357share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_30_N.fp
 1358share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_35_L.fp
 1359share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_35_M.fp
 1360share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_35_N.fp
 1361share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_40_L.fp
 1362share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_40_M.fp
 1363share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_40_N.fp
 1364share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_45_L.fp
 1365share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_45_M.fp
 1366share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_45_N.fp
 1367share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_50_L.fp
 1368share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_50_M.fp
 1369share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_22_50_N.fp
 1370share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_25_L.fp
 1371share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_25_M.fp
 1372share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_25_N.fp
 1373share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_30_L.fp
 1374share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_30_M.fp
 1375share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_30_N.fp
 1376share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_35_L.fp
 1377share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_35_M.fp
 1378share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_35_N.fp
 1379share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_40_L.fp
 1380share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_40_M.fp
 1381share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_40_N.fp
 1382share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_45_L.fp
 1383share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_45_M.fp
 1384share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_45_N.fp
 1385share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_50_L.fp
 1386share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_50_M.fp
 1387share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_25_50_N.fp
 1388share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_25_L.fp
 1389share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_25_M.fp
 1390share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_25_N.fp
 1391share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_30_L.fp
 1392share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_30_M.fp
 1393share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_30_N.fp
 1394share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_35_L.fp
 1395share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_35_M.fp
 1396share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_35_N.fp
 1397share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_40_L.fp
 1398share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_40_M.fp
 1399share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_40_N.fp
 1400share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_45_L.fp
 1401share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_45_M.fp
 1402share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_45_N.fp
 1403share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_50_L.fp
 1404share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_50_M.fp
 1405share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_30_50_N.fp
 1406share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_25_L.fp
 1407share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_25_M.fp
 1408share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_25_N.fp
 1409share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_30_L.fp
 1410share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_30_M.fp
 1411share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_30_N.fp
 1412share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_35_L.fp
 1413share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_35_M.fp
 1414share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_35_N.fp
 1415share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_40_L.fp
 1416share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_40_M.fp
 1417share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_40_N.fp
 1418share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_45_L.fp
 1419share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_45_M.fp
 1420share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_45_N.fp
 1421share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_50_L.fp
 1422share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_50_M.fp
 1423share/pcb/pcblib-newlib/nichicon/NICHICON_LGX_35_50_N.fp
 1424share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_25_L.fp
 1425share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_25_M.fp
 1426share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_25_N.fp
 1427share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_30_L.fp
 1428share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_30_M.fp
 1429share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_30_N.fp
 1430share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_35_L.fp
 1431share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_35_M.fp
 1432share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_35_N.fp
 1433share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_40_L.fp
 1434share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_40_M.fp
 1435share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_40_N.fp
 1436share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_45_L.fp
 1437share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_45_M.fp
 1438share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_45_N.fp
 1439share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_50_L.fp
 1440share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_50_M.fp
 1441share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_22_50_N.fp
 1442share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_25_L.fp
 1443share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_25_M.fp
 1444share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_25_N.fp
 1445share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_30_L.fp
 1446share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_30_M.fp
 1447share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_30_N.fp
 1448share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_35_L.fp
 1449share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_35_M.fp
 1450share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_35_N.fp
 1451share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_40_L.fp
 1452share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_40_M.fp
 1453share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_40_N.fp
 1454share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_45_L.fp
 1455share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_45_M.fp
 1456share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_45_N.fp
 1457share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_50_L.fp
 1458share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_50_M.fp
 1459share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_25_50_N.fp
 1460share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_25_L.fp
 1461share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_25_M.fp
 1462share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_25_N.fp
 1463share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_30_L.fp
 1464share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_30_M.fp
 1465share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_30_N.fp
 1466share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_35_L.fp
 1467share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_35_M.fp
 1468share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_35_N.fp
 1469share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_40_L.fp
 1470share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_40_M.fp
 1471share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_40_N.fp
 1472share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_45_L.fp
 1473share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_45_M.fp
 1474share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_45_N.fp
 1475share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_50_L.fp
 1476share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_50_M.fp
 1477share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_30_50_N.fp
 1478share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_25_L.fp
 1479share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_25_M.fp
 1480share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_25_N.fp
 1481share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_30_L.fp
 1482share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_30_M.fp
 1483share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_30_N.fp
 1484share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_35_L.fp
 1485share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_35_M.fp
 1486share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_35_N.fp
 1487share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_40_L.fp
 1488share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_40_M.fp
 1489share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_40_N.fp
 1490share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_45_L.fp
 1491share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_45_M.fp
 1492share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_45_N.fp
 1493share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_50_L.fp
 1494share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_50_M.fp
 1495share/pcb/pcblib-newlib/nichicon/NICHICON_LGY_35_50_N.fp
 1496share/pcb/pcblib-newlib/nichicon/NICHICON_UPT_18_31p5_L.fp
 1497share/pcb/pcblib-newlib/nichicon/NICHICON_UPT_18_31p5_M.fp
 1498share/pcb/pcblib-newlib/nichicon/NICHICON_UPT_18_31p5_N.fp
1227share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_10_10.fp 1499share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_10_10.fp
1228share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_3_5p4.fp 1500share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_3_5p4.fp
1229share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_4_5p4.fp 1501share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_4_5p4.fp
1230share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_5_5p4.fp 1502share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_5_5p4.fp
1231share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_6p3_5p4.fp 1503share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_6p3_5p4.fp
1232share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_6p3_5p8.fp 1504share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_6p3_5p8.fp
1233share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_6p3_7p7.fp 1505share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_6p3_7p7.fp
1234share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_8_10.fp 1506share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_8_10.fp
1235share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_8_5p4.fp 1507share/pcb/pcblib-newlib/nichicon/NICHICON_WT_CAP_8_5p4.fp
1236share/pcb/pcblib-newlib/nichicon/index.html 1508share/pcb/pcblib-newlib/nichicon/index.html
1237share/pcb/pcblib-newlib/optek/OPTEK_OVSRWACR6.fp 1509share/pcb/pcblib-newlib/optek/OPTEK_OVSRWACR6.fp
1238share/pcb/pcblib-newlib/optek/index.html 1510share/pcb/pcblib-newlib/optek/index.html
1239share/pcb/pcblib-newlib/optical/LED 100.fp 1511share/pcb/pcblib-newlib/optical/LED 100.fp
@@ -1245,23 +1517,33 @@ share/pcb/pcblib-newlib/panasonic/PANASO @@ -1245,23 +1517,33 @@ share/pcb/pcblib-newlib/panasonic/PANASO
1245share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB28V.fp 1517share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB28V.fp
1246share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB2HV.fp 1518share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB2HV.fp
1247share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB34V.fp 1519share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB34V.fp
1248share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB38V.fp 1520share/pcb/pcblib-newlib/panasonic/PANASONIC_EXB38V.fp
1249share/pcb/pcblib-newlib/panasonic/PANASONIC_EXBS8V.fp 1521share/pcb/pcblib-newlib/panasonic/PANASONIC_EXBS8V.fp
1250share/pcb/pcblib-newlib/panasonic/PANASONIC_EXBV4V.fp 1522share/pcb/pcblib-newlib/panasonic/PANASONIC_EXBV4V.fp
1251share/pcb/pcblib-newlib/panasonic/PANASONIC_EXBV8V.fp 1523share/pcb/pcblib-newlib/panasonic/PANASONIC_EXBV8V.fp
1252share/pcb/pcblib-newlib/panasonic/index.html 1524share/pcb/pcblib-newlib/panasonic/index.html
1253share/pcb/pcblib-newlib/pci/PCI5V_AVE_HEIGHT.fp 1525share/pcb/pcblib-newlib/pci/PCI5V_AVE_HEIGHT.fp
1254share/pcb/pcblib-newlib/pci/PCI5V_MAX_HEIGHT.fp 1526share/pcb/pcblib-newlib/pci/PCI5V_MAX_HEIGHT.fp
1255share/pcb/pcblib-newlib/pci/PCI5V_MIN_HEIGHT.fp 1527share/pcb/pcblib-newlib/pci/PCI5V_MIN_HEIGHT.fp
1256share/pcb/pcblib-newlib/pci/PCI5V_SMALL_HEIGHT.fp 1528share/pcb/pcblib-newlib/pci/PCI5V_SMALL_HEIGHT.fp
1257share/pcb/pcblib-newlib/pci/index.html 1529share/pcb/pcblib-newlib/pci/index.html
 1530share/pcb/pcblib-newlib/tdk/TDK_B82145A_L.fp
 1531share/pcb/pcblib-newlib/tdk/TDK_B82145A_M.fp
 1532share/pcb/pcblib-newlib/tdk/TDK_B82145A_N.fp
 1533share/pcb/pcblib-newlib/tdk/index.html
 1534share/pcb/pcblib-newlib/toko/TOKO_7P.fp
 1535share/pcb/pcblib-newlib/toko/index.html
 1536share/pcb/pcblib-newlib/united_chemicon/CHEMICON_GPA16X35_L.fp
 1537share/pcb/pcblib-newlib/united_chemicon/CHEMICON_GPA16X35_M.fp
 1538share/pcb/pcblib-newlib/united_chemicon/CHEMICON_GPA16X35_N.fp
 1539share/pcb/pcblib-newlib/united_chemicon/index.html
1258share/pcb/pcblib.contents 1540share/pcb/pcblib.contents
1259share/pcb/qfp-ui 1541share/pcb/qfp-ui
1260share/pcb/qfp.dat 1542share/pcb/qfp.dat
1261share/pcb/tools/MergePCBPS 1543share/pcb/tools/MergePCBPS
1262share/pcb/tools/Merge_dimPCBPS 1544share/pcb/tools/Merge_dimPCBPS
1263share/pcb/tools/apctools.zip 1545share/pcb/tools/apctools.zip
1264share/pcb/tools/gerbertotk.c 1546share/pcb/tools/gerbertotk.c
1265share/pcb/tools/pcb2ncap.tgz 1547share/pcb/tools/pcb2ncap.tgz
1266share/pcb/tools/pcbdiff 1548share/pcb/tools/pcbdiff
1267@pkgdir share/pcb/newlib/sockets 1549@pkgdir share/pcb/newlib/sockets

cvs diff -r1.25 -r1.26 pkgsrc/cad/pcb/distinfo (expand / switch to unified diff)

--- pkgsrc/cad/pcb/distinfo 2017/01/21 01:56:13 1.25
+++ pkgsrc/cad/pcb/distinfo 2017/10/24 02:21:55 1.26
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.25 2017/01/21 01:56:13 dmcmahill Exp $ 1$NetBSD: distinfo,v 1.26 2017/10/24 02:21:55 dmcmahill Exp $
2 2
3SHA1 (pcb-4.0.0.tar.gz) = f401802b95a7f70c54a56ad98c4aa3961ba55cba 3SHA1 (pcb-4.0.1.tar.gz) = 3b0f01d9aa85f613c2994c91b7152086e1b5d5ea
4RMD160 (pcb-4.0.0.tar.gz) = 27302f64fb9f8e980285235b10b9d7ab9170f68f 4RMD160 (pcb-4.0.1.tar.gz) = f721195db9a8402dbb77ef898e1288a593445600
5SHA512 (pcb-4.0.0.tar.gz) = b77077d7ae93fbbd3cd2f57e85921336257af73bb90776139968c40523ff2b136a56e844a9eae161a0b14b92dc58d390274ef0b4a99e1d8007c12b117f087ada 5SHA512 (pcb-4.0.1.tar.gz) = 8cc4b4eb68321a797900ccb6864dabffb668e5c1720a0eeedd1eb860337c960a58dcddcfa1994e3b600ec9c85e3b2683a72bb76d8de655667d39c500bfae65f2
6Size (pcb-4.0.0.tar.gz) = 4676879 bytes 6Size (pcb-4.0.1.tar.gz) = 4755344 bytes