--- /dev/null
+KiCad 6, Changes to the project, schematic file format
+
+The update of KiCad to version 6 comes along with an new format for the
+project and the symbols files which you will need to keep in mind for getting
+an successful upgrade of your projects and the work environment done.
+
+ Before doing any processing please ensure you have made backups of your
+ projects and additional files (like local symbols, footprints etc.)!
+ The environment settings of your KiCad 5 version can be found in the folder
+ $(HOME)/.config/kicad
+ So please include this folder within your backups!
+
+KiCad 6 comes with an option of possible side by side installation of various
+major versions of KiCad. To get this goal KiCad is saving the environment
+now in the folder:
+
+ $(HOME)/.config/kicad/$(MAJOR_VERSION).$(MINOR_VERSION)
+
+Means for the Debian packages the environment files will be installed into:
+
+ $(HOME)/.config/kicad/6.0
+
+To migrate your existing projects you mostly will just to open them with the
+new KiCad version and save them directly, next do the same with the schematic
+and the pcb editor
+Please also note that you will need to update your personal symbol libraries
+to get them usable with KiCad 6. It might also be needed to update some folder
+settings within your symbol or also project setting to get external resources
+included into your personal projects.
+
+The following web resources contain further information you can use.
+
+ https://docs.kicad.org/6.0/en/introduction/introduction.html
+ https://www.kicad.org/blog/2021/12/KiCad-6.0.0-Release/
+ https://forum.kicad.info/
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 02 Jan 2021 14:50:00 +0100
+
+KiCad 5, Availability of Spice based circuit simulation in Eeschema
+-------------------------------------------------------------------
+
+Starting with version 5.0.1+dfsg1-2 KiCad is built with ngspice support. Thus
+you will find a new menu entry in Eeschema 'Tools -> Simulator' for circuit
+simulation of your schematic. Please have a look into the documentation how to
+use this feature.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> So, 14 Oct 2018 11:25:00 +0800
+
+KiCad 5, Changes to the global Symbol and Footprint Table
+---------------------------------------------------------
+
+The KiCad application stores global settings for the schematic symbols in the
+file
+
+ $(HOME)/.config/kicad/sym-lib-table
+
+and for the footprints within
+
+ $(HOME)/.config/kicad/fp-lib-table
+
+Both default settings have been changed in KiCad 5 due the changed names of the
+libraries, unfortunately the kicad application isn't doing any automatic
+migration. You need to make the adjustments by yourself within the editor for
+the 'Symbol Libraries' (in Eeschema within the menu 'Preferences - Manage
+Symbol Libraries...') and the editor for the 'Footprint Libraries" (in
+Footprint Editor in the menu 'Preferences - Manage Footprint Libraries...')
+
+Note:
+It's mostly easier to backup the old files an re-adjust just your local needs
+after a restart of KiCad. KiCad will recreate new default files if it can't
+find any of the files in the .config folder.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mo, 23 Apr 2018 15:00:00 +0800
+
+KiCad 5, the 'Modern Toolset (Accelerated)' in Gerbview or Pcbnew and Wayland
+-----------------------------------------------------------------------------
+
+If you running your DE (Desktop Environment) under Wayland [1], a planned
+replacement for X [2], and you have turned on the 'Modern Toolset (Accelerated)'
+in Pcbnew or Gerbview you probably experience some strange things like crashes
+of your complete DE session.
+
+This happen due a issue within the wxWidget3.0 framework while running in a
+Wayland session together with the GTK3 bindings against the wxWidget framework.
+This is no problem inside KiCad. The bugtracker for KiCad is tracking this
+issue on Launchpad in the bug report 1755360 [3] and the KiCad project has
+made an announcement about the problem on the project website [4]. The origin
+of the problem is tracked on the TRAC instance on wxwidgets.org [5].
+
+Right now there is no easy solution for this regression. You can use some
+workarounds to get KiCad working nevertheless.
+
+1. Do not use the 'Modern Toolset (Accelerated)' and use instead the 'Modern
+ Toolset (Fallback)' option.
+
+2. Run KiCad within a X11 session.
+ To do so you have also two options.
+
+ Option 1: Switch over to use X11 instead of the Wayland as base for your
+ DE. This requires a complete log off from your running DE session and
+ select 'X11' from the settings in your window manager before start the
+ window manager itself.
+
+ Option 2: Start KiCad (or the standalone applications) within a dedicated
+ X11 session by setting the environment variable 'GDK_BACKEND' to 'x11'
+ while calling pcbnew or gerbview. e.g.
+
+ $ GDK_BACKEND=x11 kicad
+ or
+ $ GDK_BACKEND=x11 pcbnew
+
+How to check if I'm running a x11 or a Wayland session?
+You can use this one liner to detect your session you running on. Please adjust
+'YOUR_USER_NAME' with your login name.
+
+ $ loginctl show-session `loginctl|grep YOUR_USER_NAME|awk '{print $1}'` -p Type
+
+If you get the following output your session is running within Wayland.
+
+ $ Type=wayland
+
+[1] https://wiki.gnome.org/Initiatives/Wayland
+[2] https://en.wikipedia.org/wiki/X_Window_System
+[3] https://bugs.launchpad.net/kicad/+bug/1755360
+[4] http://kicad.org/help/known-system-related-issues/#_wayland
+[5] https://trac.wxwidgets.org/ticket/17702
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 8 Apr 2018 18:00:00 +0200
--- /dev/null
+KiCad packaging workflow
+------------------------
+
+KiCad uses git-buildpackage for the packaging maintenance. This means the whole
+Debian specific work is done in separate branches. The needed Debian specific
+patches will be managed by a so called patch-queue branch if needed.
+
+The KiCad source used for packaging is split off into the main application and
+some additional add-ons like the documentation (upstream kicad-doc called) and
+the localization (upstream kicad-i18n called).
+
+We use component tarballs to collect all the sources. git-buildpackage is able
+to handle those files for importing into the git tree as also for extracting
+the correct component tarballs later if needed. For the recreation of the
+orig*.tar.xz pristine-tar is doing the correct action.
+
+The source tarball and the additional component tarballs are currently created
+manually from cloned upstream git repositories. Normally the following calls
+are used to create the tarballs.
+
+ $ cd /path/to/kicad-tree
+ $ git archive --format=tar.xz --output ~/Downloads/kicad_5.0.2.orig.tar.xz 5.0.2
+
+ $ cd /path/to/kicad-doc-tree
+ $ git archive --format=tar.xz --output ~/Downloads/kicad_5.0.2.orig-doc.tar.xz 5.0.2
+
+ $ cd /path/to/kicad-i18n-tree
+ $ git archive --format=tar.xz --output ~/Downloads/kicad_5.0.2.orig-i18n.tar.xz 5.0.2
+
+Importing new source tarballs is done by git-buildpackage with adding the
+suffix 'dfsg<x>' to the version to import.
+
+ $ gbp import-orig --verbose --sign-tags --pristine-tar /path/to/kicad_5.0.2.orig.tar.xz
+ ...
+ What is the upstream version? [5.0.2] 5.0.2+dfsg1
+ ...
+
+The multi tarballs will be extracted to the following folders while importing
+the new version:
+
+ *.orig-doc.tar.xz -> doc/
+ *.orig-i18n.tar.xz -> i18n/
+
+ -- Carsten Schoenert <c.schoenert@t-online.de>, Mon, 14 Jan 2019 12:50:00 +0100
--- /dev/null
+KiCad 7++ comes with vendored packaged which are used within the build process.
+Not all of the used upstream vendored packages are available in Debian, and
+some of them are not needed within the build in Debian as they are specific
+for the Windows OS.
+
+The folder thirdparty/ is containing all the vendored software. The various
+used upstream software is not always a complete copy of the upstream project!
+
+This file is collecting the current state and will hold information about
+the things that need to happen from POV of Debian.
+
+1. Collect vendored shipped packages Done 🟩
+1. Collect package information: WIP 🟨
+2. Collect packages which need WNPP bug: ToDo 🟥
+3. Request configuration options to use system packages: ToDo 🟥
+
+Vendored package License Debian equivalent Upstream resource
+----------------------------------------------------------------------------
+3dxware_sdk unknwon None
+argparse BSL-1.0 None https://github.com/p-ranav/argparse
+clipper BSL-1.0 libpolyclipping-dev https://sourceforge.net/projects/polyclipping/
+clipper2 BSL-1.0 None http://www.angusj.com/clipper2/Docs/Overview.htm
+compoundfilereader Expat None https://github.com/microsoft/compoundfilereader
+delaunator Expat None https://github.com/abellgithub/delaunator-cpp
+dynamic_bitset Expat None https://github.com/pinam45/dynamic_bitset
+dxflib_qcad GPL-2.0+ libdxflib-dev https://www.qcad.org/en/what-is-dxflib
+expected CC0-1.0 None https://github.com/TartanLlama/expected
+fmt Expat with exception libfmt-dev https://fmt.dev/
+glew BSD-3-clause libglew-dev http://glew.sourceforge.net
+ Mesa
+ GPL-2.0+
+gzip-hpp BSD-2-clause None https://github.com/mapbox/gzip-hpp
+json_schema_validator Expat None https://github.com/pboettch/json-schema-validator Patch applied
+lemon public-domain lemon https://www.sqlite.org/
+libcontext BSL1.0 None Kicad specific modification of the Boost library
+libpopcnt BSD-2-clause None https://github.com/kimwalisch/libpopcnt
+markdown2html libsoldout-utils ? http://fossil.instinctive.eu/index.html ?
+nanodbc Expat None https://github.com/nanodbc/nanodbc
+nanosvg Zlib None https://github.com/memononen/nanosvg
+nlohmann_json Expat nlohmann-json3-dev https://github.com/nlohmann/json
+ Expat None https://github.com/nlohmann/fifo_map
+other_math GPL-2 None ?
+pegtl BSL-1.0 (pegtl-dev) https://github.com/taocpp/PEGTL
+picosha2 GPL-2 None https://github.com/okdshin/PicoSHA2
+potrace GPL-2+ libpotrace-dev https://potrace.sourceforge.net/
+pybind11 BSD-3-clause+CLA pybind11-dev https://github.com/pybind/pybind11
+ BSD-2-clause
+rectpack2d Expat None https://github.com/TeamHypersomnia/rectpack2D
+rtree GPL-3+ None https://github.com/nushoin/RTree
+sentry-native (got filtered out!)
+thread-pool Expat None https://github.com/bshoshany/thread-pool
+tinyspline_lib Expat None https://github.com/msteinbeck/tinyspline
+turtle BSL-1.0 None https://github.com/mat007/turtle
+
+
+Footnotes
+---------
+Emojis are taken from https://unicode.org/emoji/charts/full-emoji-list.html
+
+🟩 https://unicode.org/emoji/charts/full-emoji-list.html#1f7e9
+🟨 https://unicode.org/emoji/charts/full-emoji-list.html#1f7e8
+🟥 https://unicode.org/emoji/charts/full-emoji-list.html#1f7e5
--- /dev/null
+kicad (9.0.1+dfsg-1) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [23d6e54] New upstream version 9.0.1+dfsg
+ * [3682fc3] d/control: Increase Standards-Version to 4.7.2
+ + No further changes needed.
+ * [3f344b9] d/kicad-demos.install: Add new subfolder to install
+
+ [ RICCIARDI-Adrien ]
+ * [1c64540] Rebuild patch queue from patch-queue branch
+ + Updated patch:
+ fixes/Adjusting-content-in-the-desktop-files.patch
+ See also
+ https://salsa.debian.org/electronics-team/KiCad/kicad/-/merge_requests/2
+
+ [ John Paul Adrian Glaubitz ]
+ * [5f03e00] d/rules: Add needed linking for armel m68k powerpc sh4
+ (Closes: #1098791)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 04 Apr 2025 16:07:28 +0200
+
+kicad (9.0.0+dfsg-1) unstable; urgency=medium
+
+ * [90a9b14] d/gbp.conf: Filter out one more PDF file
+ * [a4131fc] New upstream version 9.0.0+dfsg
+ (Closes: #1098475)
+ * [651264e] d/control: Add new needed Build-Deps
+ * [46e8aec] d/kicad.install.in: Add libkiapi to sequencer
+ * [80f8e81] d/rules: Add new CMAKE option to DEB_KICAD_CMAKE_OPTS
+ * [5341af1] d/s/lintian-overrides: Ignore non relevant Lintian detection
+ * [f2b0e1a] d/copyright: Update copyright information
+ * [39aae5e] d/kicad.lintian-overrides: Adjust content due changes
+ * [f3a620c] d/README.vendorded-stuff: Some more notes
+ * [83f540d] d/rules: Remove more unwanted files in kicad-demos
+ * [c50fcfa] d/rules: Use upper case, not one char variable names
+ * [3104e18] d/control: Increase Standards-Version to 4.7.1
+ + No further changes needed.
+ * [b04b0d0] d/control: Bump Bre/Sug/Rec versions to >=/<< 9.0.0~
+ * [5069e37] d/t/control: Sort entries by wrap-and-sort
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 23 Feb 2025 17:00:42 +0200
+
+kicad (8.0.8+dfsg-1) unstable; urgency=medium
+
+ * [414e014] New upstream version 8.0.8+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 12 Jan 2025 10:43:51 +0200
+
+kicad (8.0.7+dfsg-2) unstable; urgency=medium
+
+ * [7ee0ffc] d/rules: Ignore dh_dwz on armhf
+ This architecture is providing too less memory dwz could be running
+ succesfully.
+ (Closes: #1091284)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 26 Dec 2024 11:30:34 +0200
+
+kicad (8.0.7+dfsg-1) unstable; urgency=medium
+
+ * [b0daff1] New upstream version 8.0.7+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Tue, 24 Dec 2024 13:46:07 +0200
+
+kicad (8.0.6+dfsg-1) unstable; urgency=medium
+
+ * [6b82f1b] New upstream version 8.0.6+dfsg
+ (Closes: #1084283)
+ * [899692f] Rebuild patch queue from patch-queue branch
+ + Updated patch:
+ reproducibility/doc-Add-field-revdate-to-asciidoc-files.patch
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 18 Oct 2024 19:16:53 +0200
+
+kicad (8.0.5+dfsg-1) unstable; urgency=medium
+
+ * [22aec90] New upstream version 8.0.5+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 12 Sep 2024 17:23:50 +0200
+
+kicad (8.0.4+dfsg-1) unstable; urgency=medium
+
+ * [53b587f] New upstream version 8.0.4+dfsg
+ * [c6b9160] Rebuild patch queue from patch-queue branch
+ + Added patch:
+ fixes/python-Use-raw-strings-expressions.patch
+ * [a337b7b] d/rules: Clean out .mypy_cache folders in dh_clean
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 18 Jul 2024 17:32:31 +0200
+
+kicad (8.0.3+dfsg-1) unstable; urgency=medium
+
+ * [f7d4143] New upstream version 8.0.3+dfsg
+ * [cf2b4b4] Rebuild patch queue from patch-queue branch
+ + Added patch:
+ fixes/demos-Adjust-MIME-encoding-to-UTF8-of-some-libraries.patch
+ * [67536f2] d/copyright: Update content due added folder by upstream
+ * [d1377f8] Revert "Adding ldconfig triggering file"
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 05 Jun 2024 20:29:30 +0200
+
+kicad (8.0.2+dfsg-1) unstable; urgency=medium
+
+ [ zhangdandan ]
+ * [0ae6094] d/control: Add loongarch64 architecture
+ (Closes: #1059016)
+
+ [ Carsten Schoenert ]
+ * [4568d39] d/copyright: Updating due upstream modifications
+ * [db730d5] New upstream version 8.0.2+dfsg
+ * [b2841ed] d/control: Increase Standards-Version to 4.7.0
+ yy + No further changes needed.
+ * [d788d27] d/k.lintian-overrides: Ignore ships-undeclared-shared-library
+ * [5a6d93d] d/copyright: Small adjustment on filtered content
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 01 May 2024 11:47:38 +0200
+
+kicad (8.0.1+dfsg-1) unstable; urgency=medium
+
+ * [ed981e2] d/gbp.conf: Add more content to filter out
+ * [585ff35] New upstream version 8.0.1+dfsg
+ (Closes: #1064546)
+ * [b679e37] d/control: Bump Bre/Sug/Rec versions to >=/<< 8.0.1~
+ * [aa552a3] Rebuild patch queue from patch-queue branch
+ + Dropped patch:
+ porting-kfreebsd-hurd/Fix-FTBFS-on-kFreeBSD-and-Hurd.patch
+ * [32d5f0e] d/control: Add new build dependencies
+ The build requires now libgit2-dev and libsecret-1-dev.
+ * [2e4fe8c] d/kicad.install.in: Add libki{common,gal} to sequencer
+ * [fc20fca] d/kicad-demos.install: Adjust sequencer data to install
+ * [a2ca39d] d/control: Adjust obsolet pkg-config => pkgconf
+ * [064d10c] d/kicad.lintian-overrides: Adjust some overrides
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 17 Mar 2024 14:58:18 +0100
+
+kicad (7.0.11+dfsg-1) unstable; urgency=medium
+
+ * [4cd41de] New upstream version 7.0.11+dfsg
+ * [ec30213] d/copyright: Update year data
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 23 Feb 2024 18:59:55 +0100
+
+kicad (7.0.10+dfsg-1) unstable; urgency=medium
+
+ * [c5309bc] New upstream version 7.0.10+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 30 Dec 2023 17:02:59 +0100
+
+kicad (7.0.9+dfsg-1) unstable; urgency=medium
+
+ * [2daca8b] New upstream version 7.0.9+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 16 Nov 2023 20:22:14 +0100
+
+kicad (7.0.8+dfsg-1) unstable; urgency=medium
+
+ * [139e7f5] New upstream version 7.0.8+dfsg
+ * [b5ed954] Rebuild patch queue from patch-queue branch
+ + Just refreshed existing patches.
+ * [0572553] d/control: Bump kicad-* versions to >= 7.0.0~
+ (Closes: #1050882)
+ * [195174f] d/kicad.lintian-overrides: Small adjustment about wTH/wtH
+ * [ba72234] d/kicad.lintian-overrides: be more lazy on arch paths
+ * [7ee9704] d/copyright: File common/lockfile.cpp was removed
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 08 Oct 2023 10:54:42 +0200
+
+kicad (7.0.7+dfsg-1) unstable; urgency=medium
+
+ * [5ab605a] New upstream version 7.0.7+dfsg
+ * [3a7f4d5] Rebuild patch queue from patch-queue branch
+ + added patch:
+ debian-hacks/KiCadFullVersion-Drop-hyphen-in-the-string.patch
+ + dropped patch (applied upstream):
+ fixes/Fix-dblatex-options-within-cmake-file.patch
+ + modified/renamed patch:
+ reproducibility/add-field-revdate-to-asciidoc-files-of-documentation.patchi
+ -> debian/patches/reproducibility/doc-Add-field-revdate-to-asciidoc-files.patch
+ * [b4306e8] d/rules: Add KICAD_VERSION_EXTRA to DEB_KICAD_CMAKE_OPTS
+ Use the option to set a suffix to the by CMake provided version string
+ through a configure option, by this we don't need to modify source code
+ file before start the package build. This would break calling
+ dpkg-buildpackage twice as dpkg-source will detect modification within
+ the source if called after the first build.
+ * [e571530] d/rules: Add target override_dh_clean
+ Clean out debian/build if exists, would also break dpkg-source.
+ (Closes: #1047477)
+ * [ff93a8a] d/rules: Resize the icon in the package data
+ Do not modify the XPM based icon within the source, same again, dpkg-source
+ will detect modified source then.
+ * [81bb2e8] d/rules: Don't modify Asciidoc files for now
+ Adding a unique timestamp to the Asciidoc files will need more effort,
+ the build isn't reproducible anyway, so drop that modification while build
+ for now.
+ * [1bc5733] d/rules: Drop non existing options from DEB_KICAD_CMAKE_OPTS
+ Some of previous used and needed CMake options are now no longer
+ provided or required any longer.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 16 Aug 2023 17:25:09 +0200
+
+kicad (7.0.6+dfsg-1) unstable; urgency=medium
+
+ * [6fce285] New upstream version 7.0.6+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 09 Jul 2023 08:35:31 +0200
+
+kicad (7.0.5+dfsg-2) unstable; urgency=medium
+
+ * Upload to unstable
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 12 Jun 2023 17:51:34 +0200
+
+kicad (7.0.5+dfsg-1) experimental; urgency=medium
+
+ * [6d70960] New upstream version 7.0.5+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 31 May 2023 07:55:56 +0200
+
+kicad (7.0.3+dfsg-1) experimental; urgency=medium
+
+ * [8a432b5] New upstream version 7.0.3+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 14 May 2023 08:48:02 +0200
+
+kicad (7.0.2+dfsg-1) experimental; urgency=medium
+
+ * [dbbb7ab] New upstream version 7.0.2+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Tue, 18 Apr 2023 19:13:34 +0200
+
+kicad (7.0.1+dfsg-1) experimental; urgency=medium
+
+ * [1632fc8] d/t/control: Remove not used package from Depends
+ (Closes: #1018386)
+ * [4e67a4b] d/gbp.conf: Exclude thirdparty/sentry-native on import
+ * [01c253a] New upstream version 7.0.1+dfsg
+ (Closes: #1031345)
+ * [71f9595] d/control: Add new required B-D on unixodbc-dev
+ * [32e4562] d/rules: Adjust targets due changed upstream source
+ * [c074c04] d/kicad.install.in: Adjustments due changes by upstream
+ * []861d40] d/copyright: Updating due upstream modifications
+ * [5421020] d/kicad.lintian-overrides: Update entries due changes
+ * [d2d2e6c] Lintian: Add overrides for the source
+ * [4143571] d/README.vendorded-stuff: Some notes about vendored stuff
+ * [64481a3] d/control: Bump suggested/recommended versions to >= 7.0.1~
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 12 Mar 2023 17:40:58 +0100
+
+kicad (6.0.11+dfsg-1) unstable; urgency=medium
+
+ * [f3f2ba1] New upstream version 6.0.11+dfsg
+ * [a9cd33d] d/copyright: Update year data
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 26 Jan 2023 06:35:43 +0100
+
+kicad (6.0.10+dfsg-2) unstable; urgency=medium
+
+ * [5a3af46] Revert "d/rules: Turn option KICAD_USE_EGL on"
+ wxWidgets 3.2 in Debian has now no EGL canvas support compiled in any
+ more. More to the reasoning about the switch back can be found on
+ https://bugs.debian.org/1020640
+ https://bugs.debian.org/1024147
+ (Closes: #1027137)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 29 Dec 2022 18:43:50 +0100
+
+kicad (6.0.10+dfsg-1) unstable; urgency=medium
+
+ [ Manuel A. Fernandez Montecelo ]
+ * [789343b] d/control: Add riscv64 to supported architectures
+ (Closes: #1025032)
+
+ [ Carsten Schoenert ]
+ * [96d4c35] New upstream version 6.0.10+dfsg
+ * [66457b6] d/control: Increase Standards-Version to 4.6.2
+ + No further changes needed.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Tue, 20 Dec 2022 20:24:32 +0100
+
+kicad (6.0.9+dfsg-1) unstable; urgency=medium
+
+ * [e85c0b0] New upstream version 6.0.9+dfsg
+ * [7e86aff] Rebuild patch queue from patch-queue branch
+ + modified patch:
+ reproducibility/add-field-revdate-to-asciidoc-files-of-documentation.patch
+ * [8403644] d/rules: Adjust file list in ASCIIDOCFILES
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 29 Oct 2022 13:54:45 +0200
+
+kicad (6.0.8+dfsg-1) unstable; urgency=medium
+
+ * [3f92c9a] New upstream version 6.0.8+dfsg
+ * [29b0004] d/copyright: Updating due upstream modifications
+ * [3746b07] Rebuild patch queue from patch-queue branch
+ + modified patch:
+ reproducibility/add-field-revdate-to-asciidoc-files-of-documentation.patch
+ * [bc8a6bc] d/rules: Adjust file list in ASCIIDOCFILES
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 06 Oct 2022 17:10:36 +0200
+
+kicad (6.0.7+dfsg-3) unstable; urgency=medium
+
+ * [78fe67e] d/control: Pin min python3-wxgtk4.0 version
+ By this version requirement kicad will pull python3-wxgtk4.0 with
+ version 4.2.0+dfsg-1~ or greater. This isn't really fixing the
+ referenced bug report, the authors of plugins for KiCad really need to
+ do some version checking of the environment and not blindly assume that
+ every required package is available in the correct version!
+ (Closes: #1019954)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 17 Sep 2022 18:09:00 +0200
+
+kicad (6.0.7+dfsg-2) unstable; urgency=medium
+
+ * [ddaeec5] d/t/control: Remove not used package from Depends
+ (Closes: #1018386)
+ * [0cbd959] d/control: Move over to use wxwidgets3.2
+ (Closes: #1019788)
+ * [a217cbb] d/rules: Turn option KICAD_USE_EGL on
+ * [8bbcedb] d/kicad.lintian-overrides: Update entries to new syntax
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 17 Sep 2022 09:27:29 +0200
+
+kicad (6.0.7+dfsg-1) unstable; urgency=medium
+
+ * [d4ef5ac] New upstream version 6.0.7+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 30 Jul 2022 12:22:50 +0200
+
+kicad (6.0.6+dfsg-1) unstable; urgency=medium
+
+ * [67d4f3c] New upstream version 6.0.6+dfsg
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 20 Jun 2022 20:00:05 +0200
+
+kicad (6.0.5+dfsg-1) unstable; urgency=medium
+
+ * [5517201] New upstream version 6.0.5+dfsg
+ * [883c6f9] d/control: increase Standards-Version to 4.6.1
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 19 May 2022 17:05:13 +0200
+
+kicad (6.0.4+dfsg-1) unstable; urgency=medium
+
+ * [5ca14e6] New upstream version 6.0.4+dfsg
+ * [370446a] d/copyright: Update due updated upstream modifications
+ * [e7c121e] d/k-packages-relations.dia: Remove transitional package
+ * [1418856] Rebuild patch queue from patch-queue branch
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 20 Mar 2022 07:53:12 +0100
+
+kicad (6.0.2+dfsg-1) unstable; urgency=medium
+
+ * [5e64c37] New upstream version 6.0.2+dfsg
+ * [iec7346] d/control: Adjust Vcs-Browser field
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 12 Feb 2022 10:36:02 +0100
+
+kicad (6.0.1+dfsg-1) unstable; urgency=medium
+
+ [ Simon Richter ]
+ * [376e8c6] d/rules: Generate bpo friendly version dependencies
+ (Closes: #1003232)
+
+ [ Carsten Schoenert ]
+ * [bb95051] New upstream version 6.0.1+dfsg
+ * [d9c5702] Rebuild patch queue from patch-queue branch
+ * [52fd7fd] Adding ldconfig triggering file
+ * [ec04bf7] d/kicad.lintian-overrides: Ignore no-shlibs warning
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 15 Jan 2022 16:08:27 +0100
+
+kicad (6.0.0+dfsg1-2) unstable; urgency=medium
+
+ * [215faf4] d/control: Use libpython3-dev instead libpython3-all-dev
+ + Don't use libpython3-all-dev within the Duild-Depends, use
+ libpython3-dev to get the current pkgconfig data for Python.
+ (Closes: #1003043)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 03 Jan 2022 21:32:23 +0100
+
+kicad (6.0.0+dfsg1-1) unstable; urgency=medium
+
+ * Upload to unstable
+ * [5fc81d7] New upstream version 6.0.0+dfsg1
+ (Closes: #916461)
+ * [4fbf1ac] d/control: Ensure old kicad libraries will get removed
+ * [8b402af] d/README.Debian: Important version 6 information
+ * [57bcf6d] d/kicad.NEWS: Keep user notified about version 6
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 02 Jan 2022 15:20:04 +0100
+
+kicad (6.0.0~rc2+dfsg1-2) experimental; urgency=medium
+
+ * [78bd51c] d/control: Enable architecture powerpc and ppc64 (again)
+ + Support for both platforms were added upstream several months ago.
+ (Closes: #1002629)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 30 Dec 2021 11:34:57 +0100
+
+kicad (6.0.0~rc2+dfsg1-1) experimental; urgency=medium
+
+ * [554a963] d/kicad.lintian-overrides: Update tag name due renaming
+ + The previous used lintian tag 'binary-without-manpage' was renamned to
+ 'no-manual-page'.
+ * [8baf23a] d/gbp.conf: Ignore the upstream GitLab CI pipeline
+ + Filter out any files named '.gitlab-ci.yml' that would trigger pipelines
+ on Salsa thta can't work.
+ * [1153d7b] New upstream version 6.0.0~rc2+dfsg1
+ * [27b86ce] d/kicad.lintian-overrides: Update tag name due renaming
+ + One more tag that was renamed, 'non-dev-pkg-with-shlib-symlink' is now
+ called 'link-to-shared-library-in-wrong-package'.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 19 Dec 2021 09:48:18 +0100
+
+kicad (6.0.0~rc1+dfsg1-1~exp1) experimental; urgency=medium
+
+ * [bd7a6c0] New upstream version 6.0.0~rc1+dfsg1
+ * [384907f] d/kicad.install.in: Install also new schemas related data
+ + The plugin and content manager (PCM) feature uses the folder
+ /usr/share/kicad/schemas to provide JSON files to configure this new
+ option.
+ * [ac0ba22] d/copyright: Update due updated upstream modifications
+ * [03246e0] d/control: Use branch debian/experimental in Vcs-*
+ * [070b8c9] d/*: Exchange various old homepage references for kicad-pcb.org
+ (Closes: #997958)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 20 Nov 2021 20:15:37 +0100
+
+kicad (6.0.0~20211007.57c7d66+dfsg1-1) experimental; urgency=medium
+
+ * [5f82e7b] New upstream version 6.0.0~20211007.57c7d66+dfsg1
+ + Use a snapshot version from 2021-10-07 as upstream version.
+ * [2182525] Rebuild patch queue from patch-queue branch
+ + renamed and modified patch:
+ fixes/Modifying-the-Exec-cmd-in-the-desktop-files.patch
+ -> debian/patches/fixes/Adjusting-content-in-the-desktop-files.patch
+ + removed patch (fixed upstream):
+ fixes/Appdata-Add-missing-desktop-entry.patch
+ * [0592d41] d/control: increase Standards-Version to 4.6.0
+ + No further changes needed.
+ * [1981eb7] d/copyright: Updating due upstream modifications
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 07 Oct 2021 08:35:02 +0200
+
+kicad (6.0.0~20210815.4852177+dfsg1-1) experimental; urgency=medium
+
+ * [6e326b0] New upstream version 6.0.0~20210815.4852177+dfsg1
+ + Use a snapshot version from 2021-08-15 as upstream version.
+ * [3fb49dc] rebuild patch queue from patch-queue branch
+ + modified patch:
+ fixes/Modifying-the-Exec-cmd-in-the-desktop-files.patch
+ * [2876609] d/copyright: Update due updated upstream modifications
+ * [ebed16f] d/u/metadata: Add basic metadata information
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 15 Aug 2021 11:16:53 +0200
+
+kicad (6.0.0~20210702.eff75b6+dfsg1-1) experimental; urgency=medium
+
+ * [2b65b01] New upstream version 6.0.0~20210702.eff75b6+dfsg1
+ + Use a snapshot version from 2021-07-02 as upstream version.
+ * [7d8d08d] d/copyright: Update due updated upstream modifications
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 02 Jul 2021 13:38:53 +0200
+
+kicad (6.0.0~20210602.6919d12+dfsg1-1) experimental; urgency=medium
+
+ * [cfea635] New upstream version 6.0.0~20210602.6919d12+dfsg1
+ + Use a snapshot version from 2021-06-02 as upstream version.
+ * [79ac6ab] rebuild patch queue from patch-queue branch
+ + modified patches:
+ reproducibility/add-field-revdate-to-asciidoc-files-of-documentation.patch
+ * [95156f3] d/rules: Remove non existing *.adoc file ASCIIDOCFILES
+ + Related to the needed adjustment of the patch queue there is also a
+ change to the list of *.adoc files needed we modify before starting the
+ build of documentation. It's simply a removal of a now non existing file.
+ * [31f0b0e] d/control: Switch to asciidoctor within Build-Depends
+ + Upstream has moved over to asciidoctor instead of using asciidoc.
+ * [6d13ce7] d/rules: Only create HTML documentation for now
+ + Within the switch to asciidoctor upstream has also changed the way the
+ PDF files are created, it's based on the NPM package asciidoctor-pdf
+ (https://www.npmjs.com/package/asciidoctor-pdf) which isn't packaged
+ in Debian. The remaining options of using dblatex or fop are
+ unfortunately broken right now.
+ * [2c5d1a3] d/kicad.{install.in,links} Adding new file
+ + Adding the newly created file usr/bin/_kipython.kiface to the kicad
+ binary package.
+ * [6ef4b09] d/copyright: Update due updated upstream modifications
+ * [edc4118] doc-base: Remove references to PDF files
+ + Remove any PDF references within the doc-base definitions, we don't
+ build any PDF based documentation currently.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 03 Jun 2021 11:45:42 +0200
+
+kicad (6.0.0~20210502.6b9e44e+dfsg1-1) experimental; urgency=medium
+
+ * [ba72b1d] New upstream version 6.0.0~20210502.6b9e44e+dfsg1
+ + New snapshot version from 2021-05-02 as upstream version.
+ * [a6fa3d0] rebuild patch queue from patch-queue branch
+ + modified patches:
+ fixes/Appdata-Add-missing-desktop-entry.patch
+ fixes/Modifying-the-Exec-cmd-in-the-desktop-files.patch
+ * [7a20d3f] d/kicad.install.in: Adjust install of kicad.metainfo.xml
+ + The metainfo file is now installed by upstream into the correct folder,
+ no need to move the file between folders.
+ * [8a5a77b] d/copyright: Update of org.kicad.kicad.metainfo.xml.in
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 02 May 2021 18:04:25 +0200
+
+kicad (6.0.0~20210410.4c9f7c4+dfsg1-1) experimental; urgency=medium
+
+ * [618900e] d/gbp.conf: remove component i18n
+ + The UI localization for KiCad was handled previously as a dedicated
+ component tarball. Starting with version 5.99.0 the i18n stuff is now
+ included within the main tarball, thus we don't need to work with a
+ component tarball any more.
+ * [b85bbb5] New upstream version 6.0.0~20210410.4c9f7c4+dfsg1
+ + Use a snapshot version from 2021-04-10 as upstream version.
+ * [594960a] rebuild patch queue from patch-queue branch
+ + modified patches:
+ fixes/Appdata-Add-missing-desktop-entry.patch
+ + modified and renamed patch:
+ fixes/Modifing-the-Exec-cmd-in-the-desktop-files.patch -->
+ fixes/Modifying-the-Exec-cmd-in-the-desktop-files.patch
+ + removed patch:
+ fixes/spelling-fix-allows-to-allows-one-to.patch
+ * [bbd8bfb] d/rules: Remove CMake option for GitHub Plugin
+ + The integration of managing GitHub repositories as symbols or
+ footprints has been removed. So removing the old cmake config option
+ accordingly.
+ * [592d791] d/rules: Set build of i18n and demos explicitly on
+ + Even if this option is set default to on, this can change due decisions
+ by upstream. We always want to build and install the i18n things, so
+ being better explicit on this.
+ * [3c63d5e] d/rules: Install i18n files into useful folder
+ + The cmake configuration doesn't set the FHS conform installation folder
+ for the compiled i18n message catalogs so we need to set this option.
+ * [34a11a0] d/rules: Be more explicit while modify the version string
+ + We want to use the Debian version within the version information instead
+ of a upstream combined version string. The configuration variable to
+ inject the version into the UI has been modified so we need to adjust
+ our version replacement.
+ * [e61b38c] d/rules: Remove old i18n build and install stuff
+ + Due the now included i18n stuff inside the source of KiCad we can drop
+ all previously dedicated added build instructions inside debian/rules.
+ * [ab91cba] d/control: Adding new required packages for the build
+ + The build requires now the packages 'libgtk-3-dev' and
+ 'libpython3-all-dev' to be around.
+ * [1a1af8e] d/control: Increase required kicad version >= 6.0.0~
+ + Increase the depending and suggested version for kicad and additional
+ kicad-* packages to at least 6.0.0~.
+ * [ac9f8fc] d/kicad-demos.install: Adjust files to install
+ + Reflect the now added demo project 'stickhub' and changed file extension
+ for project files in the kicad-demos package.
+ * [3d81ce1] d/kicad.install.in: Adding new additional folder to install
+ + All used icons within the UI are taken now from a file 'images.tar.gz'
+ at runtime, adding the installation of the folder for that file.
+ * [3d366fc] d/rules: Remove any *.md files from installed demos folder
+ * [57ec31c] d/copyright: Update due updated upstream modifications
+ + Updating the copyright information as the source structure has been
+ changed for various parts of the source code and contributors.
+ * [a12125e0] d/kicad.lintian-overrides: Remove entries not needed any more
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 10 Apr 2021 15:31:39 +0200
+
+kicad (5.99.0+really5.1.12+dfsg1-1) unstable; urgency=medium
+
+ * [f955904] New upstream version 5.99.0+really5.1.12+dfsg1
+ * [bce8381] d/control: Point to branch debian/sid in field Vcs-Git
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 05 Nov 2021 19:28:47 +0100
+
+kicad (5.99.0+really5.1.11+dfsg1-1) unstable; urgency=medium
+
+ * [ca676b1] d/*: Exchange various old homepage references for kicad-pcb.org
+ (Closes: #997958)
+ * [8e0e28a] d/gbp.conf: Ignore the upstream GitLab CI pipeline
+ * [a765de2] New upstream version 5.99.0+really5.1.11+dfsg1
+ * [37e3c18] d/control: Increase Standards-Version to 4.6.0
+ * [a54b3d1] d/copyright: Update information due release of 5.1.11
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 31 Oct 2021 19:38:59 +0100
+
+kicad (5.99.0+really5.1.10+dfsg1-1) unstable; urgency=medium
+
+ * [f3299a5] New upstream version 5.99.0+really5.1.10+dfsg1
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Tue, 27 Apr 2021 21:34:34 +0200
+
+kicad (5.99.0+really5.1.9+dfsg1-1) unstable; urgency=medium
+
+ * [8ba5d7b] New upstream version 5.99.0+really5.1.9+dfsg1
+ + Due some inglorious mistake by me I mixed up the upload that was
+ targeted to experimental but unfortunately was made into unstable.
+ To keep the version in unstable based on the current upstream stable
+ version series this new upload is needed.
+ As the version for the new upload needs to be greater than the previous
+ one and I wanted to not use a epoch finally the suffix 'really5.1.9' is
+ used to show that this version is *really* the previous old version 5.1.9!
+ That suffix will get removed once we have reached some 6.x.x version.
+ (Closes: #986455)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 10 Apr 2021 07:46:05 +0200
+
+kicad (5.1.9+dfsg1-1) unstable; urgency=medium
+
+ * [0802fbc] d/watch: update watch file to capture GitLab source
+ * [d7cfe17] d/control: increase Standards-Version to 4.5.1
+ + No further changes needed.
+ * [913659b] New upstream version 5.1.9+dfsg1
+ * [35f735f] rebuild patch queue from patch-queue branch
+ + modified patches:
+ fixes/Modifing-the-Exec-cmd-in-the-desktop-files.patch
+ * [78d671c] d/copyright: small update due removed folder
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 23 Dec 2020 19:51:45 +0100
+
+kicad (5.1.8+dfsg1-1) unstable; urgency=medium
+
+ * [56accba] New upstream version 5.1.8+dfsg1
+ * [118ef3c] rebuild patch queue from patch-queue branch
+ + added patch:
+ fixes/Appdata-Add-missing-desktop-entry.patch
+ * [01f080b] kicad-demos.install: split of installation
+ + Install the shape1.txt file from kicad-demos into
+ /usr/share/doc/kicad-demos.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 31 Oct 2020 12:58:23 +0100
+
+kicad (5.1.7+dfsg1-1) unstable; urgency=medium
+
+ * [7e58f43] New upstream version 5.1.7+dfsg1
+ * [07e89fe] autopkg: mark current test superficial
+ + The current only used autopkgtest is simply trying to import the Python3
+ module of kicad but is nothing doing anything further. This ensures we
+ can load the module, but at all it is just a superficial check.
+ * [f4a9cf3] d/kicad.install.in: remove no longer available file
+ + kicad-ogltest isn't built any more and so we can't install this any
+ longer.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 27 Sep 2020 10:36:57 +0200
+
+kicad (5.1.6+dfsg1-1) unstable; urgency=medium
+
+ * [9b510bb] d/control: Remove transitional package kicad-common
+ + kicad-common is replaced by kicad-libraries, the transition of these
+ two packages was done within the Debian buster release. We can drop now
+ the old -common package for real.
+ * [fdd52e9] d/copyright: update upstream source for KiCad app
+ + Some source code resources of the KiCad project have been changed since
+ the project has moved to GitLab, update the information within the
+ copyright file.
+ * [a77b08e] d/copyright: update years on contributors
+ + The annual update for various parts of the source code and contributors.
+ * [b98cb97] dh: move to dh-compat 13
+ + Increasing the debhelper version to 13 as this is the most recent
+ version.
+ * [a300c96] New upstream version 5.1.6+dfsg1
+ * [2aed90b] d/control: adding Rules-Requires-Root to source section
+ * [d2e5861] d/rules: More split off into arch/indep targets
+ + Moving to dh 13 requires more separation of the -arch and -indep targets.
+ dh_missing is now also more picky about files that are installed by the
+ upstream build system but not into one of the binary packages.
+ Due the ongoing Python2 removal in bulleseye we currently don't want to
+ install the files
+ usr/share/doc/kicad/scripts/lib_convert.py
+ usr/share/doc/kicad/scripts/test_plugin.py
+ usr/share/doc/kicad/scripts/test_kicad_plugin.py
+ usr/share/doc/kicad/scripts/ddr3_length_match.py
+ as these are not Python3 ready.
+ * [49139de] d/watch: Adjust used resource onto GitLab
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 13 May 2020 20:41:22 +0200
+
+kicad (5.1.6~rc1+dfsg1-1) unstable; urgency=medium
+
+ * [1e1aecc] New upstream version 5.1.6~rc1+dfsg1
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 17 Apr 2020 22:14:53 +0200
+
+kicad (5.1.6~20200411+dfsg1-1) experimental; urgency=medium
+
+ * [7f9e64d] New upstream version 5.1.6~20200411+dfsg1
+ + Snapshot from 11th April 2020 from the KiCad 5.1 branch from
+ commit ID 305ed0b.
+ * [b80db87] rebuild patch queue from patch-queue branch
+ + removed patch
+ debian-hacks/Removing-hyphen-inside-KICAD_FULL_VERSION.patch
+ * [7eae5b3] d/control: increase Standards-Version to 4.5.0
+ + No further changes needed.
+ * [5e454a1] d/control: update upstream URL to use https
+ + The project homepage is now also available by https.
+ * [f3a592d] d/rules: substitute KICAD_VERSION with DEB_VERSION
+ + Upstream is using a mechanism that allows one to append some extra
+ string onto the given string KICAD_VERSION. But this is not allowing any
+ modification of KICAD_VERSION itself. This makes it impossible to place
+ a given full Debian version into the application in case we don't build
+ on top of a tagged upstream version. Like here for this snapshot release.
+ Stop using EXTRA_VERSION and replace KICAD_VERSION right before the
+ build.
+ * [51c07e3] d/copyright: small update due renamed file
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 11 Apr 2020 12:09:16 +0200
+
+kicad (5.1.5+dfsg1-2) unstable; urgency=medium
+
+ * [c57214d] build against upstream Opencasacde (OCC) libraries
+ + Libraries from the Open CASCADE Technology company are more up to date
+ than the previously used libraries from the Community edition (OCE).
+ By the newer libraries versions KiCad is participating from more and
+ better 3D functionalities.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 21 Nov 2019 16:50:13 +0100
+
+kicad (5.1.5+dfsg1-1) unstable; urgency=medium
+
+ [ Ian McInerney ]
+ * [b41c0a7] kicad: Pass NDEBUG into CXXFLAGS to disable assertions
+
+ [ Carsten Schoenert ]
+ * [84057fa] d/control: remove libboost-context-dev from B-D
+ + This B-D isn't needed anymore as upstream has added the relevant
+ source code parts locally. By this we can build the KiCad packages
+ also on mips64el again.
+ (Closes: #943590)
+ * [204c6f3] Revert "d/control: adding clang to Build-Depends"
+ + Clang isn't performing well on mips*. Especially the linker on
+ mips64el is failing.
+ * [a8aa287] Revert "d/rules: setting the clang compiler explicitly"
+ + Using again the default values for DCMAKE_C{,XX}_COMPILER, means let
+ the cmake configure run detect the compiler.
+ * [7451345] d/control: increase B-D version on libglm-dev to 0.9.9.6-1
+ + As we want to use GCC as compiler again we need GLM in version
+ 0.9.9.6 or greater.
+ * [be77337] d/control: add misp64el as build arch again
+ + By dropping the B-D on libboost-context-dev we can now enable again
+ the architecture mips64el as supported platform again.
+ * [c28fd9d] Python2 removal: drop B-D libpython-stdlib
+ + This removes the last outstanding direct B-D on Python2.
+ (Closes: 936792)
+ * [468259c] New upstream version 5.1.5+dfsg1
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 18 Nov 2019 06:52:48 +0100
+
+kicad (5.1.4+dfsg1-2) unstable; urgency=medium
+
+ [ Eugene Kilachkoff ]
+ * [d509c04] kicad: correct Python wxgtk dependency
+ + Since the move over to build and link kicad against wxpython4 / Phoenix
+ we didn't have updated the dependency on wxpython4 for the kicad binary.
+
+ [ Carsten Schoenert ]
+ * [ef511df] d/control: increase Standards-Version to 4.4.1
+ + No further changes needed.
+ * [c9e9e6b] dh: move over to debhelper-compat
+ * [616e4e1] kicad: install one more file
+ + Install also the new builded file kicad-ogltest.
+ * [406bcb9] Lintian: update entries for package kicad
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 12 Oct 2019 17:49:59 +0200
+
+kicad (5.1.4+dfsg1-1) unstable; urgency=medium
+
+ * [efe5b4e] d/copyright: correct reference on GPL-2
+ * [37450d5] New upstream version 5.1.4+dfsg1
+ * [7ee10e2] rebuild patch queue from patch-queue branch
+ + removed patch:
+ fixes/Workaround-failing-Eeschema-Chinese-PDF-generation.patch
+ * [512a248] kicad.lintian-overrides: small update on the overrides
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 09 Aug 2019 17:17:33 +0200
+
+kicad (5.1.3+dfsg1-2) unstable; urgency=medium
+
+ * [0067eec] d/copyright: update due also new files / folder
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 01 Aug 2019 19:20:42 +0200
+
+kicad (5.1.3+dfsg1-1) unstable; urgency=medium
+
+ * [eeaa4f0] d/control: fix language in long desc for kicad-doc-id
+ (Closes: #929688)
+ * [45c1c57] d/control: re-add architecture ppc64el
+ (Closes: #923713)
+ * [9832569] d/control: increase Standards-Version to 4.4.0
+ + No further changes needed.
+ * [c175651] New upstream version 5.1.3+dfsg1
+ (Closes: #926577, #927328, #931258)
+ * [bbcd6cc] rebuild patch queue from patch-queue branch
+ + added patch:
+ fixes/Workaround-failing-Eeschema-Chinese-PDF-generation.patch
+ * [274cdff] d/copyright: small update due removed file
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 28 Jul 2019 19:23:17 -0300
+
+kicad (5.1.2+dfsg1-1) unstable; urgency=medium
+
+ * [7bb2a89] d/copyright: correct the license for kicad.appstream.xml
+ * [ccda3ca] New upstream version 5.1.2+dfsg1
+ * [fd774f7] rebuild patch queue from patch-queue branch
+ + added patch:
+ fixes/Fix-dblatex-options-within-cmake-file.patch
+ + removed patch (already included upstream):
+ debian-hacks/Update-Japanese-translation-700.patch
+ * [00e79ae] Revert "kicad-doc: split docu build into two runs"
+ + We can revert the modification for building the documentation which
+ was added for version 5.1.0+dfsg1-1 because the added patch for fixing
+ the dblatex options solves the build issues.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 29 Apr 2019 21:21:44 +0200
+
+kicad (5.1.0+dfsg1-1) unstable; urgency=medium
+
+ * [f91d5c6] New upstream version 5.1.0+dfsg1
+ * [cf6caf7] d/kicad-doc-en.doc-base: add new installed file
+ * [3b2adfc] d/control: adjust kicad-doc-en description
+ * [021773c] d/kicad-doc-it.doc-base: add new installed file
+ * [0f3a4f6] d/control: adjust kicad-doc-it description
+ * [9d673f9] d/kicad-doc-ru.doc-base: add new installed file
+ * [e3dfd86] d/control: adjust kicad-doc-ru description
+ * [4b89fe1] d/kicad-doc-zh.doc-base: add new installed files
+ * [0a57578] d/control: adjust kicad-doc-zh description
+ * [a25975a] d/copyright: update small misc data
+ * [7db2e8d] rebuild patch queue from patch-queue branch
+ + removed patch (useless due the newly added patch):
+ debian-hacks/Remove-specific-Japanese-translation-within-pcbnew.adoc.patch
+ added patch:
+ debian-hacks/Update-Japanese-translation-700.patch
+ * [33cd8fb] kicad-doc: split docu build into two runs
+ + Work around a broken build of the KiCad documentation which seems to
+ happen otherwise due some internal CMake build configuration issue which
+ mixes the build of the Polish EEschema with the dblatex used XML style
+ sheets which are used for Japanese.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 20 Mar 2019 21:52:26 +0100
+
+kicad (5.1.0~rc1+20190224+dfsg1-1) experimental; urgency=medium
+
+ * [9753ede] New upstream version 5.1.0~rc1+20190224+dfsg1
+ + Snapshot from 24th February 2019 from the KiCad master branch from
+ commit ID 30612ca.
+ * [b10b8f4] d/kicad-doc-zh.doc-base: add new installed files
+ + Documentation for Chinese now includes files for EEschema and Getting
+ started in KiCad (GSiK).
+ * [7458dc7] d/control: adjust kicad-doc-zh description
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 24 Feb 2019 10:49:13 +0100
+
+kicad (5.1~rc1+dfsg1-1) experimental; urgency=medium
+
+ * [bb3b42f] New upstream version 5.1~rc1+dfsg1
+ (Closes: #921259)
+ * [ad86f08] d/control: adding clang to Build-Depends
+ * [86ed0bc] d/rules: setting the clang compiler explicitly
+ + Due the version 0.9.9.3 of GLM we can't use GCC for building the source
+ and need to switch over to CLang. This happen because of some different
+ interpreted C++11 Standards between GCC and CLang in GLM.
+ * [fed316f] d/copyright: small update to the copyright file
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 09 Feb 2019 09:11:10 +0100
+
+kicad (5.1~20190127.4fc692f+dfsg1-1) experimental; urgency=medium
+
+ * [a2ab50a] New upstream version 5.1~20190127.4fc692f+dfsg1
+ + Snapshot from 27th January 2019 from the KiCad master branch from
+ commit ID 4fc692f.
+ * [b50c400] d/control: no Dutch documentation will get build any more
+ + The Dutch translation of the KiCad documentation was removed by
+ upstream so removing the respective package in Debian too, the
+ translation wasn't maintenanced in any way.
+ * [cbeecae] d/copyright: small update to the copyright file
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 27 Jan 2019 11:32:57 +0100
+
+kicad (5.1~20190114.a0a4e5e+dfsg1-1) experimental; urgency=medium
+
+ * [597c5e5] d/gbp.conf: adjust to debian/experimental
+ + Update configuration for git-buildpackage so it acts on the correct
+ folders and branches.
+ * [7f68717] New upstream version 5.1~20190114.a0a4e5e+dfsg1
+ + Snapshot from 14th January 2019 from the KiCad master branch from
+ commit ID a0a4e5e.
+ * [654f720] rebuild patch queue from patch-queue branch
+ + removed patch (applied upstream)
+ fixes/Add-German-translations-entries-to-appdata.xml.patch
+ + added patch:
+ fixes/spelling-fix-allows-to-allows-one-to.patch
+ * [ab28ad4] d/rules: (re)enable SCRIPTING_WXPYTHON{,-PHOENIX}
+ + Turn on again the compile option for SCRIPTING_WXPYTHON and also adding
+ an new option for SCRIPTING_WXPYTHON_PHOENIX so the build will use
+ wxpython4.0 functions.
+ * [e86dd61] d/rules: use Python3 for scripting interface
+ + Switch on the option for using Python3 mostly everywhere inside KiCad.
+ * [9e3dbd0] d/rules: prefer OCE over OCC for OpenCASCADE support
+ + Due changes within the build environment of KiCad we need to use this
+ compile option explicitly now for using OCE.
+ * [ecaa9ca] d/control: updating B-D for upcoming version 5.1
+ + As the usage and move over to GTK+3 backend is a main goal for Kicad 5.1
+ we need to switch some build dependencies like the GTK+3 version of
+ libwxgtk3.0 and wxgtk (aka wxpython4 / Phoenix). Also we need the
+ Python3 version of some packages.
+ * [f1988cd] d/rules: needed updates due move over to Python3
+ + For handling Python3 package build and installation uses dh_python3 now.
+ * [c590ec8] d/control: adjust ${python:Depends} -> ${python3:Depends}
+ + The binary package kicad includes now Python3 based files and folders so
+ we need to use ${python3:Depends} in the Depends field accordingly.
+ * [ee3db40] kicad: more minor adjustments due Python3 usage
+ + Update of the install sequencer file for the kicad package due Python3
+ files and folders now.
+ * [c9bba13] README.Debian: remove part about GTK+3 restrictions
+ + Starting with this version KiCad does not have any GTK+3 related
+ restrictions any more and we can remove this old information.
+ * [6c773b4] copyright: adopt upstream changes
+ + Update copyright information due changes within the source files.
+ * [f3d1db7] d/control: increase Standards-Version to 4.3.0
+ + No further changes needed.
+ * [d6ac004] README.source: update information
+ + Also update the information about generating the tarballs and the import
+ of them.
+ * [eac00f1] remove helper scripts no longer used or needed
+ + Remove older helper script which aren't used for a long time and never
+ will be.
+ * [86eeabd] kicad.lintian-overrides: one more entry for 'Busses'
+ + Ignore the word 'Busses' which is used in a test file.
+ * [bf2a58a] autopkgtest: update test due Python3 change
+ + Now we use Python 3 mostly everywhere. ;)
+ * [2d8d4ec] kicad: (re)adding versioned Depends for python-wxgtk3.0
+ + Due the re enabled wxPython based scripting interface we need to add
+ again the package python-wxgtk3.0 as an dependency.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 14 Jan 2019 16:34:23 +0100
+
+kicad (5.0.2+dfsg1-1) unstable; urgency=medium
+
+ * [9272615] New upstream version 5.0.2+dfsg1
+ (Closes: #911559)
+ * [967dbe4] rebuild patch queue from patch-queue branch
+ + removed patch (included upstream):
+ fixes/Use-fixed-version-for-libngspice.so.0.patch
+ + updated patch:
+ fixes/Add-German-translations-entries-to-appdata.xml.patch
+ * [3876be2] kicad: remove package python-wxgtk3.0 from Depends
+ + Remove useless dependency on python-wxgtk3.0, KiCad is build without
+ wxPython Scripting support and thus we don't need this package
+ installed.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 16 Dec 2018 09:01:15 +0100
+
+kicad (5.0.1+dfsg1-3) unstable; urgency=medium
+
+ * [7a56565] rebuild patch queue from patch-queue branch
+ + added patch:
+ fixes/Use-fixed-version-for-libngspice.so.0.patch
+ * [122f38b] d/control: adding dependency on libngspice0 library
+ (Closes: #911965)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 27 Oct 2018 09:19:43 +0200
+
+kicad (5.0.1+dfsg1-2) unstable; urgency=medium
+
+ * [736b230] circuit simulation: enable ngspice based schematic simulation
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 14 Oct 2018 11:35:57 +0200
+
+kicad (5.0.1+dfsg1-1) unstable; urgency=medium
+
+ [ Aurelien Jarno ]
+ * [281d1ac] d/kicad.install.in: add kicad2step (Closes: #909136)
+
+ [ Carsten Schoenert ]
+ * [62e6675] New upstream version 5.0.1+dfsg1
+ (Closes: #909282)
+ * [184212a] rebuild patch queue from patch-queue branch
+ + removed patches (fixed upstream):
+ fixes/Adjust-RTree-default-floating-point-to-use-double.patch
+ * [0204625] d/control: increase Standards-Version to 4.2.1
+ + No further changes needed.
+ * [572f318] d/control: mark kicad-common as Multi-Arch: foreign
+ * [80e5a1d] d/copyright: small adjustment due upstream change
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 12 Oct 2018 18:46:55 +0200
+
+kicad (5.0.0+dfsg1-2) unstable; urgency=medium
+
+ * [93df210] d/copyright: add info about appdata.xml
+ * [0d2d642] d/kicad.install.in: also install file kicad.appdata.xml
+ * [d93a835] rebuild patch queue from patch-queue branch (Closes: #905221)
+ + added patches:
+ fixes/Add-German-translations-entries-to-appdata.xml.patch
+ fixes/Adjust-RTree-default-floating-point-to-use-double.patch
+ + modified patch:
+ fixes/Modifing-the-Exec-cmd-in-the-desktop-files.patch
+ * [60bb5ea] d/rules: remove the deletion of cvpcb.desktop
+ + This desktop file was added by the patch queue but later deleted by
+ debian/rules. As the patch queue was cleaned on this we don't need the
+ deletion in debian/rules any more.
+ * [d3f7c9d] d/rules: drop libs3d_plugin_oce library from dh_shlibdeps
+ + Due the switch to the OCE suite we need to ensure dh_shlibdeps is also
+ taking account into the library libs3d_plugin_oce while collecting the
+ symbols from the needed libraries. Removing the libraries from the
+ exclusion.
+ (Closes: #905605)
+ * [9e823f6] d/control: mark kicad-libraries as Multi-Arch: foreign
+ * [9f7234e] d/control: increase Standards-Version to 4.2.0
+ + No further changes needed.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 20 Aug 2018 18:44:29 +0200
+
+kicad (5.0.0+dfsg1-1) unstable; urgency=medium
+
+ * [ebb652c] New upstream version 5.0.0+dfsg1
+ (Closes: #903992)
+ * [92686c6] rebuild patch queue from patch-queue branch
+ + removed patches:
+ fixes/fix-misspelled-Toogle-Toggle.patch
+ fixes/fix-misspelled-allow-to-allow-one-to.patch
+ fixes/fix-misspelled-allows-to-allows-one-to.patch
+ fixes/fix-misspelled-an-other-another.patch
+ All patches are applied upstream.
+ * [bc6a355] Revert "lintian-overrides: ignore some patch queue patches"
+ + The lintian override isn't needed anymore due the changed patch queue.
+ * [e900771] d/control: remove pandoc as B-D
+ + For building the documentation the pandoc package isn't needed anymore.
+ * [c1e20a2] d/README.Debian: extend some more thing for KiCad 5
+ + Adding some more information about the changes which are introduced by
+ the new KiCad major version.
+ * [d74a414] d/kicad.NEWS: adding a NEWS information for kicad
+ + Adding also a NEWS file for the kicad package so user get a more visible
+ announcement about the changes that take also a notable effect on the user
+ side.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 23 Jul 2018 16:09:57 +0800
+
+kicad (5.0.0~rc3+dfsg1-2) unstable; urgency=medium
+
+ * [2c5ba31] d/control: adjust kicad-doc-de description
+ * [54b0227] d/kicad-doc-de.doc-base: add new installed files
+ + Refresh the entries about the German documentation files within the
+ doc-base sequencer and also within the package description.
+ * [35b0f9b] d/control: adjust kicad-doc-en description
+ + Dito for the English documentation related files.
+ * [aa6d6bb] d/control: adjust kicad-doc-ja description
+ * [b90d73e] d/kicad-doc-ja.doc-base: add new installed files
+ + And also for Japanese.
+ * [8f20697] d/control: adjust kicad-doc-ru description
+ * [a397cf7] d/kicad-doc-ru.doc-base: add new installed files
+ + Also the Russian files did get some updates.
+ * [d8c80e4] Adding entries and dh sequencer for Indonesian docu
+ + The Indonesian documentation got extended and is now re-added.
+ * [6f883c7] Adding entries and dh sequencer for Chinese docu
+ + The Chinese documentation is new and added by this commit.
+ * [e43e930] rebuild patch queue from patch-queue branch
+ + Adding some patches about fixing spelling issues.
+ * [c37d816] lintian-overrides: ignore some patch queue patches
+ * [5fc6dfb] link README-bom.txt from /u/s/d/kicad
+ + The Readme file about the *.txt, *.py and *.xsl files for the plugins
+ is now placed within the /u/s/d/kicad folder but also linked within the
+ plugin folder.
+ * [4fddc71] d/kicad.install.in: fix install of 3d plugin
+ + We dropped the 3D plugin installation by the last upload and 3D models
+ aren't visible by this anymore. Corrected with this commit.
+ (Closes: #903291)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 09 Jul 2018 16:46:59 +0200
+
+kicad (5.0.0~rc3+dfsg1-1) unstable; urgency=medium
+
+ * [2500209] debian/watch: catch also RC versions correctly
+ + The watch file didn't detected the RC versions correctly due missed
+ usage of uversionmangle. Also switch to version 4.
+ * [5365fcd] New upstream version 5.0.0~rc3+dfsg1
+ * [1243924] rebuild patch queue from patch-queue branch
+ + removed patch:
+ fixes/Set-ViewBBox-to-viewitem-size.patch
+ * [72acf81] debian/control: adding B-D on texlive-lang-chinese
+ + A basic translation to Chinese is now available from upstream that needs
+ a extension of the Build-Depends field. The created Chinese
+ documentation files will be added in a later version.
+ * [cc1d3ad] debian/control: increase Standards-Version to 4.1.5
+ + No further changes needed.
+ * [59c6649] debian/kicad.install.in: adjust install folders
+ + The content of the plugins folder is now correctly installed into
+ /usr/share/kicad/plugins by upstream, adjust this in the sequencer file.
+ * [458f26d] debian/copyright: small adjustment due upstream change
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 05 Jul 2018 21:24:17 +0200
+
+kicad (5.0.0~rc2+dfsg1-3) unstable; urgency=medium
+
+ * [6a38e45] rebuild patch queue from patch-queue branch
+ + added patch:
+ fixes/Set-ViewBBox-to-viewitem-size.patch
+ Cherry-picked from the current upstream development to fix a segfault
+ that was happen on i386 in the pcbnew application.
+ (Closes: #896706)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 06 Jun 2018 20:17:52 +0200
+
+kicad (5.0.0~rc2+dfsg1-2) unstable; urgency=medium
+
+ * rebuild for unstable
+ (Closes: #897100)
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Thu, 31 May 2018 07:27:13 +0200
+
+kicad (5.0.0~rc2+dfsg1-1) experimental; urgency=medium
+
+ * [3fedd8b] copyright: explain why we need to add 'dfsg' suffix
+ + From the Debian POV KiCad isn't fully free as upstream is shipping
+ currently two PDF files without the sources. But there won't be ever
+ sources for these files available, the files in question are from
+ UltraCAD Inc. and they never will release the source for rebuilding the
+ PDF files. We have removed the files to comply with the DFSG and this
+ fact is added to the copyright file.
+ * [85fb53b] New upstream version 5.0.0~rc2+dfsg1
+ * [98f1ced] rebuild patch queue from patch-queue branch
+ + added patch:
+ debian-hacks/Remove-specific-Japanese-translation-within-pcbnew.adoc.patches
+ + removed patches (applied upstream):
+ fixes/fix-misspelled-Allows-to-Allows-one-to.patch
+ fixes/fix-misspelled-allows-to-allows-one-to.patch
+ fixes/fix-misspelled-an-other-another.patch
+ * [50740a0] Revert "d/control: Build-Depend on libwxgtk3.0-gtk3-dev"
+ + The added build dependency on libwxgtk3.0-gtk3-dev was added to get
+ KiCad build against GTK3+ bindings but KiCad isn't fully ready and
+ prepared to use the GTK3+ stuff so we need to go back to libwxgtk3.0
+ with binding of GTK2+.
+ * [9fe8b7e] debian/rules: turn off support of SCRIPTING_WXPYTHON
+ + The scripting support engine needs wxpython which is currently only
+ available with GTK3+ bindings. So if we turn on scripting support we
+ will get a reverse dependency on libwxgtk3.0-gtk3 through wxpython.
+ This would result again in used GTK3+ symbols inside the KiCad binaries
+ and bring back the issues we had.
+ (Closes: #895801, #899215, #899216)
+ * [65826c8] debian/control: increase Standards-Version to 4.1.4
+ + No further changes needed.
+ * [f8389c2] debian/control: adjust field Maintainer due domain change
+ + The contact email address for the Debian Electronics Group has changed
+ to pkg-electronics-devel@alioth-lists.debian.net.
+ * [4251c7d] copyright: adopt upstream changes
+ + Due the upstream changes to the source we need to adopt the copyright
+ information.
+ * [30f2e7a] README.Debian: adding hints about GTK3+ issues
+ + Have a look into /us/s/d/k/README.Debian.gz to see some explanation why
+ the kicad package isn't using GTK3+ bindings of wxWidgets.
+ * [41c2de1] autopkg: adding again some auto testing stuff
+ + Let's add again some automatic testing for the kicad package.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 26 May 2018 13:15:07 +0200
+
+kicad (5.0.0~rc1+dfsg1+20180318-3) experimental; urgency=medium
+
+ * [35b932c] kicad: adding versioned Depends for python-wxgtk3.0
+ + To get sure users get a valid combination of python-wxgtk3.0 and
+ libwxgtk3.0-gtk3-0v5 adding strict version dependency on python-wxgtk3.0.
+ * [866cd63] d/README.Debian: update README file
+ + Write down some additional information about the problems with the
+ Modern Toolset in combination with Wayland that can happen. In some
+ circumstances the usage of Pcbnew or Gerbview in a Wayland environment
+ might cause crashes of KiCad or even the Wayland session.
+ * [935f451] debian/rules: update the DEB_KICAD_CMAKE_OPTS variable
+ + Enable the Python action plugin interface to see how this is going, we
+ might see new problems related to the wxwidgets framework and GTK2/GTK3.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Tue, 10 Apr 2018 18:28:27 +0200
+
+kicad (5.0.0~rc1+dfsg1+20180318-2) experimental; urgency=medium
+
+ * [7364bba] rebuild patch queue from patch-queue branch
+ + added patches:
+ fixes/fix-misspelled-Allows-to-Allows-one-to.patch
+ fixes/fix-misspelled-allows-to-allows-one-to.patch
+ fixes/fix-misspelled-an-other-another.patch
+ * [783a915] d/control: Build-Depend on libwxgtk3.0-gtk3-dev
+ + The wxwidgets3.0 package has introduced dedicated packages for GTK3, using
+ the new dev package on this so we get the correct GTK3 bindings.
+ (Closes: #895008)
+ * [756ff4d] debian/kicad.lintian-overrides: rework the entries
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 08 Apr 2018 12:55:58 +0200
+
+kicad (5.0.0~rc1+dfsg1+20180318-1) experimental; urgency=medium
+
+ * [fcfaee0] kicad-demos: adjusting B+R against previous kicad{-common} pkg
+ + Like for done for the virtual package kicad-libraries the package
+ kicad-demos also need a valid Breaks and Replace against the now
+ transitional package kicad-common so dpkg isn't complaining about files
+ which appears to be within two different packages.
+ (Closes: #892708)
+ * [12fa90d] kicad-libraries: remove Recommends on kicad-common
+ + Of course we won't recommending a now transitional package.
+ * [08bc66e] New upstream version 5.0.0~rc1+dfsg1+20180318
+ * [0a2d284] rebuild patch queue from patch-queue branch
+ + removed patches (applied upstream)
+ fixes/fix-misspelled-Appearence-Appearance.patch
+ fixes/fix-misspelled-Modifed-Modified.patch
+ fixes/fix-misspelled-Occassionally-Occasionally.patch
+ fixes/fix-misspelled-Unkown-Unknown.patch
+ fixes/fix-misspelled-accesing-accessing.patch
+ fixes/fix-misspelled-neeeded-needed.patch
+ fixes/fix-misspelled-occured-occurred.patch
+ fixes/fix-misspelled-streching-stretching.patch
+ * [8cfc758] debian/control: limit build to amd64, arm64, armhf and i386
+ + Unfortunately upstream is using a own libcontext implementation of
+ boost::context. This is decreasing the platforms KiCad can be build
+ on to i386, amd64, armhf and arm64.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 19 Mar 2018 19:11:39 +0100
+
+kicad (5.0.0~rc1+dfsg1-1) experimental; urgency=medium
+
+ * [ea0c219] override_dh_auto_install: use find/loop for chmod of files
+ + The shell (on the buildd's) on kFreebSD doesn't support wildcards in make
+ calls, but we can call chmod here within a 'for i in foo do' loop.
+ * [0b28f22] kicad package dependencies, using Dia for visiulizing
+ + Adding a graphic made with Dia which shows the correlation of the various
+ package ecosystem of KiCad within Debian. We use this Dia graphic on the
+ wiki site https://wiki.debian.org/KiCad
+ * [5ed2d63] update of package relations
+ * [446df3f] helper: remove obsolete libraries part
+ + With KiCad 5 the libraries are now have their own source packages and we
+ don't need to collect them in helper script inside stc:kicad any longer.
+ * [6936336] make dpkg happy because previously added DIA binary file
+ + The Dia file is a binary file for dpkg, adding this file to
+ debian/source/include-binaries so dpkg does not complaining about the file.
+ * [8726cae] d/gbp.conf: also remove the libraries component here
+ * [919a5cc] New upstream version 5.0.0~rc1+dfsg1
+ (Closes: #891286, #856277, #827203, #856180, #892161)
+ * [956ed41] rebuild patch queue from patch-queue branch
+ + removed patches (not needed anymore or fixed upstream):
+ debian-hacks/Adding-needed-SVG-files-and-additinal-arrays.patch
+ fixes/Add-missing-dependency-github_plugin-pcbcommon.patch
+ fixes/Fix-FTBFS-with-Boost-1.61.patch
+ fixes/Fixing-some-spelling-issues.patch
+
+ + modified patches:
+ fixes/Modifing-the-Exec-cmd-in-the-desktop-files.patch
+ porting-kfreebsd-hurd/Fix-FTBFS-on-kFreeBSD-and-Hurd.patch
+
+ + new patches:
+ fixes/fix-misspelled-Appearence-Appearance.patch
+ fixes/fix-misspelled-Modifed-Modified.patch
+ fixes/fix-misspelled-Occassionally-Occasionally.patch
+ fixes/fix-misspelled-Unkown-Unknown.patch
+ fixes/fix-misspelled-accesing-accessing.patch
+ fixes/fix-misspelled-neeeded-needed.patch
+ fixes/fix-misspelled-occured-occurred.patch
+ fixes/fix-misspelled-streching-stretching.patch
+
+ All new patches are forwarded to upstream and already accepted.
+
+ * [8e9d6c0] debian/control: adding new build dependencies
+ + We need now some more packages to build all the binary kicad packages:
+ fonts-freefont-ttf, libboost-test-dev, libglm-dev, liboce-foundation-dev,
+ liboce-ocaf-dev
+ * [8234277] debian/rules: remove old libraries related stuff
+ + We can remove the build specific things we previously have used to build
+ the library package.
+ * [430ec11] debian/control: adjust VCS entries to salsa.debian.org
+ * [5c54b36] kicad-doc-id: remove package
+ + Unfortunately the Indonesian documentation was removed by upstream because
+ of lack of contributors.
+ * [20044b2] kicad: change package to multiarch behaviour
+ + The 3D viewer is build as a local shared library plugin and this requires
+ some modification for the correct installation of the kicad package files.
+ * [422a784] debian/rules: disable the support of ngspice based simulation
+ + For the schematic simulation we would need the libngspice library which
+ isn't available in main yet. We can turn this later on once ngspice-dfsg
+ is hitting main.
+ * [63a280f] copyright: adopt upstream changes
+ + Of course the upstream source has been modified in many places and thus
+ the update of the copyright file is needed.
+ * [7729f4d] kicad-libraries: adding new virtual package
+ + The old kicad-common package was used to provide all the various libraries
+ like the schematic symbols, footprints and the 3D models.
+ As we have moved all the source of theses stuff into own source packages
+ we don't have kicad-common now any longer as a dedicated binary package.
+ So we created a meta-packge kicad-libraries that is depending on the
+ library packages for the schematic symbols (kicad-symbols), the footprints
+ (kicad-footprints) and the project templates (kicad-templates) which
+ kicad-common is depending on because we need to take care about the
+ automatic installation of the new library packages.
+ The 3D models is not depending on kicad-libraries as this is not really
+ needed to create successful PCBs, it's suggested instead.
+ * [0a8e611] kicad-common: turn package into a virtual package
+ * [ebcd0cd] remove kicad-common sequencer files
+ * [5739a23] d/kicad.install.in: update sequencer due upstream changes
+ + kicad-common isn't a real binary package now and most of it's installation
+ parts need now move over to the kicad binary package. Also KiCad is
+ installing now some private libraries.
+ * [600079f] kicad.lintian-overrides: add some more false positives
+ + We have some spelling issues which are false positives, also the library
+ libkicad_3dsg.so.2.0.0 isn't worth to get a own binary package.
+ * [4773043] debian/control: increase Standards-Version to 4.1.3
+ + No further changes are needed due version bump.
+ * [c277cc5] kicad: remove a potentially RUNPATH from Pyhton2 lib
+ + The library _pcbnew.so, which is also copied over to the Python libraries,
+ has a RUNPATH inside which shouldn't be set here. Upstream will fix this
+ in future releases.
+ * [be3e60d] kicad-demos: adding new package
+ + Beside the new schematic and footprint library related packages we also
+ split off the demo projects, they doesn't change that often but Ubuntu
+ is using already this package, so let's do it also and keep both
+ distribution the packages in sync. This is mostly to make the usage of the
+ PPA from Jean-Samuel esay for Ubuntu users.
+ * [be54a40] bump debhelper compat to version 11
+ + Jump over to the recent debhelper version, it's now already available for
+ backports so nothing special handling later will be needed,
+ * [2211a92] kicad: suggesting package kicad-packages3d
+ (Closes: #883312)
+ * [5403485] README.source: update information about source management
+ + Remove the information about the libraries. We don't handle them any
+ longer within src:kicad.
+ * [a4d8f6a] autopkg: remove the only existing autopkgtest
+ + We don't need the autopkg stuff for now, we can re-add it later if needed.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 07 Mar 2018 18:03:35 +0100
+
+kicad (4.0.7+dfsg1-1) unstable; urgency=medium
+
+ * [c306ee5] New upstream version 4.0.7+dfsg1
+ (Closes: #875942, #841539)
+ * [9ef473f] create_kicad_upstream_tarballs.sh: adjust to recent GH API
+ + Use a improved curl call to catch up all footprint related repositories
+ on GitHub. KiCad has now over 100 Repositories, but the GH API allows
+ only so query 100 per call.
+ Updating the list of repositories to download accordingly.
+ * [74df4fe] README.Debian: adding info about changes in 4.0.7
+ + Update the list of changed/moved repos, adding information about the
+ newly repositories.
+ * [05d21ad] debian/control: move Maintainer to PKG Electronics Team
+ + Let the KiCad packages move over to the PKG Electronix Team! The ML
+ there has quite a wider coverage. Remove Richard from the Uploaders.
+ Tanks go out to Richard for maintenance in the past years!
+ * [bb2e680] debian/control: increase Standards-Version to 4.0.1
+ * [e655e36] rebuild patch queue from patch-queue branch
+ + Refresh the patch queue, no functional changes.
+ * [5145b7a] debian/rules: use DEB_* variables for entries from changelog
+ + Let us use variables from /u/s/dpkg/pkg-info.mk, especially for picking
+ version and date of the package.
+ * [1addf7c] debian/copyright: reflect last changes and updates
+ * [c4e6635] kicad-doc-id.doc-base: update due added kicad i18n
+ + The manual for KiCad itself is now included for Indonesian.
+ * [1aff1fb] kicad-common: symlink more renamed footprint libraries
+ + Upstream modified again the footprint names, we need to add more symlinks
+ to let existing installation find the new repositories by the old
+ referenced name.
+ * [ea4e7d5] kicad-common.install: not installing folder /u/s/mimelnk
+ + Michael Biebl pointed to a useless installation of old mimelnk data,
+ this is cruft as it was only valid until the KDE3 desktop environment.
+ (Closes: #875527)
+ * [7a1e05a] debian/control: drop B-D on quilt
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 17 Sep 2017 10:29:35 +0200
+
+kicad (4.0.6+dfsg1-1) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [4d0ee6b] debian/rules: make dh_fixperms arch-depended (again)
+ + kicad-common is depending on python2 so we need to ensure dh_fixperms
+ for kicad-common is called within the arch-depend built.
+ * [4608380] idf2vrml.1: fix syntax of the hyphen for option '-k'
+ * [99b44a2] update footprint libraries for component tarball
+ + Upstream has renamed and also added some libraries after the release of
+ version 4.0.4. Related to the API of GitHub and more than 100
+ repositories in the KiCad organisation we need no adjust the collection
+ of the footprint libraries.
+ We still use a static list for the creation of the *.orig.tar.xz based
+ on the changed API call.
+ * [913d32a] New upstream version 4.0.6+dfsg1
+ * [4e62f6c] rebuild patch queue from patch-queue branch
+ * [9ec8227] debian/control: update B-D after upstream changes
+ * [8b0f985] adding new -doc package with Indonesian i18n
+ + A new documentation package for Indonesian is available. Currently only
+ for 'Getting Started in KiCad'.
+ * [a08cede] README.Debian: adding README for Debian specific remarks
+ * [c00487e] debian/rules: set permissions for *.kicad_mod files
+ * [9bf9f8c] kicad-common: symlink renamed footprint libraries
+ + Due the changes within the upstream source we got also different content
+ for kicad-common now. We added some symlinking to get backward
+ compatibility for existing installations and user settings.
+ (Closes: #859409, #860093)
+ * [8de0b6d] autopkg: starting first autopkg test for footprint libs
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 19 Jun 2017 09:58:21 +0200
+
+kicad (4.0.5+dfsg1-4) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [375ce2f] Revert "debian/control: decrease Architectures for arch packages"
+ + removing the arch specific decrease of the build architecture, it's
+ really not useful here (Thx Emilio & Aurelien)
+ * [b2c400d] kicad-common.lintian-overrides: ignoring Lintian
+ + kicad-common is now arch dependent, silence lintian here that is saying
+ kicad-common has only content that is indep but we relay on the python
+ package
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Wed, 25 Jan 2017 22:38:35 +0100
+
+kicad (4.0.5+dfsg1-3) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [1835f2e] debian/control: decrease Architectures for arch packages
+ + minimize the platform where kicad should be build, libboost-context-dev
+ isn't on all platforms available
+ * [4bd0315] manpages: adding missing manpages
+ * [d1b0883] debian/copyright: reflect last changes and updates
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Fri, 20 Jan 2017 21:51:15 +0100
+
+kicad (4.0.5+dfsg1-2) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [85bda23] kicad-common: make package arch-depended
+ * [e38bb91] debian/kicad.install: fix installation of man pages
+ * [1e3fc2e] override_dh_fixperms: adding mised call for dh_fixperms
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 16 Jan 2017 18:56:50 +0100
+
+kicad (4.0.5+dfsg1-1) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [cc405a8] debian/control: adding Vcs fields after creating git tree
+ * [a5b571d] rework helper script for source tarball creation
+ * [e0d8156] debian/kicad.lintian-overrides: be more flexible
+ * [f458b82] debian/rules: split dh_fixperms
+ (Closes: #847820)
+ * [dfd193b] New upstream version 4.0.5+dfsg1
+ (Closes: #851000)
+ * [47c248a] debian/rules: adjusting KICAD_FULL_VERSION
+ * [bb3ec74] rebuild patch queue from patch-queue branch
+ * [3d40398] kicad.install: re-adding the existing man pages
+ * [e0fdaa1] debian/control: split of B-D package asciidoc
+ * [774746f] debian/rules: remove build-arch specific target
+ * [3f5b978] debian/control: adding myself to the Uploaders
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 14 Jan 2017 21:45:37 +0100
+
+kicad (4.0.4+dfsg2-1) unstable; urgency=medium
+
+ [ Carsten Schoenert ]
+ * [41a2fdb] create patch-queue branch from the existing patches
+ * [22b5df9] debian/gbp.conf: adding helper config for git-buildpackage
+ * [3ea2c1d] debian/get-kicad.sh: modify script to get recent versions
+ * [eebdef9] New upstream version 4.0.4+dfsg2
+ * [3691290] debian/README.source: adjust info about gbp workflow
+ * [706c203] debian/control: wrap and sort the entries
+ * [a8f2838] place desktop file in favour of a menu files
+ * [4f033cf] kicad-doc*: adopt the documentation packages
+ * [8d7dd1a] debian/copyright: adjust copyright information
+ * [8d417ff] kicad: using the debhelper sequencer file mechanism
+ * [38470c3] kicad-common: also using debhelper sequencer files
+ * [e4be662] debian/control: adding new helper for dh_python2 support
+ * [bb84cb9] debian/watch: adjusting watch URL and filemangle
+ * [522a99e] debian/rules: enabling cmake build with some overrides
+ (Closes: #833685)
+ * [32f83db] debian/kicad.lintian-overrides: some needed overrides
+ * [1ce57ed] rebuild patch queue from patch-queue branch
+ * [182cc1a] rebuild patch queue from patch-queue branch
+ * [5eb0382] kicad: enable the BUILD_GITHUB_PLUGIN (Closes: #820261)
+ * [a200091] debian/copyright: adopt changes due libcurl support
+ * [6e43839] debian/control: adding explicit python dep for kicad-common
+ * [b96a3b7] debian/control: set Multi-Arch: foreign also on Arch: all
+ * [6e15016] rebuild patch queue from patch-queue branch
+ * [a869507] fix some buildflag hardening issues
+ * [95bb23d] rebuild patch queue from patch-queue branch
+ * [bc820d2] debian/rules: adding date from changelog to the Asciidoc files
+
+ -- Georges Khaznadar <georgesk@debian.org> Tue, 15 Nov 2016 09:20:38 +0100
+
+kicad (4.0.4+dfsg1-2) unstable; urgency=medium
+
+ * Removed the spurious dependency on libglew, which should be computed
+ automatically by debian helper scripts. Closes: #838536
+
+ -- Georges Khaznadar <georgesk@debian.org> Fri, 30 Sep 2016 14:46:55 +0200
+
+kicad (4.0.4+dfsg1-1) unstable; urgency=medium
+
+ * checked that 4.0.2+dfsg1-2~bpo8+1-1 is available. Closes: #811268
+ * modified .install files to install kicad.mo files. Closes: #819855
+ * applied Graham Inggs' patch. Closes: #834246
+ * added a Recommends: for xsltproc. Closes: #826750
+ * updated Standards-Version to 3.9.8
+ * upgraded to the last upstream version. Closes: #833777
+ * added build-dependencies on texlive-lang-cyrillic and texlive-fonts-extra
+
+ -- Georges Khaznadar <georgesk@debian.org> Wed, 11 May 2016 16:14:08 +0200
+
+kicad (4.0.2+dfsg1-4) unstable; urgency=medium
+
+ * added a dependency on python-wxgtk3.0. Closes: #816525
+
+ -- Georges Khaznadar <georgesk@debian.org> Thu, 03 Mar 2016 10:34:37 +0100
+
+kicad (4.0.2+dfsg1-3) unstable; urgency=medium
+
+ * changed the last patch according to Steven Chamberlain's proposition.
+ * added a build-dependency on libpython-stdlib, which should not harm
+ for most architectures, and might be necessary on a few ones.
+ * removed the tee commands from the build routine
+
+ -- Georges Khaznadar <georgesk@debian.org> Mon, 22 Feb 2016 17:19:10 +0100
+
+kicad (4.0.2+dfsg1-2) unstable; urgency=medium
+
+ * Added a default define: LIB_ENV_VAR = wxT("LD_LIBRARY_PATH").
+ Closes: #815247
+
+ -- Georges Khaznadar <georgesk@debian.org> Sat, 20 Feb 2016 16:59:52 +0100
+
+kicad (4.0.2+dfsg1-1) unstable; urgency=medium
+
+ * removed the obsoleted file debian/get_newest_source.sh
+ * modified debian/get-kicad.sh to download data from i18n
+ repositories, and to get kicad's core with version number 4.0.2
+ * updated to version 2.0.2
+ * created a new Makefile to compile i18n PO files
+ * fixed a mistake in bitmaps_png/CMakeLists.txt's patch : no need to
+ patch that file since files with copyright issues were replaced.
+ * added a build-dependency on gettext
+
+ -- Georges Khaznadar <georgesk@debian.org> Mon, 15 Feb 2016 15:15:34 +0100
+
+kicad (4.0.1+dfsg1-2) unstable; urgency=medium
+
+ * fixed the short package description for kicad-doc-de.
+ Closes: #813605
+ * added usr/lib/python2.7/dist-packages in d/kicad.install.
+ Closes: #813655
+
+ -- Georges Khaznadar <georgesk@debian.org> Thu, 04 Feb 2016 09:35:29 +0100
+
+kicad (4.0.1+dfsg1-1) unstable; urgency=medium
+
+ * repacked the source tarball, to withdraw files with a wrong license
+ and the .cpp files which were generated from those sources.
+ * created a new script debian/get_newest_source.sh and a file
+ debian/watch to enjoy it.
+ * modified debian/get_newest_source.sh to notify files with wrong
+ licenses.
+ * replaced files find.svg and find_replace.svg which came with wrong
+ licenses, and compiled them into cpp files.
+ * updated the URL in debian/copyright for Poly2Tri
+ * added a build-dependency on python-dev
+ * fixed the dependency on libglew1.13|libglew1.10 which prenvented
+ the installation of kicad. Closes: #807082; Closes: #805115
+ * checked that the scripts provided by Alexandre Rebert cannot
+ crash kicad's binaries any longer. Closes: #715686.
+ Closes: #716091. Closes: #716557.
+ * checked that the script to get sources does not miss
+ 'TO_SOT_Packages_SMD.pretty' neither 'TO_SOT_Packages_THT.pretty'.
+ Closes: #804614
+ * added a build-dependency on python-all
+ * modified debian/get-kicad.sh to upgrade to version 4.0.1
+ * upgraded to the new upstream version
+ * xsltproc is now invoked with --nonet; Closes: #807082
+ * verified that all .pretty files are dowloaded when the source
+ package is created. Closes: #804614
+ * added a dependency on libglew >= 1.10; Closes: #805115
+ * added compile definitions to build python scripting features,
+ as recommended at http://kicad.org/download/source/
+ * added a build-dependencies on python-wxgtk3.0-dev and swig
+ * reactivated packages kicad-doc-de and kicad-doc-es; added build
+ dependencies texlive-lang-german and texlive-langspanish.
+ * added a dependency kicad-common -> python as this package contains
+ one python script. Added --with python option to the dh call.
+
+ -- Georges Khaznadar <georgesk@debian.org> Thu, 07 Jan 2016 19:11:44 +0100
+
+kicad (4.0.0~rc1a-3) unstable; urgency=medium
+
+ * added a build-dependency on docbook-xsl; enforced a non-parallel build
+ for documents, following Simon Richter's hints. Closes: #806967
+
+ -- Georges Khaznadar <georgesk@debian.org> Sun, 06 Dec 2015 20:08:42 +0100
+
+kicad (4.0.0~rc1a-2) unstable; urgency=medium
+
+ * applied Graham Inggs' patch. Closes: #806967
+
+ -- Georges Khaznadar <georgesk@debian.org> Thu, 03 Dec 2015 18:27:16 +0100
+
+kicad (4.0.0~rc1a-1) unstable; urgency=medium
+
+ * added a dependency on libglew1.13; Closes #805115
+ * added new flags for CMAKE_OPTS in Makefile to display the correct version
+ in windows' titles.
+ * added "manually" repositories for TO_SOT_Packages_THT.pretty and
+ TO_SOT_Packages_SMD.pretty; Closes #804614
+ * remade the source package as too much files have been added for a simple
+ patch
+
+ -- Georges Khaznadar <georgesk@debian.org> Sun, 15 Nov 2015 15:58:56 +0100
+
+kicad (4.0.0~rc1-2) unstable; urgency=medium
+
+ * fixed a typo in Makefile
+ * lowered the number of dependencies (dropped the dependency on all boost
+ libs, made a list of more precise dependencies)
+ * added CPPFLAGS to CXXFLAGS (workaround explained at
+ https://wiki.debian.org/Hardening#Notes_for_packages_using_CMake)
+ * added a switch -j4 in Makefile to trigger multithreading for the main
+ build
+
+ -- Georges Khaznadar <georgesk@debian.org> Wed, 04 Nov 2015 10:48:42 +0100
+
+kicad (4.0.0~rc1-1) unstable; urgency=medium
+
+ * updated the script get-kicad.sh to download the core from Github, docs
+ and libraryes from Github. *.pretty libraries are downloaded from
+ Github too.
+ * created Makefile, doc/Makefile, library/Makefile
+ * modified d/rules, d/control, d/*.install, d/kicad.manpages
+ * written recipes to move shared libraries which were in /usr/bin/_*.kiface
+ * written recipes to choose the file fp-lib-table.for-pretty as a default
+ template
+ * written recipes to fix missing icons and to resize badly shaped 48x48
+ icons.
+ * updated the file debian/copyright
+ * the new package Closes: #795077; Closes: #770227; Closes: #783040;
+ Closes: #787983; Closes: #802973; Closes: #794311; Closes: #798966
+
+ -- Georges Khaznadar <georgesk@debian.org> Fri, 23 Oct 2015 13:17:13 +0200
+
+kicad (0.20141025+bzr4029-2) unstable; urgency=medium
+
+ * modified the description of the package for Japanese documentation.
+ Closes: #767647
+ * modified the default path to templates. Closes: #771354
+
+ -- Georges Khaznadar <georgesk@debian.org> Sat, 01 Nov 2014 19:39:30 +0100
+
+kicad (0.20141025+bzr4029-1) unstable; urgency=medium
+
+ * upgraded to the newest upstream releases for the code and the components.
+ * added a rule in d/rules to remove useless .ps files. Closes: #737933
+ * modified kicad.pro. Closes: #763683
+ * updated Standards-Version to 3.9.6
+ * added a build-dependency on unoconv
+ * added build rules to make PDF help files from sources
+ * added the package kicad-doc-ja in d/control, and files
+ d/kicad-doc-*.install, for "pt" and "ja" languages.
+
+ -- Georges Khaznadar <georgesk@debian.org> Sun, 26 Oct 2014 10:26:51 +0100
+
+kicad (0.20140622+bzr4027-3) unstable; urgency=medium
+
+ * dropped the dependency on zlib-bin, since grep shows no occurence
+ of "minizip" nor "miniunzip" in kicad's source. Closes: #761320
+
+ -- Georges Khaznadar <georgesk@debian.org> Fri, 12 Sep 2014 23:20:43 +0200
+
+kicad (0.20140622+bzr4027-2) unstable; urgency=medium
+
+ * added -DCMAKE_BUILD_TYPE=Release as a definition for cmake.
+ This does not fix every bug, but it removes dialogs about failed
+ assertions raised by wxASSERT, which are usually non-blocking,
+ as long as one decides to continue and unactivate the assert warnings.
+ Feel free to report bugs which affect user-level features.
+ Closes: #749278
+
+ -- Georges Khaznadar <georgesk@debian.org> Wed, 02 Jul 2014 22:28:01 +0200
+
+kicad (0.20140622+bzr4027-1) unstable; urgency=medium
+
+ * added a routine to creat the version string. Closes: #749308
+ * upgraded to the newest component libraries. Closes: #751994
+
+ -- Georges Khaznadar <georgesk@debian.org> Sun, 22 Jun 2014 18:29:50 +0200
+
+kicad (0.20140518+bzr4027-2) unstable; urgency=medium
+
+ * applied Samuel Thibault's patch. Closes: #749930
+
+ -- Georges Khaznadar <georgesk@debian.org> Sun, 01 Jun 2014 16:34:06 +0200
+
+kicad (0.20140518+bzr4027-1) unstable; urgency=medium
+
+ * retrieved the last upstream version, Closes: #741673, Closes: #741437
+ * upgraded some build-dependencies, libwxgtk3.0-dev, applied a part of
+ Olly Betts' patch. Closes: #741440
+ * applied Dimitris Lampridis' patch. Closes: #745705
+ * modified get-kikad.sh to make xz compressed file.
+ * added a rule to fix permissions of ja/kicad.po
+
+ -- Georges Khaznadar <georgesk@debian.org> Sun, 18 May 2014 14:59:05 +0200
+
+kicad (0.20140224+bzr4027-3.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * It FTBFS because kicad-common is arch independent.
+ Patch by Dejan Latinovic <Dejan.Latinovic@imgtec.com>.
+ Closes: #741743
+
+ -- Anibal Monsalve Salazar <anibal@debian.org> Fri, 09 May 2014 04:33:24 +0100
+
+kicad (0.20140224+bzr4027-3) unstable; urgency=medium
+
+ * taken in account Samuel Thibault's hint. Closes: #740999
+
+ -- Georges Khaznadar <georgesk@debian.org> Fri, 07 Mar 2014 11:48:29 +0100
+
+kicad (0.20140224+bzr4027-2) unstable; urgency=medium
+
+ * fixed a bug in d/rules.
+ * added a clause Conflicts: kicad-common ( << 0.20140224),
+ Closes: #740276
+ * Checked that the file Getting_Started_in_KiCad.pdf is distributed with
+ some -doc-xy packages. Closes: #691660
+
+ -- Georges Khaznadar <georgesk@debian.org> Thu, 06 Mar 2014 02:24:33 +0100
+
+kicad (0.20140224+bzr4027-1) unstable; urgency=medium
+
+ * changed the lp: repository for kicad's library in order to match active
+ repositories listed at
+ https://code.launchpad.net/kicad/+branches?field.lifecycle=ALL&field.lifecycle-empty-marker=1&field.sort_by=most+recently+changed+first&field.sort_by-empty-marker=1
+ the file debian/get-kicad.sh should be more efficient now.
+ Closes: #712259
+ * modified the script debian/clean_sourceless_pdf: more formats are allowed
+ for source files, and the search for source files is now case-insensitive.
+ names without prefixes are allowed too (they are directory names)
+ * fixed a few wrong permissions in packaged files
+ * modified the package assignation for files in usr/share/applications
+ * modified the script debian/get-kicad.sh to add a minimum set of
+ legacy footprints. Closes: #736180; Closes: #707956
+ * removed bloated .ps files from the source package. Closes: #737933
+ * added a dependency on imagemagick to mamange the icons at build time
+
+ -- Georges Khaznadar <georgesk@debian.org> Mon, 24 Feb 2014 15:40:26 +0100
+
+kicad (0.20131208+bzr4024-1) unstable; urgency=medium
+
+ * scheduled the installation of doc/internat into usr/share/kicad.
+ Closes: #734552
+ * upgraded Standards-Version to 3.9.5
+ * Upgraded to the newest upstream release. Closes: #712303
+ * The script debian/get-kicad.sh makes easier to fetch newer source files
+ Closes: #713861
+
+ -- Georges Khaznadar <georgesk@debian.org> Wed, 08 Jan 2014 17:25:14 +0100
+
+kicad (0.20130727+bzr4024-2) unstable; urgency=low
+
+ * modified the homepage in d/control. Closes: #713858
+ * modified ./scripts/kicad-get-rss to remove bashisms. Closes: #690645
+ * modified d/kicad-common.install to fix forgotten libraries.
+ Closes: #719530
+
+ -- Georges Khaznadar <georgesk@debian.org> Wed, 07 Aug 2013 11:19:25 +0200
+
+kicad (0.20130727+bzr4024-1) unstable; urgency=low
+
+ * upgraded to the last revision. Closes: #694740
+ * updated Standards-Version to 3.9.4, compat to 9.
+ * commented out a few lines in include/common.h, to enable the build
+ with wx libraries available in Sid. Don't know why these lines were
+ introduced.
+
+ -- Georges Khaznadar <georgesk@debian.org> Sat, 27 Jul 2013 18:31:03 +0200
+
+kicad (0.20130125+bzr3921-1) unstable; urgency=low
+
+ * upgraded to the last revision. Closes: #694740
+ * changed my DEBEMAIL
+ * updated the variable GENERATED_FILES in debian/rules to add
+ new files to the cleaning list and remove obsoleted directories
+ * updated the patches for quilt
+ * updated debian/kicad-common.install to take in account the
+ no longer existent directories library and doc.
+
+ -- Georges Khaznadar <georgesk@debian.org> Fri, 25 Jan 2013 19:08:22 +0100
+
+kicad (0.20120526+bzr3261-1) unstable; urgency=low
+
+ * upgraded to the last stable revision. Closes: #656215
+ * removed debian/source/include-binaries and the additional files which
+ came with it
+ * added a script debian/clean_sourceless_pdf which removes PDF files
+ in many directories when no source was found. This script outputs
+ a log file: debian/erased_pdf.log, which should be cleared when a
+ new upstream package is downloaded.
+ * modified kicad-doc-es.install since there is no source for the pdf file
+ * modified kicad-doc-pl.install since a pdf source is missing
+ * upgraded Standards-Version to 3.9.3
+ * precised a Replaces: stance (kicad (<< 0.20120126+bzr3256-1))
+
+ -- Georges Khaznadar <georgesk@ofset.org> Sat, 26 May 2012 17:28:12 +0000
+
+kicad (0.20120126+bzr3256-3.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * gcc-4.7: Fix build failure with GCC 4.7. Closes: #672727.
+ - include/boost/polygon/polygon_90_set_data.hpp: Include
+ "detail/polygon_sort_adaptor.hpp" for gtlsort.
+
+ -- Matej Vela <vela@debian.org> Fri, 25 May 2012 22:25:46 +0100
+
+kicad (0.20120126+bzr3256-3) unstable; urgency=low
+
+ * excluded .pdf files from dh_compress. Closes: #659660
+
+ -- Georges Khaznadar <georgesk@ofset.org> Wed, 15 Feb 2012 18:07:06 +0000
+
+kicad (0.20120126+bzr3256-2) unstable; urgency=low
+
+ * added the l10n files into the package kicad-common. Closes: #659091
+ * added eeschema.svg into usr/share/icons/hicolor/scalable/apps.
+ Closes: #659317
+ * applied Vincent Danjean's tip. Closes: #657729
+
+ -- Georges Khaznadar <georgesk@ofset.org> Fri, 10 Feb 2012 17:54:11 +0000
+
+kicad (0.20120126+bzr3256-1) unstable; urgency=low
+
+ * upgraded to the latest upstream version. Closes: #656215
+ * modified the packaging scripts (simplified debian/rules, added
+ some .install files.
+
+ -- Georges Khaznadar <georgesk@ofset.org> Thu, 26 Jan 2012 08:42:59 +0100
+
+kicad (0.0.20110616-1) unstable; urgency=low
+
+ * upgraded to the latest upstream version.
+ * included the files sent by their author, by email
+ <4DF93DA9.50504@iridec.com.au>, Closes: #630453
+
+ -- Georges Khaznadar <georgesk@ofset.org> Thu, 16 Jun 2011 22:52:02 +0200
+
+kicad (0.0.20110507-1) unstable; urgency=low
+
+ * upgraded to the new upstream version. Closes: #624439
+
+ -- Georges Khaznadar <georgesk@ofset.org> Sat, 07 May 2011 16:52:33 +0200
+
+kicad (0.0.20101024-2) unstable; urgency=low
+
+ * changed the format to 3.0 (quilt)
+ * enabled the parallel build feature in debian/rules
+
+ -- Georges Khaznadar <georgesk@ofset.org> Sun, 24 Oct 2010 10:54:16 +0200
+
+kicad (0.0.20101024-1) unstable; urgency=low
+
+ * Maintainer change.
+ - Closes: #599427
+ * changed the way sources are downloaded. See debian/packagesrc.sh
+ * upgraded to newest stable release.
+ - Closes: #590483
+ - Closes: #580497
+ * moved the dependency on extra-xdg-menus to Suggests: level.
+ - Closes: #577282
+ * added a list of auto-generated files to remove upon clean target
+
+ -- Georges Khaznadar <georgesk@ofset.org> Sun, 24 Oct 2010 02:34:38 +0200
+
+kicad (0.0.20100314-1) unstable; urgency=low
+
+ * New upstream (Closes: #575018).
+ * Update Standards-Version to 3.8.4 (no changes needed).
+
+ -- Richard Antony Burton <richardaburton@gmail.com> Sun, 28 Mar 2010 12:58:23 +0000
+
+kicad (0.0.20090216-1) unstable; urgency=low
+
+ * New upstream release. (Closes: #529628)
+ * - Upstream fix. (Closes: #532367)
+ * - Upstream fix. (Closes: #509956)
+ * Move shortcut to electronics section. (Closes: #536307)
+ * Suggest documentation. (Closes: #502546)
+ * Update Standards-Version to 3.8.3 (no changes needed).
+
+ -- Richard Antony Burton <richardaburton@gmail.com> Sat, 26 Sep 2009 12:47:27 +0000
+
+kicad (0.0.20080825c-1) unstable; urgency=low
+
+ * New upstream release. (Closes: #496897)
+ * Use new cmake build system.
+ * Use new svn repository layout.
+ * Build using wxWidgets 2.8. (Closes: #398615)
+ * Require debhelper 6 to get fix for 459426.
+ * Upstream performance improvement for redraw. (Closes: #469516)
+ * Moved examples to /usr/share/doc/kicad/demos
+ * Update Standards-Version to 3.8.0 (no changes needed).
+ * Add more language packages, for tutorials.
+ * Only en & fr manuals included, rest not currently maintained upstream.
+
+ -- Richard Antony Burton <richardaburton@gmail.com> Sun, 21 Sep 2008 19:58:47 +0100
+
+kicad (0.0.20071129a-1) unstable; urgency=low
+
+ * New upstream release.
+ * Fix menu icon (not the gnome one).
+ * Update Standards-Version to 3.7.3.0 (Debian menu structure change only).
+
+ -- Richard Antony Burton <richardaburton@gmail.com> Wed, 19 Dec 2007 17:04:33 +0000
+
+kicad (0.0.20070702-1) unstable; urgency=low
+
+ * New upstream release.
+ * Added man pages for binaries. (Closes: #429223)
+ * All patches from previous version now included upstream.
+
+ -- Richard Antony Burton <richardaburton@gmail.com> Sun, 08 Jul 2007 09:15:42 +0100
+
+kicad (0.0.20070525-1) unstable; urgency=low
+
+ * New upstream release (Closes: #423873)
+ * Install help files to correct location (Closes: #404783)
+ * For languages without native help files the English doc package is pulled in
+ with the non-English doc package, so there is at least some help.
+ * Not removing all binaries removed during 'clean' (Closes: #424455)
+ * Patch for the 3D Display image export problem (Closes: #423882)
+
+ -- Richard Antony Burton <richardaburton@gmail.com> Sun, 27 May 2007 13:43:01 +0100
+
+kicad (0.0.20060829-2) unstable; urgency=low
+
+ * Fixing wrong location of helpfiles (Closes: #404783) (djp)
+
+ -- Daniel J. Priem <danielpriem@flexserv.de> Thu, 28 Dec 2006 12:20:31 +0100
+
+kicad (0.0.20060829-1) unstable; urgency=low
+
+ * now binNMU safe (rab)
+ * This version is 20060828 but since i forgot something inside the orig.tar.gz i must increase the version number (djp)
+ * Added newer documentation (djp)
+ * Added some updated po files (djp)
+ * Added italian help files (djp)
+
+ -- Daniel J. Priem <danielpriem@flexserv.de> Sun, 12 Nov 2006 21:40:23 +0100
+
+kicad (0.0.20060828-1) unstable; urgency=low
+
+ * New upstream.
+ * Split help files out into separate language-specific packages.
+
+ -- Debian Kicad Team <kicad-devel@lists.mose.flexserv.de> Fri, 3 Nov 2006 19:33:07 +0100
+
+kicad (0.0.20060626-1) unstable; urgency=low
+
+ * Initial release (Closes: #278581)
+
+ -- Richard Antony Burton <richardaburton@hotmail.com> Sat, 30 Sep 2006 22:24:06 +0200
--- /dev/null
+Source: kicad
+Section: electronics
+Priority: optional
+Maintainer: Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net>
+Uploaders:
+ Carsten Schoenert <c.schoenert@t-online.de>,
+ Georges Khaznadar <georgesk@debian.org>,
+Build-Depends:
+ asciidoctor,
+ chrpath,
+ cmake,
+ dblatex,
+ debhelper-compat (= 13),
+ dh-python,
+ docbook-utils,
+ docbook-xsl,
+ doxygen,
+ dpkg-dev (>= 1.16.1.1~),
+ fonts-freefont-ttf,
+ fonts-vlgothic,
+ gettext,
+ git,
+ imagemagick,
+ libboost-date-time-dev,
+ libboost-dev,
+ libboost-filesystem-dev,
+ libboost-iostreams-dev,
+ libboost-locale-dev,
+ libboost-program-options-dev,
+ libboost-regex-dev,
+ libboost-system-dev,
+ libboost-test-dev,
+ libboost-thread-dev,
+ libbz2-dev,
+ libcairo2-dev,
+ libcurl4-openssl-dev,
+ libgit2-dev,
+ libglew-dev,
+ libglm-dev (>= 0.9.9.6-1~),
+ libgtk-3-dev,
+ liblocale-gettext-perl,
+ libngspice0-dev,
+ libnng-dev,
+ libocct-data-exchange-dev,
+ libprotoc-dev,
+ libpython3-dev,
+ libsecret-1-dev,
+ libssl-dev,
+ libterm-readkey-perl,
+ libtext-wrapi18n-perl,
+ libunicode-linebreak-perl,
+ libwxgtk3.2-dev,
+ libxml2-utils,
+ lmodern,
+ pkgconf,
+ po4a,
+ protobuf-compiler,
+ python3-all,
+ python3-dev,
+ python3-wxgtk4.0,
+ source-highlight,
+ swig,
+ texlive-fonts-extra,
+ texlive-lang-chinese,
+ texlive-lang-cyrillic,
+ texlive-lang-english,
+ texlive-lang-european,
+ texlive-lang-french,
+ texlive-lang-german,
+ texlive-lang-italian,
+ texlive-lang-japanese,
+ texlive-lang-other,
+ texlive-lang-polish,
+ texlive-lang-spanish,
+ texlive-xetex,
+ unixodbc-dev,
+ xmlto,
+Rules-Requires-Root: binary-targets
+Vcs-Git: https://salsa.debian.org/electronics-team/KiCad/kicad.git -b debian/sid
+Vcs-Browser: https://salsa.debian.org/electronics-team/KiCad/kicad/-/tree/debian/sid
+Standards-Version: 4.7.2
+Homepage: https://www.kicad.org
+
+Package: kicad
+Architecture: any-amd64 any-i386 arm64 armhf loong64 mips64el powerpc ppc64 ppc64el riscv64
+Depends:
+ libngspice0,
+ python3-wxgtk4.0 (>= 4.2.0+dfsg-1~),
+ ${misc:Depends},
+ ${python3:Depends},
+ ${shlibs:Depends},
+Suggests:
+ extra-xdg-menus,
+ kicad-doc-ca | kicad-doc-de | kicad-doc-en | kicad-doc-es | kicad-doc-fr | kicad-doc-id | kicad-doc-it | kicad-doc-ja | kicad-doc-pl | kicad-doc-ru | kicad-doc-zh,
+ kicad-packages3d,
+Recommends:
+ kicad-demos (>= 9.0.0~),
+ kicad-libraries (>= 9.0.0~),
+ xsltproc,
+Breaks:
+ kicad-footprints (<< 9.0.0~),
+ kicad-libraries (<< 9.0.0~),
+ kicad-packages3d (<< 9.0.0~),
+ kicad-symbols (<< 9.0.0~),
+ kicad-templates (<< 9.0.0~),
+Description: Electronic schematic and PCB design software
+ Kicad is a suite of programs for the creation of printed circuit boards.
+ It includes a schematic editor, a PCB layout tool, support tools and a
+ 3D viewer to display a finished & fully populated PCB.
+ .
+ Kicad is made up of 5 main components:
+ .
+ * kicad - project manager
+ * eeschema - schematic editor
+ * pcbnew - PCB editor
+ * gerbview - GERBER viewer
+ * cvpcb - footprint selector for components
+ .
+ Libraries:
+ * Both eeschema and pcbnew have library managers and editors for their
+ components and footprints
+ * You can easily create, edit, delete and exchange library items
+ * Documentation files can be associated with components, footprints and key
+ words, allowing a fast search by function
+ * Very large libraries are available for schematic components and footprints
+ * Most components have corresponding 3D models
+
+Package: kicad-demos
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Suggests:
+ kicad (>= 9.0.0~),
+Description: Demo projects for kicad
+ The KiCad projects within this package are various typical small use cases
+ which can be used for study or also for build own projects on top of these
+ existing projects.
+ .
+ The projects included are on one side easy and simple projects with classical
+ through hole mounted components with one or two layers but also rather more
+ complex projects based on surface mounted devices (SMD) with multiple layers.
+
+Package: kicad-doc-ca
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Catalan)
+ This package provides various documentation files for KiCad in Catalan, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * GSIK - Getting Started in KiCad
+ * KiCad - The main project editor
+
+Package: kicad-doc-de
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (German)
+ This package provides various documentation files for KiCad in German, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * GUI Translation - HowTo Help to do GUI translation
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+
+Package: kicad-doc-en
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (English)
+ This package provides various documentation files for KiCad in English, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * GUI Translation - HowTo Help to do GUI translation
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * PcbCalculator - A tool for typical calculations while PCB designing
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+ * Plugins - Introduction to the KiCad plugin system
+
+Package: kicad-doc-es
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Spanish)
+ This package provides various documentation files for KiCad in Spanish, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * KiCad - The main project editor
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+
+Package: kicad-doc-fr
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (French)
+ This package provides various documentation files for KiCad in French, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GSIK - Getting Started in KiCad
+ * KiCad - The main project editor
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+
+Package: kicad-doc-id
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Indonesian)
+ This package provides various documentation files for KiCad in Indonesian, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * Eeschema - schematic capture editor
+ * GSIK - Getting Started in KiCad
+ * KiCad - The main project editor
+
+Package: kicad-doc-it
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Italian)
+ This package provides various documentation files for KiCad in Italian, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * PcbCalculator - A tool for typical calculations while PCB designing
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+
+Package: kicad-doc-ja
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Japanese)
+ This package provides various documentation files for KiCad in Japanese, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * GUI Translation - HowTo Help to do GUI translation
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+ * Plugins - Introduction to the KiCad plugin system
+
+Package: kicad-doc-pl
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Polish)
+ This package provides various documentation files for KiCad in Polish, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+
+Package: kicad-doc-ru
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Russian)
+ This package provides various documentation files for KiCad in Russian, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * GUI Translation - HowTo Help to do GUI translation
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * PcbCalculator - A tool for typical calculations while PCB designing
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+ * Plugins - Introduction to the KiCad plugin system
+
+Package: kicad-doc-zh
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends:
+ ${misc:Depends},
+Description: Kicad help files (Chinese)
+ This package provides various documentation files for KiCad in German, like
+ the EPUB and the PDF files and also the OnLine HTML documentation for:
+ .
+ * CvPcb - Component association of Footprints
+ * Eeschema - schematic capture editor
+ * GerbView - Gerber file viewer (RS 274 X format)
+ * GSIK - Getting Started in KiCad
+ * GUI Translation - HowTo Help to do GUI translation
+ * IDF Exporter - Export tool for IDFv3 boards and libraries
+ * KiCad - The main project editor
+ * PcbCalculator - A tool for typical calculations while PCB designing
+ * Pcbnew - The printed circuit board software tool
+ * PlEditor - The layout editor for custom title block
+ * Plugins - Introduction to the KiCad plugin system
+
+Package: kicad-libraries
+Architecture: all
+Section: metapackages
+Multi-Arch: foreign
+Depends:
+ kicad-footprints (>= 9.0.0~),
+ kicad-symbols (>= 9.0.0~),
+ kicad-templates (>= 9.0.0~),
+ ${misc:Depends},
+Suggests:
+ kicad-packages3d (>= 9.0.0~),
+Description: Virtual package providing common used libraries by kicad
+ This package contains dependencies on the component libraries (schematics
+ and footprints), and also on the templates that are used in KiCad.
+ .
+ If you prefer to control the installation of the dependent packages
+ * kicad-footprint
+ * kicad-symbols
+ * kicad-templates
+ you should not install kicad-libraries and install one or more of the above
+ packages.
+ .
+ Note! 3D model libraries are not set as a dependency due the installation
+ size of this package, if you want to use the 3D models you need to install
+ kicad-packages3d separately.
--- /dev/null
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: kicad
+Source: https://gitlab.com/kicad/code/kicad.git
+ https://gitlab.com/kicad/services/kicad-doc
+Comment: The source contains two PDF files were no source is available for
+ ./pcb_calculator/docs/tracks_width_thickness.pdf
+ ./pcb_calculator/docs/tracks_width_formulas.pdf
+ We filter them out while we importing the kicad_$(version).orig.tar.xz to
+ get a source package that is complying with the DFSG.
+ Also the folders ./thirdparty/argparse/tools/build.bat and
+ ./thirdparty/sentry-native is filtered out.
+
+Files: *
+Copyright: (C) 2015-2025 KiCad Developers <kicad-developers@lists.launchpad.net>
+License: GPL-3+
+
+Files: 3d-viewer/*
+Copyright: 2015-2017, Mario Luzeiro <mrluzeiro@ua.pt>
+ 1992-2019, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: 3d-viewer/3d_cache/*
+Copyright: 2015-2017, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+License: GPL-2+
+
+Files: 3d-viewer/3d_cache/3d_info.h
+Copyright: 2015, Mario Luzeiro <mrluzeiro@ua.pt>
+ 2015, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+ 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2015, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: 3d-viewer/3d_rendering/trackball.cpp
+ 3d-viewer/3d_rendering/trackball.h
+Copyright: 1993, 1994, Silicon Graphics, Inc.
+License: Expat
+
+Files: 3d-viewer/3d_viewer/*
+Copyright: 2015, 2016, Mario Luzeiro <mrluzeiro@ua.pt>
+ 2014, 2015, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2011, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: bitmap2component/*
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+ 1992-2010, jean-pierre.charras
+License: GPL-2+
+
+Files: bitmap2component/bitmap2component.cpp
+Copyright: 1992-2015, jean-pierre.charras
+ 1992-2015, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: bitmap2component/bitmap2component.h
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: cmake/CMakeFindFrameworks.cmake
+Copyright: (C) 2003-2009 Kitware, Inc.
+License: BSD-3-clause
+
+Files: cmake/FindCairo.cmake
+Copyright: (C) 2012 Dmitry Baryshnikov <polimax at mail dot ru>
+License: BSD-3-clause
+
+Files: cmake/FindFontconfig.cmake
+ cmake/FindGLEW.cmake
+Copyright: (C) Kitware, Inc.
+License: BSD-3-clause
+
+Files: cmake/FindHarfBuzz.cmake
+Copyright: (C) 2012 Intel Inc.
+ (c) Sony Interactive Entertainment Inc.
+License: BSD-3-clause
+
+Files: cmake/FindOCC.cmake
+Copyright: (c) 2018 Seth Hillbrand
+License: LGPL-2.1+
+
+Files: cmake/FindPackageMessage.cmake
+Copyright: (C) 2008-2009 Kitware, Inc.
+License: BSD-3-clause
+
+Files: cmake/FindPixman.cmake
+Copyright: (C) 2012 Dmitry Baryshnikov <polimax at mail dot ru>
+ (C) 2017 Simon Richter <Simon.Richter at hogyros dot de>
+License: BSD-3-clause
+
+Files: cmake/FindPythonInterp.cmake
+Copyright: (C) 2005-2010 Kitware, Inc.
+ (C) 2011 Bjoern Ricks <bjoern.ricks@gmail.com>
+ (C) 2012 Rolf Eike Beer <eike@sf-mail.de>
+License: BSD-3-clause
+
+Files: cmake/FindPythonLibs.cmake
+Copyright: (C) 2001-2009 Kitware, Inc.
+License: BSD-3-clause
+
+Files: cmake/FindSWIG.cmake
+Copyright: (C) 2001-2009 Kitware, Inc.
+ (C) 2011 Mathieu Malaterre <mathieu.malaterre@gmail.com>
+ (C) 2014 Sylvain Joubert <joubert.sy@gmail.com>
+License: BSD-3-clause
+
+Files: cmake/Findngspice.cmake
+Copyright: (C) 2016 CERN
+ (C) 2022 Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cmake/FindwxPython.cmake
+Copyright: (C) 2018 CERN Maciej Suminski <maciej.suminski@cern.ch>
+License: GPL-2+
+
+Files: cmake/FindwxWidgets.cmake
+Copyright: (C) 2004-2009 Kitware, Inc.
+ (C) 2007-2009 Miguel A. Figueroa-Villanueva <miguelf at ieee dot org>
+License: BSD-3-clause
+
+Files: cmake/Functions.cmake
+Copyright: (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ (C) 2010-2020 Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cmake/KiCadFullVersion.cmake
+ cmake/WritePlatformMetadata_macos.cmake
+Copyright: (C) 2019 Ian McInerney <Ian.S.McInerney@ieee.org>
+ (C) 2019 Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cmake/KiCadQABuildUtils.cmake
+Copyright: (C) 2019 KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cmake/KiCadVersion.cmake
+Copyright: (C) 2016 Wayne Stambaugh <stambaughw@gmail.com>
+ (C) 2016-2024 KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cmake/SelectLibraryConfigurations.cmake
+Copyright: (C) 2009 Will Dicharry <wdicharry@stellarscience.com>
+ (C) 2005-2009 Kitware, Inc.
+License: BSD-3-clause
+
+Files: cmake/UsewxWidgets.cmake
+Copyright: (C) 2004-2009 Kitware, Inc.
+ (C) 2006 Jan Woetzel
+License: BSD-3-clause
+
+Files: cmake/Warnings.cmake
+Copyright: (C) 2007-2020 Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/base_screen.cpp
+Copyright: 2012, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 2012, 2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2012, 2013, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/build_version.cpp
+ common/confirm.cpp
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/eda_dde.cpp
+Copyright: 2007-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2007-2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: common/bin_mod.cpp
+ common/searchhelpfilefullpath.cpp
+ common/systemdirsappend.cpp
+Copyright: 2014, 2015, 2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2010, 2013-2017, CERN
+License: GPL-2+
+
+Files: common/bitmap.cpp
+ common/dialog_shim.cpp
+ common/exceptions.cpp
+ common/kiway_player.cpp
+ common/lset.cpp
+ common/richio.cpp
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2007-2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: common/bitmap_base.cpp
+Copyright: 2017, jean-pierre.charras
+ 2011-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/eda_doc.cpp
+ common/gbr_metadata.cpp
+ common/marker_base.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: common/common.cpp
+ common/executable_names.cpp
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/config_params.cpp
+Copyright: 2008, 2009, 2011, Wayne Stambaugh <stambaughw@gmail.com>
+ 2004, 2007, 2009, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/dialog_about/*
+Copyright: 2010-2018, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2010, 2014, Rafael Sokolowski <Rafael.Sokolowski@web.de>
+License: GPL-2+
+
+Files: common/dialog_about/dialog_about_base.cpp
+Copyright: 2010-2018, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+Comment: This file is autogenerated.
+
+Files: common/dialogs/*
+Copyright: 1992-2018, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/filter_reader.cpp
+ common/grid_tricks.cpp
+ common/xnode.cpp
+Copyright: 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/draw_panel_gal.cpp
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2017, CERN
+License: GPL-2+
+
+Files: common/dsnlexer.cpp
+Copyright: 2007-2017, KiCad Developers, see change_log.txt for contributors.
+ 2007-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: common/eda_base_frame.cpp
+Copyright: 2013, 2015-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008, 2009, 2011-2013, 2015, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/eda_pattern_match.cpp
+Copyright: 2015-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2015-2017, Chris Pavlina <pavlina.chris@gmail.com>
+License: GPL-2+
+
+Files: common/eda_text.cpp
+Copyright: 2004-2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/env_paths.cpp
+Copyright: 2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, CERN
+License: GPL-3+
+
+Files: common/footprint_filter.cpp
+Copyright: 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: common/footprint_info.cpp
+Copyright: 2013-2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2011, Jean-Pierre Charras, <jp.charras@wanadoo.fr>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/fp_lib_table.cpp
+Copyright: 2012-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2016, Wayne Stambaugh <stambaughw@gmail.com>
+ 2010-2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: common/gal/cairo/cairo_gal.cpp
+Copyright: 2013-2017, CERN
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+ 2012, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/gal/color4d.cpp
+Copyright: 2017, Kicad Developers, see AUTHORS.txt for contributors.
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: common/gal/gal_display_options.cpp
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/gal/graphics_abstraction_layer.cpp
+Copyright: 2012-2017, Kicad Developers, see change_log.txt for contributors.
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: common/gal/hidpi_gl_canvas.cpp
+Copyright: 2017, Bernhard Stegmaier <stegmaier@sw-systems.de>
+ 2016, 2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/gal/opengl/SmaaAreaTex.h
+ common/gal/opengl/SmaaSearchTex.h
+Copyright: 2013, Jose I. Echevarria (joseignacioechevarria@gmail.com)
+ 2013, Jorge Jimenez (jorge@iryoku.com)
+ 2013, Fernando Navarro (fernandn@microsoft.com)
+ 2013, Diego Gutierrez (diegog@unizar.es)
+ 2013, Belen Masia (bmasia@unizar.es)
+License: Expat
+
+Files: common/gal/opengl/antialiasing.cpp
+ common/gal/opengl/antialiasing.h
+ common/gal/opengl/gl_resources.cpp
+ common/gal/opengl/gl_resources.h
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/gal/opengl/opengl_gal.cpp
+Copyright: 2013-2017, CERN
+ 2012-2016, Kicad Developers, see AUTHORS.txt for contributors.
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: common/gal/opengl/shader.cpp
+Copyright: 2012, Torsten Hueter, torstenhtr <at> gmx.de
+ 2012, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/gestfich.cpp
+Copyright: 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004, 2007, 2009, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/gr_basic.cpp
+Copyright: 2015, 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2011, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: common/hotkeys_basic.cpp
+Copyright: 2015, Jean-Pierre Charras, j-p.charras at wanadoo.fr
+ 2010, 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2016, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/kicad_curl/*
+Copyright: 2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2015, Mark Roszko <mark.roszko@gmail.com>
+ 2015, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-3+
+
+Files: common/kicad_curl/kicad_curl_easy.cpp
+Copyright: 2015, Mark Roszko <mark.roszko@gmail.com>
+ 2015, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-3+
+
+Files: common/kiway.cpp
+ common/kiway_holder.cpp
+Copyright: 2014-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2010, 2014, 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: common/kiway_express.cpp
+ common/page_info.cpp
+ common/ptree.cpp
+ common/single_top.cpp
+Copyright: 2012-2017, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: common/lib_id.cpp
+Copyright: 2012, Wayne Stambaugh <stambaughw@gmail.com>
+ 2010-2017, KiCad Developers, see change_log.txt for contributors.
+ 2010-2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: common/lib_table_base.cpp
+Copyright: 2012-2017, Wayne Stambaugh <stambaughw@gmail.com>
+ 2012-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2010-2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: common/libeval/*
+Copyright: 2017, Michael Geselbracht, mgeselbracht3@gmail.com
+License: GPL-3+
+
+Files: common/newstroke_font.cpp
+Copyright: 2010, vladimir uryvaev <vovanius@bk.ru>
+ 1992-2010, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/pgm_base.cpp
+Copyright: 2008-2016, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/plotters/*
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: common/plotters/DXF_plotter.cpp
+ common/plotters/common_plot_functions.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/plotters/PDF_plotter.cpp
+Copyright: 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2012, Lorenzo Marcantonio, l.marcantonio@logossrl.com
+License: GPL-2+
+
+Files: common/plotters/SVG_plotter.cpp
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/preview_items/*
+Copyright: 1992-2018, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/preview_items/selection_area.cpp
+Copyright: 2013-2018, CERN
+License: GPL-2+
+
+Files: common/preview_items/centreline_rect_item.cpp
+ common/preview_items/preview_utils.cpp
+ common/preview_items/ruler_item.cpp
+ common/preview_items/simple_overlay_item.cpp
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/project.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/reporter.cpp
+ common/validators.cpp
+Copyright: 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2015, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: common/search_stack.cpp
+Copyright: 2014, CERN
+ 1992-2015, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: common/streamwrapper.cpp
+Copyright: 2017, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+License: GPL-3+
+
+Files: common/swig/*
+Copyright: 2012-2014, Miguel Angel Ajo <miguelangel@nbee.es>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/tool/grid_menu.cpp
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2017, CERN
+License: GPL-2+
+
+Files: common/tool/tool_menu.cpp
+Copyright: 2017, KiCad Developers, see CHANGELOG.txt for contributors.
+License: GPL-2+
+
+Files: common/tool/zoom_tool.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: common/undo_redo_container.cpp
+Copyright: 2018, jp.charras at wanadoo.fr
+ 2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2011, Wayne Stambaugh <stambaughw@verizon.net>
+License: GPL-2+
+
+Files: common/view/view_controls.cpp
+Copyright: 2013-2015, CERN
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: common/view/wx_view_controls.cpp
+Copyright: 2013-2015, CERN
+ 2012-2016, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: common/widgets/color_swatch.cpp
+ common/widgets/gal_options_panel.cpp
+ common/widgets/indicator_icon.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: common/widgets/footprint_choice.cpp
+ common/widgets/footprint_select_widget.cpp
+ common/widgets/stepped_slider.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: common/widgets/footprint_preview_widget.cpp
+Copyright: 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, Chris Pavlina <pavlina.chris@gmail.com>
+License: GPL-3+
+
+Files: common/widgets/mathplot.cpp
+Copyright: 2016, David Schalig, Davide Rondini
+License: WXWINDOWS
+
+Files: common/widgets/text_ctrl_eval.cpp
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: common/widgets/widget_hotkey_list.cpp
+Copyright: 2016, Chris Pavlina <pavlina.chris@gmail.com>
+ 2016, 2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: common/wildcards_and_files_ext.cpp
+Copyright: 2012, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+ 2008, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cvpcb/*
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cvpcb/cvpcb_mainframe.h
+ cvpcb/footprints_listbox.cpp
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cvpcb/cvpcb.cpp
+Copyright: 2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2007, Jean-Pierre Charras, jp..charras at wanadoo.fr
+ 1992-2014, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cvpcb/cvpcb_id.h
+Copyright: 2007-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2007-2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: cvpcb/cvpcb_mainframe.cpp
+ cvpcb/display_footprints_frame.cpp
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cvpcb/dialogs/*
+Copyright: 2010-2014, Jean-Pierre Charras <jp.charras at wanadoo.fr>
+ 1992-2014, Kicad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: cvpcb/dialogs/dialog_config_equfiles.cpp
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: cvpcb/dialogs/dialog_config_equfiles.h
+Copyright: 2010-2015, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 1992-2015, Kicad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: cvpcb/display_footprints_frame.h
+Copyright: 2007-2011, KiCad Developers, see AUTHORS.txt for contributors.
+ 2007, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+License: GPL-2+
+
+Files: cvpcb/menubar.cpp
+Copyright: 2004-2018, KiCad Developers, see change_log.txt for contributors.
+ 2001, 2004, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+License: GPL-2+
+
+Files: cvpcb/readwrite_dlgs.cpp
+Copyright: 2018, Jean-Pierre Charras, jean-pierre.charras
+ 2011-2016, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: demos/*
+Copyright: 1992-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: demos/tiny_tapeout/*
+Copyright: 2024, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: Apache-2.0
+
+Files: doc/*
+Copyright: (C) 2006-2022 KiCad Developers
+License: GPL-2+ or CC-BY-SA-3.0
+Comment:
+ The KiCad documentation is dual licensed.
+ You may distribute it and/or modify it under the terms of either
+ the GNU General Public License (http://www.gnu.org/licenses/gpl.html),
+ version 3 or later, or the Creative Commons Attribution License
+ (http://creativecommons.org/licenses/by/3.0/), version 3.0 or later.
+ .
+ See: http://kicad.org/about/licenses/
+
+Files: eeschema/*
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/annotate.cpp
+ eeschema/pin_type.cpp
+ eeschema/pin_type.h
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/autoplace_fields.cpp
+ eeschema/project_rescue.cpp
+ eeschema/project_rescue.h
+Copyright: 2015-2018, KiCad Developers, see change_log.txt for contributors.
+ 2015, Chris Pavlina <pavlina.chris@gmail.com>
+License: GPL-2+
+
+Files: eeschema/menubar.cpp
+ eeschema/sch_sheet_path.cpp
+ eeschema/sch_sheet_path.h
+Copyright: 2013, 2015-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008, 2009, 2011-2013, 2015, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/bus-wire-junction.cpp
+Copyright: 1992-2016, KiCad Developers, see change_log.txt for contributors.
+ 1992-2009, Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.fr
+License: GPL-2+
+
+Files: eeschema/cross-probing.cpp
+ eeschema/eeschema.cpp
+Copyright: 2008-2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004-2017, KiCad Developers, see change_log.txt for contributors.
+ 2004, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+License: GPL-2+
+
+Files: eeschema/eeschema_config.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/dialogs/*
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: eeschema/dialogs/dialog_annotate.cpp
+Copyright: 1992-2017, jean-pierre Charras jp.charras at wanadoo.fr
+ 1992-2017, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_bom.cpp
+ eeschema/dialogs/dialog_erc.h
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_lib_edit_pin_table.cpp
+ eeschema/dialogs/dialog_rescue_each.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_schematic_find.cpp
+ eeschema/dialogs/dialog_schematic_find.h
+Copyright: 2009-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_erc.cpp
+Copyright: 2013, 2015-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008, 2009, 2011-2013, 2015, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_global_sym_lib_table_config.cpp
+ eeschema/dialogs/dialog_global_sym_lib_table_config.h
+Copyright: 2017, Wayne Stambaugh <stambaughw@gmail.com>
+ 2017, 2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: eeschema/dialogs/dialog_plot_schematic.cpp
+Copyright: 2011, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 1992-2010, Lorenzo Marcantonio
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_plot_schematic.h
+Copyright: 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 1992-2010, Lorenzo Marcantonio
+License: GPL-2+
+
+Files: eeschema/dialogs/dialog_symbol_remap.cpp
+ eeschema/dialogs/dialog_symbol_remap.h
+Copyright: 2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 2017, 2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: eeschema/sch_bitmap.cpp
+ eeschema/sch_bitmap.h
+Copyright: 2011-2017, KiCad Developers, see change_log.txt for contributors.
+ 2011, 2012, jean-pierre.charras
+License: GPL-2+
+
+Files: eeschema/eeschema_id.h
+Copyright: 2008-2017, KiCad Developers, see change_log.txt for contributors.
+ 2008, Wayne Stambaugh <stambaughw@gmail.com>
+License: GPL-2+
+
+Files: eeschema/sch_text.cpp
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/general.h
+Copyright: 2007-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2007-2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: eeschema/files-io.cpp
+Copyright: 2013, Wayne Stambaugh <stambaughw@gmail.com>
+ 2013, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2013, CERN (www.cern.ch)
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/generate_alias_info.cpp
+ eeschema/generate_alias_info.h
+Copyright: 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, Chris Pavlina <pavlina.chris@gmail.com>
+License: GPL-3+
+
+Files: eeschema/sch_bus_entry.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: eeschema/invoke_sch_dialog.h
+ eeschema/sch_base_frame.cpp
+Copyright: 2007-2017, KiCad Developers, see change_log.txt for contributors.
+ 2007-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: eeschema/sch_bus_entry.h
+ eeschema/schematic_undo_redo.cpp
+Copyright: 2004-2018, KiCad Developers, see change_log.txt for contributors.
+ 2001, 2004, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+License: GPL-2+
+
+Files: eeschema/libarch.cpp
+Copyright: 2008, Wayne Stambaugh <stambaughw@gmail.com>
+ 2004-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2004, Jean-Pierre Charras, jp.charras ar wanadoo.fr
+License: GPL-2+
+
+Files: eeschema/netlist_exporters/*
+Copyright: 2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers
+ 1992-2013, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: eeschema/netlist_exporters/netlist_exporter_cadstar.cpp
+ eeschema/netlist_exporters/netlist_exporter_kicad.cpp
+ eeschema/netlist_exporters/netlist_exporter_orcadpcb2.cpp
+Copyright: 2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.TXT for contributors.
+ 1992-2013, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: eeschema/sch_base_frame.h
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2007-2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: eeschema/sch_edit_frame.h
+Copyright: 2015, Jean-Pierre Charras, jp.charras wanadoo.fr
+ 2008, Wayne Stambaugh <stambaughw@gmail.com>
+ 2004-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sch_field.h
+ eeschema/sch_marker.h
+ eeschema/sheet.cpp
+Copyright: 2004-2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sch_junction.h
+ eeschema/sch_line.h
+ eeschema/sch_marker.cpp
+ eeschema/sch_no_connect.h
+ eeschema/sch_screen.h
+ eeschema/sch_sheet_pin.cpp
+Copyright: 2004, 2006, 2007, 2009, 2010, 2015, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sch_no_connect.cpp
+Copyright: 2015, Jean-Pierre Charras, jp.charras at wanoadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sch_reference_list.h
+Copyright: 1992-2015, KiCad Developers, see authors.txt for contributors.
+ 1992-2011, jean-pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
+ 1992-2011, Wayne Stambaugh <stambaughw@verizon.net>
+License: GPL-2+
+
+Files: eeschema/sch_screen.cpp
+Copyright: 2013, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2008, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sch_sheet.cpp
+Copyright: 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2017, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sch_validators.cpp
+ eeschema/sch_validators.h
+Copyright: 2016, Wayne Stambaugh, stambaughw@gmail.com
+ 2016, 2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/sim/*
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: eeschema/symbol_lib_table.cpp
+Copyright: 2012, 2016, 2017, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/symbol_lib_table.h
+Copyright: 2016, Wayne Stambaugh <stambaughw@gmail.com>
+ 2016, 2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: eeschema/widgets/*
+Copyright: 2015, Simon Richter <Simon.Richter@hogyros.de>
+License: GPL-2+
+
+Files: eeschema/widgets/tuner_slider.cpp
+ eeschema/widgets/tuner_slider.h
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: gerbview/*
+Copyright: 2007-2016, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/X2_gerber_attributes.cpp
+ gerbview/X2_gerber_attributes.h
+ gerbview/events_called_functions.cpp
+ gerbview/excellon_image.h
+ gerbview/gerber_file_image.h
+ gerbview/gerber_file_image_list.h
+ gerbview/job_file_reader.cpp
+ gerbview/readgerb.cpp
+ gerbview/rs274x.cpp
+Copyright: 2007-2018, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/am_param.cpp
+ gerbview/am_primitive.cpp
+ gerbview/am_primitive.h
+Copyright: 2010, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2017, Jean-Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: gerbview/am_param.h
+Copyright: 2010, 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+ 1992-2017, Jean-Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: gerbview/clear_gbr_drawlayers.cpp
+ gerbview/files.cpp
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/gerber_draw_item.cpp
+ gerbview/gerber_draw_item.h
+Copyright: 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2017, <Jean-Pierre Charras>
+License: GPL-2+
+
+Files: gerbview/dcode.cpp
+ gerbview/menubar.cpp
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/dcode.h
+Copyright: 2010, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2010, KiCad Developers, see change_log.txt for contributors.
+ 1992-2010, Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
+License: GPL-2+
+
+Files: gerbview/dialogs/*
+Copyright: 2011, jean-pierre.charras@gipsa-lab.inpg.fr
+ 2007, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/dialogs/dialog_select_one_pcb_layer.cpp
+Copyright: 2007-2016, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/evaluate.cpp
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+ 1992-2017, Jean-Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: gerbview/excellon_read_drill_file.cpp
+Copyright: 1992-2016, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2016, Jean-Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: gerbview/gerber_collectors.cpp
+ gerbview/gerber_collectors.h
+ gerbview/gerbview_draw_panel_gal.cpp
+ gerbview/gerbview_draw_panel_gal.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: gerbview/gerber_file_image.cpp
+ gerbview/gerber_file_image_list.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: gerbview/gerbview.cpp
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/gerbview_frame.cpp
+Copyright: 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: gerbview/gerbview_frame.h
+Copyright: 2015, 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2011, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: gerbview/gerbview_painter.cpp
+ gerbview/gerbview_painter.h
+Copyright: 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, Jon Evans <jon@craftyjon.com>
+License: GPL-3+
+
+Files: gerbview/rs274d.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: gerbview/toolbars_gerber.cpp
+Copyright: 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 2013, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: gerbview/tools/*
+Copyright: 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, Jon Evans <jon@craftyjon.com>
+License: GPL-3+
+
+Files: include/base_screen.h
+Copyright: 2015, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+ 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2015, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/base_units.h
+ include/frame_type.h
+Copyright: 2012, 2014, 2016, CERN
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/confirm.h
+ include/pcb_display_options.h
+ include/pcb_screen.h
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/bitmaps.h
+ include/build_version.h
+ include/eda_dde.h
+ include/macros.h
+ include/marker_base.h
+Copyright: 2007-2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: include/bin_mod.h
+ include/eda_pattern_match.h
+ include/executable_names.h
+ include/hotkeys_basic.h
+ include/i18n_utility.h
+ include/kiface_ids.h
+ include/lockfile.h
+ include/project.h
+ include/scoped_set_reset.h
+ include/systemdirsappend.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/bitmap_base.h
+Copyright: 2018, jean-pierre.charras jp.charras at wanadoo.fr
+ 2013-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/board_design_settings.h
+Copyright: 2009-2015, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2015, KiCad Developers, see CHANGELOG.txt for contributors.
+License: GPL-2+
+
+Files: include/config_params.h
+Copyright: 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004, 2007, 2009, Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/collector.h
+ include/filter_reader.h
+ include/grid_tricks.h
+ include/import_export.h
+Copyright: 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gbr_netlist_metadata.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: include/common.h
+Copyright: 2014-2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2016, Wayne Stambaugh <stambaughw@verizon.net>
+ 2007-2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/config_map.h
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/core/typeinfo.h
+Copyright: 2012, 2014, 2016, CERN
+ 1992-2013, 2016, 2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/dialog_shim.h
+ include/ki_exception.h
+ include/richio.h
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2007-2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/eda_doc.h
+ include/gestfich.h
+Copyright: 2009-2014, Jerry Jacobs
+ 1992-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: include/dsnlexer.h
+Copyright: 2007-2015, Kicad Developers, see change_log.txt for contributors.
+ 2007-2010, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/eda_base_frame.h
+Copyright: 2011, Wayne Stambaugh <stambaughw@gmail.com>
+ 2009-2015, Jean-Pierre Charras, jp.charras wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/eda_text.h
+Copyright: 2013, Jean-Pierre Charras, jpe.charras at wanadoo.fr
+ 2004-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/enum_vector.h
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: include/env_paths.h
+Copyright: 2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, CERN
+License: GPL-3+
+
+Files: include/footprint_filter.h
+ include/lib_table_grid.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: include/footprint_info.h
+Copyright: 2011, Jean-Pierre Charras, <jp.charras@wanadoo.fr>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/fp_lib_table.h
+Copyright: 2012-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 2012-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2010-2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/gal/cairo/cairo_gal.h
+Copyright: 2012, Torsten Hueter, torstenhtr <at> gmx.de
+ 2012, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gal/color4d.h
+Copyright: 2017, Kicad Developers, see AUTHORS.txt for contributors.
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: include/gal/definitions.h
+Copyright: 2012, Torsten Hueter, torstenhtr <at> gmx.de
+ 2012, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gal/gal_display_options.h
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gal/graphics_abstraction_layer.h
+Copyright: 2012-2017, Kicad Developers, see change_log.txt for contributors.
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: include/gal/hidpi_gl_canvas.h
+Copyright: 2017, Bernhard Stegmaier <stegmaier@sw-systems.de>
+ 2016, 2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gal/opengl/opengl_gal.h
+Copyright: 2013-2017, CERN
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+ 2012, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gal/opengl/shader.h
+Copyright: 2012, Torsten Hueter, torstenhtr <at> gmx.de
+ 2012, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/gr_basic.h
+Copyright: 2015, 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2011, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: include/hashtables.h
+ include/kiway_express.h
+ include/kiway_mgr.h
+ include/ptree.h
+Copyright: 2012-2017, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: include/id.h
+ include/pcb_base_frame.h
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/kicad_curl/*
+Copyright: 2015, Mark Roszko <mark.roszko@gmail.com>
+ 2015, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-3+
+
+Files: include/undo_redo_container.h
+Copyright: 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 2009, jean-pierre.charras@gipsa-lab.inpg.fr
+ 2007, 2009, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/title_block.h
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/kiway.h
+Copyright: 2014-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2010, 2014, 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/kiway_player.h
+Copyright: 2007-2017, KiCad Developers, see change_log.txt for contributors.
+ 2007-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/lib_id.h
+Copyright: 2012, Wayne Stambaugh <stambaughw@gmail.com>
+ 2010-2017, KiCad Developers, see change_log.txt for contributors.
+ 2010-2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/lib_table_base.h
+Copyright: 2012-2017, KiCad Developers, see change_log.txt for contributors.
+ 2012, Wayne Stambaugh <stambaughw@gmail.com>
+ 2010-2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/libeval/*
+Copyright: 2017, Michael Geselbracht, mgeselbracht3@gmail.com
+License: GPL-3+
+
+Files: include/mail_type.h
+ include/search_stack.h
+Copyright: 2014, CERN
+ 1992-2015, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: include/newstroke_font.h
+Copyright: 2010, vladimir uryvaev <vovanius@bk.ru>
+ 1992-2010, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/page_info.h
+Copyright: 2008-2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2013, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/pgm_base.h
+Copyright: 2008-2016, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/plugins/*
+Copyright: 2015-2017, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+License: GPL-2+
+
+Files: include/plugins/3dapi/c3dmodel.h
+ include/plugins/3dapi/xv3d_types.h
+Copyright: 2015-2017, Mario Luzeiro <mrluzeiro@ua.pt>
+ 1992-2019, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/plugins/3dapi/ifsg_defs.h
+Copyright: 2007-2017, KiCad Developers, see change_log.txt for contributors.
+ 2007-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: include/plugins/kicad_plugin.h
+Copyright: 2017, 2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2015, 2016, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+License: GPL-2+
+
+Files: include/preview_items/*
+Copyright: 1992-2018, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/preview_items/selection_area.h
+Copyright: 2013-2018, CERN
+License: GPL-2+
+
+Files: include/preview_items/centreline_rect_item.h
+ include/preview_items/ruler_item.h
+ include/preview_items/two_point_geom_manager.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/preview_items/polygon_item.h
+ include/preview_items/preview_utils.h
+ include/preview_items/simple_overlay_item.h
+Copyright: 1992-2017, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/reporter.h
+ include/validators.h
+Copyright: 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2015, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: include/streamwrapper.h
+Copyright: 2017, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+License: GPL-3+
+
+Files: include/tool/actions.h
+ include/tool/coroutine.h
+ include/tool/tool_base.h
+ include/tool/tool_interactive.h
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2017, CERN
+License: GPL-2+
+
+Files: include/tool/tool_menu.h
+Copyright: 2017, KiCad Developers, see CHANGELOG.txt for contributors.
+License: GPL-2+
+
+Files: include/tool/zoom_tool.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: include/view/view_controls.h
+Copyright: 2013-2016, KiCad Developers, see AUTHORS.txt for contributors.
+ 2013, CERN
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: include/view/wx_view_controls.h
+Copyright: 2013-2015, CERN
+ 2012, Torsten Hueter, torstenhtr <at> gmx.de
+License: GPL-2+
+
+Files: include/widgets/color_swatch.h
+ include/widgets/gal_options_panel.h
+ include/widgets/indicator_icon.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/widgets/footprint_choice.h
+ include/widgets/footprint_select_widget.h
+ include/widgets/stepped_slider.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: include/widgets/footprint_preview_widget.h
+Copyright: 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2017, Chris Pavlina <pavlina.chris@gmail.com>
+License: GPL-3+
+
+Files: include/widgets/mathplot.h
+Copyright: 2016, David Schalig, Davide Rondini
+License: WXWINDOWS
+
+Files: include/widgets/text_ctrl_eval.h
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: include/widgets/widget_hotkey_list.h
+Copyright: 2016, Chris Pavlina <pavlina.chris@gmail.com>
+ 2016, 2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: include/wildcards_and_files_ext.h
+Copyright: 2013, 2015, 2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008, 2012, 2013, Wayne Stambaugh <stambaughw@gmail.com>
+ 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: include/xnode.h
+Copyright: 2010, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2010, KiCAd Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: kicad/*
+Copyright: 2012, Brian Sidebotham <brian.sidebotham@gmail.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: kicad/files-io.cpp
+Copyright: 2004-2017, KiCad Developers, see change_log.txt for contributors.
+ 2004-2015, Jean-Pierre Charras
+License: GPL-2+
+
+Files: kicad/import_project.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: kicad/kicad.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: kicad/menubar.cpp
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: kicad/pgm_kicad.h
+Copyright: 2012-2017, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: pagelayout_editor/files.cpp
+ pagelayout_editor/menubar.cpp
+ pagelayout_editor/pl_editor_frame.cpp
+ pagelayout_editor/pl_editor_frame.h
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2017, CERN
+License: GPL-2+
+
+Files: pagelayout_editor/invoke_pl_editor_dialog.h
+Copyright: 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pagelayout_editor/toolbars_pl_editor.cpp
+Copyright: 2016-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2013-2017, CERN
+License: GPL-3+
+
+Files: pcb_calculator/*
+Copyright: 1992-2015, jean-pierre.charras
+ 1992-2015, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcb_calculator/datafile_read_write.cpp
+ pcb_calculator/transline_ident.cpp
+ pcb_calculator/transline_ident.h
+ pcb_calculator/units_scales.h
+Copyright: 2011-2014, 2016, Jean-Pierre Charras
+ 1992-2016, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcb_calculator/datafile_read_write.h
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcb_calculator/transline/*
+Copyright: 2011, Michael Margraf <michael.margraf@alumni.tu-berlin.de>
+License: GPL-2+
+
+Files: pcb_calculator/transline/c_microstrip.cpp
+Copyright: 2005, 2006, Stefan Jahn <stefan@lkcc.org>
+ 2002, Claudio Girardi <claudio.girardi@ieee.org>
+License: GPL-2+
+
+Files: pcb_calculator/transline/c_microstrip.h
+Copyright: 2005, Stefan Jahn <stefan@lkcc.org>
+ 2002, Claudio Girardi <in3otd@qsl.net>
+License: GPL-2+
+
+Files: pcb_calculator/transline/coax.cpp
+ pcb_calculator/transline/microstrip.cpp
+Copyright: 2005, 2006, Stefan Jahn <stefan@lkcc.org>
+ 2002, Claudio Girardi <claudio.girardi@ieee.org>
+ 2001, Gopal Narayanan <gopal@astro.umass.edu>
+License: GPL-2+
+
+Files: pcb_calculator/transline/coax.h
+ pcb_calculator/transline/microstrip.h
+ pcb_calculator/transline/rectwaveguide.cpp
+ pcb_calculator/transline/rectwaveguide.h
+Copyright: 2005, 2006, Stefan Jahn <stefan@lkcc.org>
+ 2001, Gopal Narayanan <gopal@astro.umass.edu>
+License: GPL-2+
+
+Files: pcb_calculator/transline/coplanar.cpp
+ pcb_calculator/transline/coplanar.h
+Copyright: 2008, Michael Margraf <michael.margraf@alumni.tu-berlin.de>
+ 2005, 2006, Stefan Jahn <stefan@lkcc.org>
+License: GPL-2+
+
+Files: pcb_calculator/transline/transline.cpp
+ pcb_calculator/transline/transline.h
+Copyright: 2005, Stefan Jahn <stefan@lkcc.org>
+License: GPL-2+
+
+Files: pcb_calculator/transline/units.h
+Copyright: 1992-2015, jean-pierre.charras
+ 1992-2015, Kicad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/*
+Copyright: 2004, 2007-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/action_plugin.cpp
+ pcbnew/action_plugin.h
+ pcbnew/board_design_settings.cpp
+ pcbnew/footprint_editor_utils.cpp
+ pcbnew/footprint_libraries_utils.cpp
+ pcbnew/netinfo_list.cpp
+ pcbnew/pcb_plot_params.cpp
+ pcbnew/pcbplot.h
+ pcbnew/plot_board_layers.cpp
+ pcbnew/plot_brditems_plotter.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/autorouter/*
+Copyright: 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2012, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2015, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/autorouter/spread_footprints.cpp
+Copyright: 2012, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 2012, 2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2012, 2013, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/pcb_screen.cpp
+Copyright: 2012, 2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 2012, 2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2012, 2013, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/board_commit.cpp
+ pcbnew/board_commit.h
+ pcbnew/pcb_base_edit_frame.cpp
+ pcbnew/pcb_base_edit_frame.h
+ pcbnew/pcb_draw_panel_gal.cpp
+ pcbnew/pcb_draw_panel_gal.h
+ pcbnew/pcb_painter.cpp
+ pcbnew/pcb_view.cpp
+ pcbnew/pcb_view.h
+Copyright: 2013-2018, CERN
+License: GPL-2+
+
+Files: pcbnew/board_connected_item.cpp
+ pcbnew/pcbnew.cpp
+ pcbnew/pcbplot.cpp
+ pcbnew/zone_settings.cpp
+Copyright: 2015-2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2012, 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/board_connected_item.h
+ pcbnew/load_select_footprint.cpp
+ pcbnew/netinfo_item.cpp
+Copyright: 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2012, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/board_item_container.h
+Copyright: 2012, 2014, 2016, CERN
+ 1992-2013, 2016, 2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/build_BOM_from_board.cpp
+ pcbnew/zone_settings.h
+Copyright: 2008-2015, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/footprint_viewer_frame.cpp
+Copyright: 2012-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008-2017, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/collectors.cpp
+ pcbnew/collectors.h
+Copyright: 2007, 2008, 2011-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2004-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/*
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_update_pcb.cpp
+ pcbnew/dialogs/dialog_update_pcb.h
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_exchange_footprints.h
+ pcbnew/dialogs/dialog_global_edit_tracks_and_vias.cpp
+Copyright: 2009-2016, Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_copper_zones.cpp
+Copyright: 2017, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_create_array.cpp
+ pcbnew/dialogs/dialog_create_array.h
+Copyright: 2014, 2015, John Beard, john.j.beard@gmail.com
+ 1992-2015, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_drc.cpp
+Copyright: 2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2009-2016, Dick Hollenbeck, dick@softplc.com
+ 2004-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_drc.h
+Copyright: 2011, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 2009, Dick Hollenbeck, dick@softplc.com
+ 2004-2012, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_enum_pads.cpp
+ pcbnew/dialogs/dialog_enum_pads.h
+ pcbnew/dialogs/dialog_gencad_export_options.cpp
+ pcbnew/dialogs/dialog_gencad_export_options.h
+ pcbnew/dialogs/dialog_track_via_properties.cpp
+ pcbnew/dialogs/dialog_track_via_properties.h
+Copyright: 2013-2018, CERN
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_exchange_footprints.cpp
+Copyright: 2013, 2015, 2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008, 2012, 2013, Wayne Stambaugh <stambaughw@gmail.com>
+ 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_export_idf.cpp
+Copyright: 2013-2017, KiCad Developers, see change_log.txt for contributors.
+ 2013-2015, Cirilo Bernardo
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_export_step.cpp
+Copyright: 2016-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2016, Cirilo Bernardo
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_export_vrml.cpp
+Copyright: 2013, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 2009-2013, Lorenzo Mercantonio
+ 2004-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_find.cpp
+Copyright: 2018, Jean-Pierre Charras jp.charras at wanadoo.fr
+ 2012, Marco Mattila <marcom99@gmail.com>
+ 1992-2018, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_find.h
+Copyright: 2012, Marco Mattila <marcom99@gmail.com>
+ 2006, Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
+ 1992-2012, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_footprint_wizard_list.cpp
+ pcbnew/dialogs/dialog_footprint_wizard_list.h
+Copyright: 2012-2014, Miguel Angel Ajo <miguelangel@nbee.es>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_gendrill.cpp
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+ 1992-2017, Jean_Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_gendrill.h
+Copyright: 1992-2010, KiCad Developers, see change_log.txt for contributors.
+ 1992-2010, Jean_Pierre Charras <jp.charras@ujf-grenoble.fr>
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_get_footprint_by_name.h
+Copyright: 2008-2015, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_non_copper_zones_properties.cpp
+Copyright: 2012-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2007, 2010, 2012, 2014, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_move_exact.cpp
+ pcbnew/dialogs/dialog_move_exact.h
+Copyright: 2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2014, John Beard, john.j.beard@gmail.com
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_pad_properties.cpp
+ pcbnew/dialogs/dialog_pad_properties.h
+Copyright: 2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2013, Dick Hollenbeck, dick@softplc.com
+ 2008-2013, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/dialogs/dialog_pns_diff_pair_dimensions.cpp
+ pcbnew/dialogs/dialog_pns_diff_pair_dimensions.h
+ pcbnew/dialogs/dialog_pns_settings.cpp
+ pcbnew/dialogs/dialog_pns_settings.h
+Copyright: 2016-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2013-2017, CERN
+License: GPL-3+
+
+Files: pcbnew/dialogs/dialog_track_via_size.cpp
+ pcbnew/dialogs/dialog_track_via_size.h
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: pcbnew/menubar_footprint_editor.cpp
+Copyright: 2013, 2015, Wayne Stambaugh <stambaughw@verizon.net>
+ 2013, 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2013, 2015, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/edit.cpp
+Copyright: 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2016, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2015, Wayne Stambaugh <stambaughw@verizon.net>
+ 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: pcbnew/exporters/*
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+ 1992-2017, Jean_Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: pcbnew/exporters/export_d356.cpp
+Copyright: 2011-2013, Lorenzo Marcantonio <l.marcantonio@logossrl.com>
+ 2004-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/exporters/export_gencad.cpp
+Copyright: 2015-2017, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 2012, Wayne Stambaugh <stambaughw@verizon.net>
+ 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/exporters/export_idf.cpp
+Copyright: 2013-2017, Cirilo Bernardo
+License: GPL-2+
+
+Files: pcbnew/exporters/gen_drill_report_files.cpp
+Copyright: 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2017, Jean_Pierre Charras <jp.charras at wanadoo.fr>
+License: GPL-2+
+
+Files: pcbnew/exporters/gendrill_Excellon_writer.cpp
+Copyright: 2017, Jean_Pierre Charras <jp.charras at wanadoo.fr>
+ 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/exporters/gendrill_file_writer_base.cpp
+Copyright: 2017, Jean_Pierre Charras <jp.charras at wanadoo.fr>
+ 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/exporters/gendrill_gerber_writer.cpp
+ pcbnew/exporters/gerber_jobfile_writer.cpp
+Copyright: 2017, Jean_Pierre Charras <jp.charras at wanadoo.fr>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/files.cpp
+Copyright: 2016, 2017, KiCad Developers, see AUTHORS.txt for contributors.
+ 2011, Wayne Stambaugh <stambaughw@gmail.com>
+ 2004-2015, Jean-Pierre Charras, jp.charras at wanadoo.fr
+License: GPL-2+
+
+Files: pcbnew/footprint_edit_frame.cpp
+Copyright: 2015, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2015, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2015, 2016, Wayne Stambaugh <stambaughw@gmail.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: pcbnew/footprint_edit_frame.h
+ pcbnew/footprint_info_impl.h
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: pcbnew/footprint_info_impl.cpp
+Copyright: 2013-2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2011, Jean-Pierre Charras, <jp.charras@wanadoo.fr>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: pcbnew/footprint_preview_panel.cpp
+ pcbnew/footprint_preview_panel.h
+Copyright: 2017, Chris Pavlina <pavlina.chris@gmail.com>
+ 2016, Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
+ 2016, 2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: pcbnew/footprint_viewer_frame.h
+Copyright: 2018, Jean-Pierre Charras, jap.charras at wanadoo.fr
+ 2004-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/footprint_wizard.cpp
+ pcbnew/footprint_wizard.h
+Copyright: 2013, NBEE Embedded Systems SL, Miguel Angel Ajo <miguelangel@ajo.es>
+ 2013, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/footprint_wizard_frame.cpp
+Copyright: 2012-2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2012-2015, Miguel Angel Ajo Pelayo <miguelangel@nbee.es>
+ 2008-2015, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/footprint_wizard_frame.h
+ pcbnew/footprint_wizard_frame_functions.cpp
+Copyright: 2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2012, Miguel Angel Ajo Pelayo, miguelangel@nbee.es
+ 2004-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/invoke_pcb_dialog.h
+Copyright: 2007-2017, KiCad Developers, see change_log.txt for contributors.
+ 2007-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: pcbnew/kicad_clipboard.cpp
+ pcbnew/kicad_clipboard.h
+Copyright: 1992-2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+License: GPL-2+
+
+Files: pcbnew/menubar_pcb_editor.cpp
+ pcbnew/pcbnew_config.cpp
+Copyright: 2013, 2015, 2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2008, 2012, 2013, Wayne Stambaugh <stambaughw@gmail.com>
+ 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/microwave/*
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/pcb_base_frame.cpp
+Copyright: 2018, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2011, Wayne Stambaugh <stambaughw@verizon.net>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/pcb_edit_frame.cpp
+Copyright: 2017, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2013-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2013, Wayne Stambaugh <stambaughw@gmail.com>
+ 2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-3+
+
+Files: pcbnew/pcb_edit_frame.h
+Copyright: 2010, Jean-Pierre Charras, jp.charras@wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-3+
+
+Files: pcbnew/pcb_layer_box_selector.cpp
+Copyright: 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 1992-2015, Jean-Pierre Charras <jean-pierre.charras@ujf-grenoble.fr>
+License: GPL-2+
+
+Files: pcbnew/pcb_painter.h
+ pcbnew/zone_filler.cpp
+ pcbnew/zone_filler.h
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2017, CERN
+License: GPL-2+
+
+Files: pcbnew/pcb_plot_params.h
+ pcbnew/pcb_plot_params_parser.h
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/plotcontroller.h
+Copyright: 2015, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 2012, Lorenzo Marcantonio, <l.marcantonio@logossrl.com>
+ 1992-2015, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/python/*
+Copyright: no-info-found
+License: GPL-2+
+
+Files: pcbnew/python/plugins/PadArray.py
+Copyright: 2014, john <john@johndev>
+License: GPL-2+
+
+Files: pcbnew/python/plugins/touch_slider_wizard.py
+Copyright: 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/router/*
+Copyright: 2016-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2013-2017, CERN
+License: GPL-3+
+
+Files: pcbnew/router/range.h
+ pcbnew/router/ranged_num.h
+Copyright: 2013-2018, CERN
+License: GPL-3+
+
+Files: pcbnew/specctra_import_export/*
+Copyright: 2007-2017, KiCad Developers, see change_log.txt for contributors.
+ 2007-2014, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: pcbnew/specctra_import_export/specctra_export.cpp
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2007-2016, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+License: GPL-2+
+
+Files: pcbnew/specctra_import_export/specctra_import.cpp
+ pcbnew/specctra_import_export/specctra_test.cpp
+Copyright: 2007-2013, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 1992-2017, KiCad Developers, see change_log.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/tools/*
+Copyright: 2013-2018, CERN
+License: GPL-2+
+
+Files: pcbnew/tools/drawing_tool.cpp
+ pcbnew/tools/pcb_actions.cpp
+ pcbnew/tools/pcb_actions.h
+ pcbnew/tools/zone_filler_tool.cpp
+Copyright: 2012-2018, KiCad Developers, see AUTHORS.txt for contributors.
+ 2012-2017, CERN
+License: GPL-2+
+
+Files: pcbnew/tools/edit_tool.cpp
+Copyright: 2014, 2015, 2017, KiCad Developers, see CHANGELOG.TXT for contributors.
+ 2010, 2013-2017, CERN
+License: GPL-2+
+
+Files: pcbnew/tools/pad_tool.cpp
+ pcbnew/tools/pad_tool.h
+ pcbnew/tools/position_relative_tool.cpp
+ pcbnew/tools/position_relative_tool.h
+ pcbnew/tools/tool_event_utils.cpp
+ pcbnew/tools/tool_event_utils.h
+ pcbnew/tools/zone_create_helper.cpp
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/tools/zone_create_helper.h
+Copyright: 1992-2018, Kicad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/tracks_cleaner.cpp
+Copyright: 2008-2016, Wayne Stambaugh <stambaughw@verizon.net>
+ 2004-2018, Jean-Pierre Charras, jp.charras at wanadoo.fr
+ 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: pcbnew/undo_redo.cpp
+Copyright: 2016, CERN
+ 2012, SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
+ 2012, Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
+ 1992-2016, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: plugins/*
+Copyright: 2015-2017, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+License: GPL-2+
+
+Files: plugins/3d/vrml/x3d.cpp
+Copyright: 2016, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+ 2013, Tuomas Vaherkoski <tuomasvaherkoski@gmail.com>
+ 1992-2015, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: resources/linux/metainfo/org.kicad.kicad.metainfo.xml.in
+Copyright: 2016-2017 Lubomir Rintel <lkundrak@v3.sk>
+ 2016-2021 KiCad Developers, see AUTHORS.txt for contributors.
+License: CC-BY-SA-4.0
+
+Files: scripting/kicadplugins.i
+Copyright: 2012 NBEE Embedded Systems, Miguel Angel Ajo <miguelangel@nbee.es>
+ 1992-2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: tools/*
+Copyright: 1992-2018, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: utils/*
+Copyright: 2016, Cirilo Bernardo <cirilo.bernardo@gmail.com>
+ 2016, 2017, KiCad Developers, see AUTHORS.txt for contributors.
+License: GPL-2+
+
+Files: utils/idftools/*
+Copyright: 2013-2017, Cirilo Bernardo
+License: GPL-2+
+
+Files: debian/*
+Copyright: (C) 2006-2010 Richard A Burton <richardaburton@gmail.com>
+ (C) 2015-2016 Georges Khaznadar <georgesk@debian.org>
+ (C) 2016-2025 Carsten schoenert <c.schoenert@t-online.de>
+License: GPL-2+
+
+Files: debian/kicad-packages-relations.dia
+Copyright: (C) 2022 Carsten schoenert <c.schoenert@t-online.de>
+License: GPL-2+
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS"BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache License,
+ Version 2.0 can be found in '/usr/share/common-licenses/Apache-2.0'.
+
+License: BSD-3-clause
+ Copyright © belongs to the uploader
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1.Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the owner nor the names of its contributors may be
+ used to endorse or promote products derived from this software without
+ specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License: CC-BY-SA-3.0
+ Creative Commons Attribution-ShareAlike 3.0 Unported
+ .
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL
+ SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT
+ RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS.
+ CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND
+ DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
+ .
+ License
+ .
+ THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
+ COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
+ COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
+ AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
+ .
+ BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE
+ BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE
+ CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE
+ IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
+ .
+ 1. Definitions
+ .
+ a. "Adaptation" means a work based upon the Work, or upon the Work and other
+ pre-existing works, such as a translation, adaptation, derivative work,
+ arrangement of music or other alterations of a literary or artistic work,
+ or phonogram or performance and includes cinematographic adaptations or any
+ other form in which the Work may be recast, transformed, or adapted
+ including in any form recognizably derived from the original, except that a
+ work that constitutes a Collection will not be considered an Adaptation for
+ the purpose of this License. For the avoidance of doubt, where the Work is
+ a musical work, performance or phonogram, the synchronization of the Work
+ in timed-relation with a moving image ("synching") will be considered an
+ Adaptation for the purpose of this License.
+ .
+ b. "Collection" means a collection of literary or artistic works, such as
+ encyclopedias and anthologies, or performances, phonograms or broadcasts,
+ or other works or subject matter other than works listed in Section 1(f)
+ below, which, by reason of the selection and arrangement of their contents,
+ constitute intellectual creations, in which the Work is included in its
+ entirety in unmodified form along with one or more other contributions,
+ each constituting separate and independent works in themselves, which
+ together are assembled into a collective whole. A work that constitutes a
+ Collection will not be considered an Adaptation (as defined below) for the
+ purposes of this License.
+ .
+ c. "Creative Commons Compatible License" means a license that is listed at
+ http://creativecommons.org/compatiblelicenses that has been approved by
+ Creative Commons as being essentially equivalent to this License,
+ including, at a minimum, because that license: (i) contains terms that
+ have the same purpose, meaning and effect as the License Elements of this
+ License; and, (ii) explicitly permits the relicensing of adaptations of
+ works made available under that license under this License or a Creative
+ Commons jurisdiction license with the same License Elements as this
+ License.
+ .
+ d. "Distribute" means to make available to the public the original and copies
+ of the Work or Adaptation, as appropriate, through sale or other transfer
+ of ownership.
+ .
+ e. "License Elements" means the following high-level license attributes as
+ selected by Licensor and indicated in the title of this License:
+ Attribution, ShareAlike.
+ .
+ f. "Licensor" means the individual, individuals, entity or entities that
+ offer(s) the Work under the terms of this License.
+ .
+ g. "Original Author" means, in the case of a literary or artistic work, the
+ individual, individuals, entity or entities who created the Work or if no
+ individual or entity can be identified, the publisher; and in addition (i)
+ in the case of a performance the actors, singers, musicians, dancers, and
+ other persons who act, sing, deliver, declaim, play in, interpret or
+ otherwise perform literary or artistic works or expressions of folklore;
+ (ii) in the case of a phonogram the producer being the person or legal
+ entity who first fixes the sounds of a performance or other sounds; and,
+ (iii) in the case of broadcasts, the organization that transmits the
+ broadcast.
+ .
+ h. "Work" means the literary and/or artistic work offered under the terms of
+ this License including without limitation any production in the literary,
+ scientific and artistic domain, whatever may be the mode or form of its
+ expression including digital form, such as a book, pamphlet and other
+ writing; a lecture, address, sermon or other work of the same nature; a
+ dramatic or dramatico-musical work; a choreographic work or entertainment
+ in dumb show; a musical composition with or without words; a
+ cinematographic work to which are assimilated works expressed by a process
+ analogous to cinematography; a work of drawing, painting, architecture,
+ sculpture, engraving or lithography; a photographic work to which are
+ assimilated works expressed by a process analogous to photography; a work
+ of applied art; an illustration, map, plan, sketch or three-dimensional
+ work relative to geography, topography, architecture or science; a
+ performance; a broadcast; a phonogram; a compilation of data to the extent
+ it is protected as a copyrightable work; or a work performed by a variety
+ or circus performer to the extent it is not otherwise considered a literary
+ or artistic work.
+ .
+ i. "You" means an individual or entity exercising rights under this License
+ who has not previously violated the terms of this License with respect to
+ the Work, or who has received express permission from the Licensor to
+ exercise rights under this License despite a previous violation.
+ .
+ j. "Publicly Perform" means to perform public recitations of the Work and to
+ communicate to the public those public recitations, by any means or
+ process, including by wire or wireless means or public digital
+ performances; to make available to the public Works in such a way that
+ members of the public may access these Works from a place and at a place
+ individually chosen by them; to perform the Work to the public by any means
+ or process and the communication to the public of the performances of the
+ Work, including by public digital performance; to broadcast and rebroadcast
+ the Work by any means including signs, sounds or images.
+ .
+ k. "Reproduce" means to make copies of the Work by any means including without
+ limitation by sound or visual recordings and the right of fixation and
+ reproducing fixations of the Work, including storage of a protected
+ performance or phonogram in digital form or other electronic medium.
+ .
+ 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit,
+ or restrict any uses free from copyright or rights arising from limitations
+ or exceptions that are provided for in connection with the copyright
+ protection under copyright law or other applicable laws.
+ .
+ 3. License Grant. Subject to the terms and conditions of this License,
+ Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
+ perpetual (for the duration of the applicable copyright) license to
+ exercise the rights in the Work as stated below:
+ .
+ a. to Reproduce the Work, to incorporate the Work into one or more
+ Collections, and to Reproduce the Work as incorporated in the Collections;
+ .
+ b. to create and Reproduce Adaptations provided that any such Adaptation,
+ including any translation in any medium, takes reasonable steps to clearly
+ label, demarcate or otherwise identify that changes were made to the
+ original Work. For example, a translation could be marked "The original
+ work was translated from English to Spanish," or a modification could
+ indicate "The original work has been modified.";
+ .
+ c. to Distribute and Publicly Perform the Work including as incorporated in
+ Collections; and,
+ .
+ d. to Distribute and Publicly Perform Adaptations.
+ .
+ e. For the avoidance of doubt:
+ .
+ i. Non-waivable Compulsory License Schemes. In those jurisdictions in which
+ the right to collect royalties through any statutory or compulsory
+ licensing scheme cannot be waived, the Licensor reserves the exclusive
+ right to collect such royalties for any exercise by You of the rights
+ granted under this License;
+ .
+ ii. Waivable Compulsory License Schemes. In those jurisdictions in which the
+ right to collect royalties through any statutory or compulsory licensing
+ scheme can be waived, the Licensor waives the exclusive right to collect
+ such royalties for any exercise by You of the rights granted under this
+ License; and,
+ .
+ iii. Voluntary License Schemes. The Licensor waives the right to collect
+ royalties, whether individually or, in the event that the Licensor is a
+ member of a collecting society that administers voluntary licensing
+ schemes, via that society, from any exercise by You of the rights granted
+ under this License.
+ .
+ The above rights may be exercised in all media and formats whether now known
+ or hereafter devised. The above rights include the right to make such
+ modifications as are technically necessary to exercise the rights in other
+ media and formats. Subject to Section 8(f), all rights not expressly granted
+ by Licensor are hereby reserved.
+ .
+ 4. Restrictions. The license granted in Section 3 above is expressly made
+ subject to and limited by the following restrictions:
+ .
+ a. You may Distribute or Publicly Perform the Work only under the terms of
+ this License. You must include a copy of, or the Uniform Resource
+ Identifier (URI) for, this License with every copy of the Work You
+ Distribute or Publicly Perform. You may not offer or impose any terms on
+ the Work that restrict the terms of this License or the ability of the
+ recipient of the Work to exercise the rights granted to that recipient
+ under the terms of the License. You may not sublicense the Work. You must
+ keep intact all notices that refer to this License and to the disclaimer of
+ warranties with every copy of the Work You Distribute or Publicly Perform.
+ When You Distribute or Publicly Perform the Work, You may not impose any
+ effective technological measures on the Work that restrict the ability of a
+ recipient of the Work from You to exercise the rights granted to that
+ recipient under the terms of the License. This Section 4(a) applies to the
+ Work as incorporated in a Collection, but this does not require the
+ Collection apart from the Work itself to be made subject to the terms of
+ this License. If You create a Collection, upon notice from any Licensor You
+ must, to the extent practicable, remove from the Collection any credit as
+ required by Section 4(c), as requested. If You create an Adaptation, upon
+ notice from any Licensor You must, to the extent practicable, remove from
+ the Adaptation any credit as required by Section 4(c), as requested.
+ .
+ b. You may Distribute or Publicly Perform an Adaptation only under the terms
+ of: (i) this License; (ii) a later version of this License with the same
+ License Elements as this License; (iii) a Creative Commons jurisdiction
+ license (either this or a later license version) that contains the same
+ License Elements as this License (e.g., Attribution-ShareAlike 3.0 US));
+ (iv) a Creative Commons Compatible License. If you license the Adaptation
+ under one of the licenses mentioned in (iv), you must comply with the terms
+ of that license. If you license the Adaptation under the terms of any of
+ the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"),
+ you must comply with the terms of the Applicable License generally and the
+ following provisions: (I) You must include a copy of, or the URI for, the
+ Applicable License with every copy of each Adaptation You Distribute or
+ Publicly Perform; (II) You may not offer or impose any terms on the
+ Adaptation that restrict the terms of the Applicable License or the ability
+ of the recipient of the Adaptation to exercise the rights granted to that
+ recipient under the terms of the Applicable License; (III) You must keep
+ intact all notices that refer to the Applicable License and to the
+ disclaimer of warranties with every copy of the Work as included in the
+ Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or
+ Publicly Perform the Adaptation, You may not impose any effective
+ technological measures on the Adaptation that restrict the ability of a
+ recipient of the Adaptation from You to exercise the rights granted to that
+ recipient under the terms of the Applicable License. This Section 4(b)
+ applies to the Adaptation as incorporated in a Collection, but this does
+ not require the Collection apart from the Adaptation itself to be made
+ subject to the terms of the Applicable License.
+ .
+ c. If You Distribute, or Publicly Perform the Work or any Adaptations or
+ Collections, You must, unless a request has been made pursuant to Section
+ 4(a), keep intact all copyright notices for the Work and provide,
+ reasonable to the medium or means You are utilizing: (i) the name of the
+ Original Author (or pseudonym, if applicable) if supplied, and/or if the
+ Original Author and/or Licensor designate another party or parties (e.g., a
+ sponsor institute, publishing entity, journal) for attribution
+ ("Attribution Parties") in Licensor's copyright notice, terms of service or
+ by other reasonable means, the name of such party or parties; (ii) the
+ title of the Work if supplied; (iii) to the extent reasonably practicable,
+ the URI, if any, that Licensor specifies to be associated with the Work,
+ unless such URI does not refer to the copyright notice or licensing
+ information for the Work; and (iv) , consistent with Ssection 3(b), in the
+ case of an Adaptation, a credit identifying the use of the Work in the
+ Adaptation (e.g., "French translation of the Work by Original Author," or
+ "Screenplay based on original Work by Original Author"). The credit
+ required by this Section 4(c) may be implemented in any reasonable manner;
+ provided, however, that in the case of a Adaptation or Collection, at a
+ minimum such credit will appear, if a credit for all contributing authors
+ of the Adaptation or Collection appears, then as part of these credits and
+ in a manner at least as prominent as the credits for the other contributing
+ authors. For the avoidance of doubt, You may only use the credit required
+ by this Section for the purpose of attribution in the manner set out above
+ and, by exercising Your rights under this License, You may not implicitly
+ or explicitly assert or imply any connection with, sponsorship or
+ endorsement by the Original Author, Licensor and/or Attribution Parties, as
+ appropriate, of You or Your use of the Work, without the separate, express
+ prior written permission of the Original Author, Licensor and/or
+ Attribution Parties.
+ .
+ d. Except as otherwise agreed in writing by the Licensor or as may be
+ otherwise permitted by applicable law, if You Reproduce, Distribute or
+ Publicly Perform the Work either by itself or as part of any Adaptations or
+ Collections, You must not distort, mutilate, modify or take other
+ derogatory action in relation to the Work which would be prejudicial to the
+ Original Author's honor or reputation. Licensor agrees that in those
+ jurisdictions (e.g. Japan), in which any exercise of the right granted in
+ Section 3(b) of this License (the right to make Adaptations) would be
+ deemed to be a distortion, mutilation, modification or other derogatory
+ action prejudicial to the Original Author's honor and reputation, the
+ Licensor will waive or not assert, as appropriate, this Section, to the
+ fullest extent permitted by the applicable national law, to enable You to
+ reasonably exercise Your right under Section 3(b) of this License (right to
+ make Adaptations) but not otherwise.
+ .
+ 5. Representations, Warranties and Disclaimer
+ .
+ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS
+ THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND
+ CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING,
+ WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A
+ PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER
+ DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT
+ DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED
+ WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
+ .
+ 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
+ IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY
+ SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING
+ OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+ .
+ 7. Termination
+ .
+ a. This License and the rights granted hereunder will terminate automatically
+ upon any breach by You of the terms of this License. Individuals or
+ entities who have received Adaptations or Collections from You under this
+ License, however, will not have their licenses terminated provided such
+ individuals or entities remain in full compliance with those licenses.
+ Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
+ .
+ b. Subject to the above terms and conditions, the license granted here is
+ perpetual (for the duration of the applicable copyright in the Work).
+ Notwithstanding the above, Licensor reserves the right to release the Work
+ under different license terms or to stop distributing the Work at any time;
+ provided, however that any such election will not serve to withdraw this
+ License (or any other license that has been, or is required to be, granted
+ under the terms of this License), and this License will continue in full
+ force and effect unless terminated as stated above.
+ .
+ 8. Miscellaneous
+ .
+ a. Each time You Distribute or Publicly Perform the Work or a Collection, the
+ Licensor offers to the recipient a license to the Work on the same terms
+ and conditions as the license granted to You under this License.
+ .
+ b. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers
+ to the recipient a license to the original Work on the same terms and
+ conditions as the license granted to You under this License.
+ .
+ c. If any provision of this License is invalid or unenforceable under
+ applicable law, it shall not affect the validity or enforceability of the
+ remainder of the terms of this License, and without further action by the
+ parties to this agreement, such provision shall be reformed to the minimum
+ extent necessary to make such provision valid and enforceable.
+ .
+ d. No term or provision of this License shall be deemed waived and no breach
+ consented to unless such waiver or consent shall be in writing and signed
+ by the party to be charged with such waiver or consent.
+ .
+ e. This License constitutes the entire agreement between the parties with
+ respect to the Work licensed here. There are no understandings, agreements
+ or representations with respect to the Work not specified here. Licensor
+ shall not be bound by any additional provisions that may appear in any
+ communication from You. This License may not be modified without the mutual
+ written agreement of the Licensor and You.
+ .
+ f. The rights granted under, and the subject matter referenced, in this
+ License were drafted utilizing the terminology of the Berne Convention for
+ the Protection of Literary and Artistic Works (as amended on September 28,
+ 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the
+ WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright
+ Convention (as revised on July 24, 1971). These rights and subject matter
+ take effect in the relevant jurisdiction in which the License terms are
+ sought to be enforced according to the corresponding provisions of the
+ implementation of those treaty provisions in the applicable national law.
+ If the standard suite of rights granted under applicable copyright law
+ includes additional rights not granted under this License, such additional
+ rights are deemed to be included in the License; this License is not
+ intended to restrict the license of any rights under applicable law.
+ .
+ Creative Commons Notice
+ .
+ Creative Commons is not a party to this License, and makes no warranty
+ whatsoever in connection with the Work. Creative Commons will not be liable to
+ You or any party on any legal theory for any damages whatsoever, including
+ without limitation any general, special, incidental or consequential damages
+ arising in connection to this license. Notwithstanding the foregoing two (2)
+ sentences, if Creative Commons has expressly identified itself as the Licensor
+ hereunder, it shall have all rights and obligations of Licensor.
+ .
+ Except for the limited purpose of indicating to the public that the Work is
+ licensed under the CCPL, Creative Commons does not authorize the use by either
+ party of the trademark "Creative Commons" or any related trademark or logo of
+ Creative Commons without the prior written consent of Creative Commons. Any
+ permitted use will be in compliance with Creative Commons' then-current
+ trademark usage guidelines, as may be published on its website or otherwise
+ made available upon request from time to time. For the avoidance of doubt,
+ this trademark restriction does not form part of the License.
+
+License: CC-BY-SA-4.0
+ Creative Commons Attribution-ShareAlike 4.0 International Public License
+ .
+ By exercising the Licensed Rights (defined below), You accept and agree to
+ be bound by the terms and conditions of this Creative Commons
+ Attribution-ShareAlike 4.0 International Public License ("Public License").
+ To the extent this Public License may be interpreted as a contract, You are
+ granted the Licensed Rights in consideration of Your acceptance of these
+ terms and conditions, and the Licensor grants You such rights in
+ consideration of benefits the Licensor receives from making the Licensed
+ Material available under these terms and conditions.
+ .
+ Section 1 – Definitions.
+ .
+ a. Adapted Material means material subject to Copyright and Similar Rights
+ that is derived from or based upon the Licensed Material and in which the
+ Licensed Material is translated, altered, arranged, transformed, or
+ otherwise modified in a manner requiring permission under the Copyright
+ and Similar Rights held by the Licensor. For purposes of this Public
+ License, where the Licensed Material is a musical work, performance, or
+ sound recording, Adapted Material is always produced where the Licensed
+ Material is synched in timed relation with a moving image.
+ b. Adapter's License means the license You apply to Your Copyright and
+ Similar Rights in Your contributions to Adapted Material in accordance
+ with the terms and conditions of this Public License.
+ c. BY-SA Compatible License means a license listed at
+ creativecommons.org/compatiblelicenses, approved by Creative Commons as
+ essentially the equivalent of this Public License.
+ d. Copyright and Similar Rights means copyright and/or similar rights closely
+ related to copyright including, without limitation, performance,
+ broadcast, sound recording, and Sui Generis Database Rights, without
+ regard to how the rights are labeled or categorized. For purposes of this
+ Public License, the rights specified in Section 2(b)(1)-(2) are not
+ Copyright and Similar Rights.
+ e. Effective Technological Measures means those measures that, in the absence
+ of proper authority, may not be circumvented under laws fulfilling
+ obligations under Article 11 of the WIPO Copyright Treaty adopted on
+ December 20, 1996, and/or similar international agreements.
+ f. Exceptions and Limitations means fair use, fair dealing, and/or any other
+ exception or limitation to Copyright and Similar Rights that applies to
+ Your use of the Licensed Material.
+ g. License Elements means the license attributes listed in the name of a
+ Creative Commons Public License. The License Elements of this Public
+ License are Attribution and ShareAlike.
+ h. Licensed Material means the artistic or literary work, database, or other
+ material to which the Licensor applied this Public License.
+ i. Licensed Rights means the rights granted to You subject to the terms and
+ conditions of this Public License, which are limited to all Copyright and
+ Similar Rights that apply to Your use of the Licensed Material and that
+ the Licensor has authority to license.
+ j. Licensor means the individual(s) or entity(ies) granting rights under this
+ Public License.
+ k. Share means to provide material to the public by any means or process thati
+ requires permission under the Licensed Rights, such as reproduction,
+ public display, public performance, distribution, dissemination,
+ communication, or importation, and to make material available to the
+ public including in ways that members of the public may access the
+ material from a place and at a time individually chosen by them.
+ l. Sui Generis Database Rights means rights other than copyright resulting
+ from Directive 96/9/EC of the European Parliament and of the Council of 11
+ March 1996 on the legal protection of databases, as amended and/or
+ succeeded, as well as other essentially equivalent rights anywhere in the
+ world.
+ m. You means the individual or entity exercising the Licensed Rights under
+ this Public License. Your has a corresponding meaning.
+ .
+ Section 2 – Scope.
+ .
+ a. License grant.
+ 1. Subject to the terms and conditions of this Public License, the
+ Licensor hereby grants You a worldwide, royalty-free,
+ non-sublicensable, non-exclusive, irrevocable license to exercise the
+ Licensed Rights in the Licensed Material to:
+ A. reproduce and Share the Licensed Material, in whole or in part; and
+ B. produce, reproduce, and Share Adapted Material.
+ 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions
+ and Limitations apply to Your use, this Public License does not apply,
+ and you do not need to comply with its terms and conditions.
+ 3. Term. The term of this Public License is specified in Section 6(a).
+ 4. Media and formats; technical modifications allowed. The Licensor
+ authorizes You to exercise the Licensed Rights in all media and formats
+ whether now known or hereafter created, and to make technical
+ modifications necessary to do so. The Licensor waives and/or agrees not
+ to assert any right or authority to forbid You from making technical
+ modifications necessary to exercise the Licensed Rights, including
+ technical modifications necessary to circumvent Effective Technological
+ Measures. For purposes of this Public License, simply making
+ modifications authorized by this Section 2(a)(4) never produces Adapted
+ Material.
+ 5. Downstream recipients.
+ A. Offer from the Licensor – Licensed Material. Every recipient of the
+ Licensed Material automatically receives an offer from the Licensor
+ to exercise the Licensed Rights under the terms and conditions of
+ this Public License.
+ B. Additional offer from the Licensor – Adapted Material. Every
+ recipient of Adapted Material from You automatically receives an
+ offer from the Licensor to exercise the Licensed Rights in the
+ Adapted Material under the conditions of the Adapter’s License You
+ apply.
+ C. No downstream restrictions. You may not offer or impose any
+ additional or different terms or conditions on, or apply any
+ Effective Technological Measures to, the Licensed Material if doing
+ so restricts exercise of the Licensed Rights by any recipient of
+ the Licensed Material.
+ 6. No endorsement. Nothing in this Public License constitutes or may be
+ construed as permission to assert or imply that You are, or that Your
+ use of the Licensed Material is, connected with, or sponsored,
+ endorsed, or granted official status by, the Licensor or others
+ designated to receive attribution as provided in Section 3(a)(1)(A)(i).
+ .
+ b. Other rights.
+ 1. Moral rights, such as the right of integrity, are not licensed under
+ this Public License, nor are publicity, privacy, and/or other similar
+ personality rights; however, to the extent possible, the Licensor
+ waives and/or agrees not to assert any such rights held by the Licensor
+ to the limited extent necessary to allow You to exercise the Licensed
+ Rights, but not otherwise.
+ 2. Patent and trademark rights are not licensed under this Public License.
+ 3. To the extent possible, the Licensor waives any right to collect
+ royalties from You for the exercise of the Licensed Rights, whether
+ directly or through a collecting society under any voluntary or
+ waivable statutory or compulsory licensing scheme. In all other cases
+ the Licensor expressly reserves any right to collect such royalties.
+ .
+ Section 3 – License Conditions.
+ .
+ Your exercise of the Licensed Rights is expressly made subject to the
+ following conditions.
+ .
+ a. Attribution.
+ 1. If You Share the Licensed Material (including in modified form), You
+ must:
+ A. retain the following if it is supplied by the Licensor with the
+ Licensed Material:
+ i. identification of the creator(s) of the Licensed Material and any
+ others designated to receive attribution, in any reasonable manner
+ requested by the Licensor (including by pseudonym if designated);
+ ii. a copyright notice;
+ iii. a notice that refers to this Public License;
+ iv. a notice that refers to the disclaimer of warranties;
+ v. a URI or hyperlink to the Licensed Material to the extent
+ reasonably practicable;
+ B. indicate if You modified the Licensed Material and retain an
+ indication of any previous modifications; and
+ C. indicate the Licensed Material is licensed under this Public
+ License, and include the text of, or the URI or hyperlink to, this
+ Public License.
+ 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable
+ manner based on the medium, means, and context in which You Share the
+ Licensed Material. For example, it may be reasonable to satisfy the
+ conditions by providing a URI or hyperlink to a resource that includes
+ the required information.
+ 3. If requested by the Licensor, You must remove any of the information
+ required by Section 3(a)(1)(A) to the extent reasonably practicable.
+ .
+ b. ShareAlike.
+ In addition to the conditions in Section 3(a), if You Share Adapted
+ Material You produce, the following conditions also apply.
+ 1. The Adapter’s License You apply must be a Creative Commons license with
+ the same License Elements, this version or later, or a BY-SA Compatible
+ License.
+ 2. You must include the text of, or the URI or hyperlink to, the Adapter's
+ License You apply. You may satisfy this condition in any reasonable
+ manner based on the medium, means, and context in which You Share
+ Adapted Material.
+ 3. You may not offer or impose any additional or different terms or
+ conditions on, or apply any Effective Technological Measures to,
+ Adapted Material that restrict exercise of the rights granted under the
+ Adapter's License You apply.
+ .
+ Section 4 – Sui Generis Database Rights.
+ .
+ Where the Licensed Rights include Sui Generis Database Rights that apply to
+ Your use of the Licensed Material:
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right to
+ extract, reuse, reproduce, and Share all or a substantial portion of the
+ contents of the database;
+ b. if You include all or a substantial portion of the database contents in a
+ database in which You have Sui Generis Database Rights, then the database
+ in which You have Sui Generis Database Rights (but not its individual
+ contents) is Adapted Material, including for purposes of Section 3(b); and
+ c. You must comply with the conditions in Section 3(a) if You Share all or a
+ substantial portion of the contents of the database.
+ .
+ For the avoidance of doubt, this Section 4 supplements and does not replace
+ Your obligations under this Public License where the Licensed Rights include
+ other Copyright and Similar Rights.
+ .
+ Section 5 – Disclaimer of Warranties and Limitation of Liability.
+ .
+ a. Unless otherwise separately undertaken by the Licensor, to the extent
+ possible, the Licensor offers the Licensed Material as-is and as-available,
+ and makes no representations or warranties of any kind concerning the
+ Licensed Material, whether express, implied, statutory, or other. This
+ includes, without limitation, warranties of title, merchantability, fitness
+ for a particular purpose, non-infringement, absence of latent or other
+ defects, accuracy, or the presence or absence of errors, whether or not
+ known or discoverable. Where disclaimers of warranties are not allowed in
+ full or in part, this disclaimer may not apply to You.
+ b. To the extent possible, in no event will the Licensor be liable to You on
+ any legal theory (including, without limitation, negligence) or otherwise
+ for any direct, special, indirect, incidental, consequential, punitive,
+ exemplary, or other losses, costs, expenses, or damages arising out of
+ this Public License or use of the Licensed Material, even if the Licensor
+ has been advised of the possibility of such losses, costs, expenses, or
+ damages. Where a limitation of liability is not allowed in full or in
+ part, this limitation may not apply to You.
+ c. The disclaimer of warranties and limitation of liability provided above
+ shall be interpreted in a manner that, to the extent possible, most
+ closely approximates an absolute disclaimer and waiver of all liability.
+ .
+ Section 6 – Term and Termination.
+ .
+ a. This Public License applies for the term of the Copyright and Similar
+ Rights licensed here. However, if You fail to comply with this Public
+ License, then Your rights under this Public License terminate
+ automatically.
+ b. Where Your right to use the Licensed Material has terminated under
+ Section 6(a), it reinstates:
+ 1. automatically as of the date the violation is cured, provided it is
+ cured within 30 days of Your discovery of the violation; or
+ 2. upon express reinstatement by the Licensor.
+ For the avoidance of doubt, this Section 6(b) does not affect any right
+ the Licensor may have to seek remedies for Your violations of this Public
+ License.
+ c. For the avoidance of doubt, the Licensor may also offer the Licensed
+ Material under separate terms or conditions or stop distributing the
+ Licensed Material at any time; however, doing so will not terminate this
+ Public License.
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
+ .
+ Section 7 – Other Terms and Conditions.
+ .
+ a. The Licensor shall not be bound by any additional or different terms or
+ conditions communicated by You unless expressly agreed.
+ b. Any arrangements, understandings, or agreements regarding the Licensed
+ Material not stated herein are separate from and independent of the terms
+ and conditions of this Public License.
+ .
+ Section 8 – Interpretation.
+ .
+ a. For the avoidance of doubt, this Public License does not, and shall not
+ be interpreted to, reduce, limit, restrict, or impose conditions on any use
+ of the Licensed Material that could lawfully be made without permission
+ under this Public License.
+ b. To the extent possible, if any provision of this Public License is deemed
+ unenforceable, it shall be automatically reformed to the minimum extent
+ necessary to make it enforceable. If the provision cannot be reformed, it
+ shall be severed from this Public License without affecting the
+ enforceability of the remaining terms and conditions.
+ c. No term or condition of this Public License will be waived and no failure
+ to comply consented to unless expressly agreed to by the Licensor.
+ d. Nothing in this Public License constitutes or may be interpreted as a
+ limitation upon, or waiver of, any privileges and immunities that apply to
+ the Licensor or You, including from the legal processes of any jurisdiction
+ or authority.
+
+License: Expat
+ The MIT License
+ .
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated
+ documentation files (the "Software"), to deal in the Software
+ without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to
+ whom the Software is furnished to do so, subject to the
+ following conditions:
+ .
+ The above copyright notice and this permission notice shall
+ be included in all copies or substantial portions of the
+ Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
+ WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General Public
+ License can be found in the file /usr/share/common-licenses/GPL-2'.
+
+License: GPL-3+
+ On Debian systems, the complete text of version 3 of the GNU General
+ Public License can be found in '/usr/share/common-licenses/GPL-3'.
+
+License: LGPL-2.1+
+ On Debian systems, the complete text of version 2.1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
+License: WXWINDOWS
+ The wxWindows Library Licence
+ .
+ Copyright (c) 1998 Julian Smart, Robert Roebling [, ...]
+ .
+ Everyone is permitted to copy and distribute verbatim copies of this licence
+ document, but changing it is not allowed.
+ .
+ WXWINDOWS LIBRARY LICENCE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+ .
+ This library is free software; you can redistribute it and/or modify it under
+ the terms of the GNU Library General Public Licence as published by the Free
+ Software Foundation; either version 2 of the Licence, or (at your option) any
+ later version.
+ .
+ This library is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ FOR A PARTICULAR PURPOSE. See the GNU Library General Public Licence for more
+ details.
+ .
+ You should have received a copy of the GNU Library General Public Licence
+ along with this software, usually in a file named COPYING.LIB. If not, write
+ to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ MA 02110-1301, USA.
+ .
+ EXCEPTION NOTICE
+ .
+ 1. As a special exception, the copyright holders of this library give
+ permission for additional uses of the text contained in this release of
+ the library as licenced under the wxWindows Library Licence, applying
+ either version 3 of the Licence, or (at your option) any later version of
+ the Licence as published by the copyright holders of version 3 of the
+ Licence document.
+ .
+ 2. The exception is that you may use, copy, link, modify and distribute under
+ the user's own terms, binary object code versions of works based on the
+ Library.
+ .
+ 3. If you copy code from files distributed under the terms of the GNU General
+ Public Licence or the GNU Library General Public Licence into a copy of
+ this library, as this licence permits, the exception does not apply to the
+ code that you add in this way. To avoid misleading anyone as to the status
+ of such modified files, you must delete this exception notice from such
+ code and/or adjust the licensing conditions notice accordingly.
+ .
+ 4. If you write modifications of your own for this library, it is your choice
+ whether to permit this exception to apply to your modifications. If you do
+ not wish that, you must delete the exception notice from such code and/or
+ adjust the licensing conditions notice accordingly.
--- /dev/null
+# Configuration file for git-buildpackage and friends
+
+[DEFAULT]
+compression = xz
+debian-branch = debian/sid
+upstream-branch = upstream-latest
+components = [ 'doc', ]
+pristine-tar = True
+
+[pq]
+patch-numbers = False
+
+[dch]
+id-length = 7
+
+[import-orig]
+# filter out unwanted files/dirs from upstream
+filter = [
+ '.bzrignore',
+ '.gitlab-ci.yml',
+ '*.gitignore',
+ 'demos/tiny_tapeout/doc',
+ 'pcb_calculator/docs/tracks_width_thickness.pdf',
+ 'pcb_calculator/docs/tracks_width_formulas.pdf',
+ 'thirdparty/argparse/tools/build.bat',
+ 'thirdparty/sentry-native',
+ ]
+# filter the files out of the tarball passed to pristine-tar
+filter-pristine-tar = True
--- /dev/null
+usr/share/kicad/demos/complex_hierarchy
+usr/share/kicad/demos/custom_pads_test
+usr/share/kicad/demos/ecc83
+usr/share/kicad/demos/flat_hierarchy
+usr/share/kicad/demos/interf_u
+usr/share/kicad/demos/kit-dev-coldfire-xilinx_5213
+
+usr/share/kicad/demos/microwave/microwave.kicad_pcb
+usr/share/kicad/demos/microwave/microwave.kicad_pro
+usr/share/kicad/demos/microwave/shape1.txt usr/share/doc/kicad-demos
+
+usr/share/kicad/demos/pic_programmer
+usr/share/kicad/demos/python_scripts_examples
+usr/share/kicad/demos/simulation
+usr/share/kicad/demos/sonde*
+usr/share/kicad/demos/stickhub
+usr/share/kicad/demos/test_pads_inside_pads
+usr/share/kicad/demos/test_xil_95108
+usr/share/kicad/demos/tiny_tapeout
+usr/share/kicad/demos/video
+usr/share/kicad/demos/vme-wren
--- /dev/null
+Document: kicad-doc-ca
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/ca/
+Files: /usr/share/doc/kicad/help/ca/*.html
+ /usr/share/doc/kicad/help/ca/images/*
--- /dev/null
+usr/share/doc/kicad/help/ca
--- /dev/null
+Document: kicad-doc-de
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/de/
+Files: /usr/share/doc/kicad/help/de/*.html
+ /usr/share/doc/kicad/help/de/images/*
--- /dev/null
+usr/share/doc/kicad/help/de
--- /dev/null
+Document: kicad-doc-en
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/en/
+Files: /usr/share/doc/kicad/help/en/*.html
+ /usr/share/doc/kicad/help/en/images/*
--- /dev/null
+usr/share/doc/kicad/help/en
--- /dev/null
+Document: kicad-doc-es
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/es/
+Files: /usr/share/doc/kicad/help/es/*.html
+ /usr/share/doc/kicad/help/es/images/*
--- /dev/null
+usr/share/doc/kicad/help/es
--- /dev/null
+Document: kicad-doc-fr
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/fr/
+Files: /usr/share/doc/kicad/help/fr/*.html
+ /usr/share/doc/kicad/help/fr/images/*
--- /dev/null
+usr/share/doc/kicad/help/fr
--- /dev/null
+doc/doc/tutorials/hu/*.pdf usr/share/doc/kicad/tutorials/hu
+# doc/doc/help/hu/*.pdf usr/share/doc/kicad/help/hu
--- /dev/null
+Document: kicad-doc-id
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/id/
+Files: /usr/share/doc/kicad/help/id/*.html
+ /usr/share/doc/kicad/help/id/images/*
--- /dev/null
+usr/share/doc/kicad/help/id
--- /dev/null
+Document: kicad-doc-it
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/it/
+Files: /usr/share/doc/kicad/help/it/*.html
+ /usr/share/doc/kicad/help/it/images/*
--- /dev/null
+usr/share/doc/kicad/help/it
--- /dev/null
+Document: kicad-doc-ja
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/ja/
+Files: /usr/share/doc/kicad/help/ja/*.html
+ /usr/share/doc/kicad/help/ja/images/*
--- /dev/null
+usr/share/doc/kicad/help/ja
--- /dev/null
+Document: kicad-doc-pl
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/pl/
+Files: /usr/share/doc/kicad/help/pl/*.html
+ /usr/share/doc/kicad/help/pl/images/*
--- /dev/null
+usr/share/doc/kicad/help/pl
--- /dev/null
+doc/doc/help/pt/*.pdf usr/share/doc/kicad/help/pt
--- /dev/null
+Document: kicad-doc-ru
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/ru/
+Files: /usr/share/doc/kicad/help/ru/*.html
+ /usr/share/doc/kicad/help/ru/images/*
--- /dev/null
+usr/share/doc/kicad/help/ru
--- /dev/null
+doc/doc/tutorials/zh_CN/*.pdf usr/share/doc/kicad/tutorials/zh_CN
--- /dev/null
+Document: kicad-doc-zh
+Title: Various KiCad documentation
+Author: KiCad developer and contributers
+Abstract: Documentation and Manuals for the KiCad EDA suite that was build
+ from the provided source.
+Section: Help/HOWTO
+
+Format: HTML
+Index: /usr/share/doc/kicad/help/zh/
+Files: /usr/share/doc/kicad/help/zh/*.html
+ /usr/share/doc/kicad/help/zh/images/*
--- /dev/null
+usr/share/doc/kicad/help/zh
--- /dev/null
+kicad (6.0.0+dfsg1-1) unstable; urgency=medium
+
+ Changes introduced by kicad 6.0.0
+ ---------------------------------
+
+ Again with this new major version KiCad has some important changes that are
+ backwards incompatible.
+
+ The project file format and also the symbol file format has changed!
+
+ !!! Please make a backup of your existing projects before proceeding !!!
+
+ Further modifications did happen to the environment management of KiCad.
+ Due the new introduced symbol file format you will need to update any local
+ symbol files before you can use them again.
+
+ Please have a look at the README.Debian file for the package kicad, it
+ includes some further information.
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 02 Jan 2021 14:50:00 +0100
+
+kicad (5.0.0+dfsg1-1) unstable; urgency=medium
+
+ Changes introduced by kicad 5.0.0
+ ---------------------------------
+
+ By updating the kicad package from 4.0.7 to 5.x.x some important changes need
+ to be noted.
+
+ The way symbol libraries are defined and accessed has been modified since
+ 4.0.7, this brings in that old schematics will need a remapping. This will
+ happen while open old schematics within a 5.x.x version.
+ !!! Please backup your data before open and modifying your projects !!!
+
+ The official libraries have got a complete rework and aren't backward
+ compatible, once you have used the new libraries your project can't be open
+ in older versions of kicad without a high risk of damage the project.
+
+ The old environment variable KICAD_PTEMPLATES has been replaced by
+ KICAD_TEMPLATE_DIR, you may need adjust the old used name to the new one. A
+ new environment variable KICAD_USER_TEMPLATE_DIR was added which is dedicated
+ for pointing to personal templates from users.
+
+ Please read also README.Debian and also Blogposts and News from the KiCad
+ website. If you not already have visit the KiCad forum you should give it a
+ try.
+
+ http://kicad.org
+ https://forum.kicad.info/
+
+ -- Carsten Schoenert <c.schoenert@t-online.de> Sun, 22 Jul 2018 11:02:00 +0800
--- /dev/null
+[Desktop Entry]
+Name=KiCad
+Comment=Create/Modify/View of PCB's
+GenericName=EDA Software Suite
+Exec=kicad %f
+Terminal=false
+X-MultipleArgs=false
+Type=Application
+Icon=kicad
+Categories=Science;Education;Development;Electronics;
+MimeType=application/x-kicad-project;
+StartupWMClass=KiCad
+StartupNotify=true
+Name[de]=Entwicklung und Bearbeiten von PCB's mit KiCad
+Name[fr]=Suite logicielle de conception électronique
+Comment[de]=Entwicklung von gedruckten elektronsichen Schaltungen
+Comment[fr]=Concevoir un circuit imprimé
+GenericName[de]=EDA Software Lösung
+Keywords=EDA,KiCad,Kicad,
--- /dev/null
+resources/bitmaps_png/icons/icon_kicad.xpm usr/share/pixmaps
+usr/bin/_cvpcb.kiface usr/lib/kicad
+usr/bin/_eeschema.kiface usr/lib/kicad
+usr/bin/_gerbview.kiface usr/lib/kicad
+usr/bin/_kipython.kiface usr/lib/kicad
+usr/bin/_pcb_calculator.kiface usr/lib/kicad
+usr/bin/_pcbnew.kiface usr/lib/kicad
+usr/bin/_pl_editor.kiface usr/lib/kicad
+usr/bin/bitmap2component
+usr/bin/dxf2idf
+usr/bin/eeschema
+usr/bin/gerbview
+usr/bin/idf2vrml
+usr/bin/idfcyl
+usr/bin/idfrect
+usr/bin/kicad
+usr/bin/kicad-cli
+usr/bin/pcb_calculator
+usr/bin/pcbnew
+usr/bin/pl_editor
+usr/lib/@DEB_HOST_MULTIARCH@/kicad/plugins/3d
+usr/lib/@DEB_HOST_MULTIARCH@/libkiapi*
+usr/lib/@DEB_HOST_MULTIARCH@/libkicad*
+usr/lib/@DEB_HOST_MULTIARCH@/libkicommon*
+usr/lib/@DEB_HOST_MULTIARCH@/libkigal*
+usr/lib/python3/dist-packages
+usr/share/applications
+usr/share/icons
+usr/share/kicad/plugins
+# installing the following file into the /u/s/d/kicad and symlink it to
+# /u/s/k/plugins via kicad.links sequencer
+usr/share/kicad/plugins/README-bom.txt usr/share/doc/kicad
+usr/share/kicad/resources
+usr/share/kicad/schemas
+usr/share/kicad/scripting
+usr/share/kicad/template
+usr/share/locale
+usr/share/metainfo
+usr/share/mime
+debian/man/* usr/share/man/man1
--- /dev/null
+# source # target
+usr/lib/kicad/_cvpcb.kiface usr/bin/_cvpcb.kiface
+usr/lib/kicad/_eeschema.kiface usr/bin/_eeschema.kiface
+usr/lib/kicad/_gerbview.kiface usr/bin/_gerbview.kiface
+usr/lib/kicad/_kipython.kiface usr/bin/_kipython.kiface
+usr/lib/kicad/_pcb_calculator.kiface usr/bin/_pcb_calculator.kiface
+usr/lib/kicad/_pcbnew.kiface usr/bin/_pcbnew.kiface
+usr/lib/kicad/_pl_editor.kiface usr/bin/_pl_editor.kiface
+usr/share/doc/kicad/README-bom.txt usr/share/kicad/plugins/README-bom.txt
--- /dev/null
+# Those files are some kind of a library and not executable.
+kicad: no-manual-page [usr/bin/_cvpcb.kiface]
+kicad: no-manual-page [usr/bin/_eeschema.kiface]
+kicad: no-manual-page [usr/bin/_gerbview.kiface]
+kicad: no-manual-page [usr/bin/kicad-cli]
+kicad: no-manual-page [usr/bin/_kipython.kiface]
+kicad: no-manual-page [usr/bin/_pcb_calculator.kiface]
+kicad: no-manual-page [usr/bin/_pcbnew.kiface]
+kicad: no-manual-page [usr/bin/_pl_editor.kiface]
+# Lintian doesn't check that with much intelligence.
+kicad: spelling-error-in-binary aCount account [usr/lib/kicad/_pcbnew.kiface:1]
+kicad: spelling-error-in-binary wTH with [usr/lib/kicad/_eeschema.kiface:1]
+kicad: spelling-error-in-binary wTH with [usr/lib/kicad/_pcbnew.kiface:1]
+# KiCad upstream has no dev package currently nor intend to create one
+kicad: link-to-shared-library-in-wrong-package usr/lib/*-linux-*/libkiapi.so.* [usr/lib/*-linux-*/libkiapi.so]
+kicad: link-to-shared-library-in-wrong-package usr/lib/*-linux-*/libkicad_3dsg.so.* [usr/lib/*-linux-*/libkicad_3dsg.so]
+kicad: link-to-shared-library-in-wrong-package usr/lib/*-linux-*/libkicommon.so.* [usr/lib/*-linux-*/libkicommon.so]
+kicad: link-to-shared-library-in-wrong-package usr/lib/*-linux-*/libkigal.so.* [usr/lib/*-linux-*/libkigal.so]
+kicad: no-symbols-control-file usr/lib/*-linux-*/libkiapi.so.*
+kicad: no-symbols-control-file usr/lib/*-linux-*/libkicad_3dsg.so.*
+kicad: no-symbols-control-file usr/lib/*-linux-*/libkicommon.so.*
+kicad: no-symbols-control-file usr/lib/*-linux-*/libkigal.so.*
+# Related to the above override, we have no dedicated library package.
+kicad: package-name-doesnt-match-sonames libkiapi* libkicad-3dsg* libkicommon* libkigal*
+# This library is for internal use only.
+kicad: ships-undeclared-shared-library libkicad_3dsg 2.0.0 *
--- /dev/null
+debian/man/*.1
--- /dev/null
+.TH bitmap2component 1 "January 19, 2017" "bitmap2component"
+
+.SH NAME
+bitmap2component \- converts a bitmap graphic into a footprint or component.
+
+.SH DESCRIPTION
+.PP
+.B bitmap2component
+The bitmap2component can create a footprint or a component from black/white
+bitmap graphic or a logo. It's possible to create a output file for eeschema
+(*.lib), pcbnew (*.kicad_mod), postscript (*.ps) or the pl_editor
+(*.kicad-wks).
+
+.SH SYNOPSIS
+.B bitmap2component
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+.TH cvpcb 1 "June 15, 2007" "cvpcb"
+
+.SH NAME
+cvpcb \- assign components to a netlist.
+
+.SH DESCRIPTION
+.PP
+.B cvpcb
+allows you to assign each component that appears in the netlist to a component
+footprint which will represent it on a PCB and adds this information to the
+netlist.
+
+.SH SYNOPSIS
+.B cvpcb
+.RI [ netlist ]
+
+.SH AUTHOR
+Richard Antony Burton <richardaburton@gmail.com>
--- /dev/null
+.TH dxf2idf 1 "January 19, 2017" "dxf2idf"
+
+.SH NAME
+dxf2idf \- creates an IDF component outline file from a dxf file.
+
+.SH DESCRIPTION
+.PP
+.B dxf2idf
+This program takes line, arc, and circle segments from a DXF file and creates
+an IDF component outline file. dxf2idf is part of the KiCad suite.
+
+.SH SYNOPSIS
+.B dxf2idf
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+.TH eeschema 1 "June 15, 2007" "eeschema"
+
+.SH NAME
+eeschema \- a powerful schematic capture application.
+
+.SH DESCRIPTION
+.PP
+.B eeschema
+integrates the functions of drawing, control, layout, library management and
+access to the PCB design software. It also allows hierarchical drawings, using
+multi-sheets diagrams. It is intended to work with printed circuit software such
+as pcbnew, to which it will provide the netlist file. Eeschema also integrates a
+component editor which allows the creation, editing and visualization of
+components, as well as the handling of the symbol libraries (import, export,
+addition and deletion of library components).
+
+.SH SYNOPSIS
+.B eeschema
+.RI [ schematic ]
+
+.SH AUTHOR
+Richard Antony Burton <richardaburton@gmail.com>
--- /dev/null
+.TH gerbview 1 "June 15, 2007" "gerbview"
+
+.SH NAME
+gerbview \- viewer for GERBER format files.
+
+.SH SYNOPSIS
+.B gerbview
+.RI [ gerberfile ]
+
+.SH AUTHOR
+Richard Antony Burton <richardaburton@gmail.com>
--- /dev/null
+.TH idf2vrml 1 "June 19, 2017" "idf2vrml"
+
+.SH NAME
+idf2vrml \- create a VRML file from IDF Board (.emn) and one IDF Component file (.emp).
+
+.SH DESCRIPTION
+.PP
+.B idf2vrml
+The idf2vrml tool reads a set of one IDF Board (.emn) and one IDF Component
+file (.emp) and produces a VRML file which can be viewed with a VRML viewer.
+idf2vrml is part of the KiCad suite.
+
+.SH SYNOPSIS
+.B idf2vrml
+\-f input_file.emn \-s scale_factor [\-k] [\-d] [\-z] [\-m]
+
+.SH OPTIONS
+.TP
+.B \-k
+produce KiCad-friendly VRML output; default is compact VRML
+
+.TP
+.B \-d
+suppress substitution of default outlines
+
+.TP
+.B \-z
+suppress rendering of zero-height outlines
+
+.TP
+.B \-m
+print object mapping to stdout for debugging purposes
+
+.SH EXAMPLE
+.sp
+Tto produce a model for use by KiCad:
+.sp
+.if n \{\
+.RS 4
+.\}
+.nf
+idf2vrml \-f input.emn \-s 0.3937008 \-k
+.fi
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+.TH idfcyl 1 "January 19, 2017" "idfcyl"
+
+.SH NAME
+idfcyl \- generates an outline for a cylindrical component.
+
+.SH DESCRIPTION
+.PP
+.B idfcyl
+This program generates an outline for a cylindrical component. The cylinder
+may be horizontal or vertical. A horizontal cylinder may have wires at one or
+both ends. A vertical cylinder may have at most one wire which may be placed
+on the left or right side. idfcyl is part of the KiCad suite.
+
+.SH SYNOPSIS
+.B idfcyl
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+.TH idfrect 1 "January 19, 2017" "idfrect"
+
+.SH NAME
+idfrect \- generates an outline for a rectangular component.
+
+.SH DESCRIPTION
+.PP
+.B idfrect
+This program generates an outline for a rectangular component. The component
+may have a single lead (axial) or a chamfer on the upper left corner. idfrect
+is part of the KiCad suite.
+
+.SH SYNOPSIS
+.B idfrect
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+.TH kicad 1 "June 15, 2007" "kicad"
+
+.SH NAME
+kicad \- manager application for Kicad projects.
+
+.SH DESCRIPTION
+.PP
+The kicad utility program is a project manager that facilitates the use of the
+various programs required to draw schematics, lay out PCBs, generate and check
+the production files.
+
+.SH SYNOPSIS
+.B kicad
+.RI [ project ]
+
+.SH AUTHOR
+Richard Antony Burton <richardaburton@gmail.com>
--- /dev/null
+.TH pcb_caculator 1 "January 19, 2017" "pcb_caculator"
+
+.SH NAME
+pcb_caculator \- tools for calculating the environment on a PCB.
+
+.SH DESCRIPTION
+.PP
+.B pcb_caculator
+A tool for planing and calculating the width of traces, voltage regulators, for
+electrical spacings and RF Attenuators. Also information about color codes for
+resistors and information about board classes are shown.
+
+.SH SYNOPSIS
+.B pcb_caculator
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+.TH pcbnew 1 "June 15, 2007" "pcbnew"
+
+.SH NAME
+pcbnew \- a powerful printed circuit board editor.
+
+.B pcbnew
+manages libraries of modules. Each module is a drawing of the physical
+component, including its footprint, and the layout of pads providing connections
+to the component. The required modules are automatically loaded during the
+reading of the netlist produced by pcbnew.
+
+.SH SYNOPSIS
+.B pcbnew
+.RI [ boardfile ]
+
+.SH AUTHOR
+Richard Antony Burton <richardaburton@gmail.com>
--- /dev/null
+.TH pl_editor 1 "January 15, 2017" "pl_editor"
+
+.SH NAME
+pl_editor \- editor tool to create custom title blocks and frame references.
+
+.B pl_editor
+By the pl_editor the title block and the complete layout of a working sheet in
+eeschema and pcbnew can be fully customized. The editor can modify some basic
+page layout items like lines, rectangles, texts (with format symbols, that will
+be replaced by the actual text, like the date, page number…) and also polygons
+(mainly to place logos and special graphic shapes) and bitmaps. Text can be
+angled in any way.
+
+.SH SYNOPSIS
+.B pl_editor
+.RI [ layoutfile ]
+
+.SH AUTHOR
+Carsten Schoenert <c.schoenert@t-online.de>
--- /dev/null
+From: Carsten Schoenert <c.schoenert@t-online.de>
+Date: Tue, 15 Aug 2023 23:29:09 +0200
+Subject: KiCadFullVersion: Drop hyphen in the string
+
+We don't want the hyphen in the composed string of KICAD_VERSION_FULL so
+this string is representing the complete Debian version in the end.
+
+Forwarded: Not-Needed
+---
+ cmake/KiCadFullVersion.cmake | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/cmake/KiCadFullVersion.cmake b/cmake/KiCadFullVersion.cmake
+index 1907db4..ae1e773 100644
+--- a/cmake/KiCadFullVersion.cmake
++++ b/cmake/KiCadFullVersion.cmake
+@@ -36,5 +36,5 @@ set( KICAD_VERSION_FULL "${KICAD_VERSION}" )
+
+ # Optional user version information defined at configuration.
+ if( KICAD_VERSION_EXTRA )
+- set( KICAD_VERSION_FULL "${KICAD_VERSION_FULL}-${KICAD_VERSION_EXTRA}" )
++ set( KICAD_VERSION_FULL "${KICAD_VERSION_FULL}${KICAD_VERSION_EXTRA}" )
+ endif()
--- /dev/null
+From: Georges Khaznadar <georgesk@debian.org>
+Date: Sat, 3 Sep 2016 17:57:10 +0200
+Subject: Adjusting content in the desktop-files
+
+Almost only extending / modifying the 'Keyword' values to catch up more
+topics.
+---
+ resources/linux/launchers/org.kicad.bitmap2component.desktop.in | 2 +-
+ resources/linux/launchers/org.kicad.kicad.desktop.in | 2 +-
+ resources/linux/launchers/org.kicad.pcbnew.desktop.in | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/resources/linux/launchers/org.kicad.bitmap2component.desktop.in b/resources/linux/launchers/org.kicad.bitmap2component.desktop.in
+index 5e8cc6b..28a7997 100644
+--- a/resources/linux/launchers/org.kicad.bitmap2component.desktop.in
++++ b/resources/linux/launchers/org.kicad.bitmap2component.desktop.in
+@@ -2,7 +2,7 @@
+ Version=1.0
+ Terminal=false
+ Icon=@KICAD_DESKTOP_FILE_ICON_PREFIX@bitmap2component
+-Keywords=bitmap2component;Bitmap;Converter;
++Keywords=Bitmap;Converter;
+ Type=Application
+ Categories=Science;Electronics;
+ Exec=bitmap2component %f
+diff --git a/resources/linux/launchers/org.kicad.kicad.desktop.in b/resources/linux/launchers/org.kicad.kicad.desktop.in
+index 57ba467..3027886 100644
+--- a/resources/linux/launchers/org.kicad.kicad.desktop.in
++++ b/resources/linux/launchers/org.kicad.kicad.desktop.in
+@@ -6,7 +6,7 @@ Type=Application
+ Categories=Science;Electronics;
+ Exec=kicad %f
+ StartupWMClass=kicad
+-Keywords=Projectmanager;
++Keywords=KiCad;Projectmanager;
+ MimeType=application/x-kicad-project;
+ Name=KiCad
+ GenericName=EDA Suite
+diff --git a/resources/linux/launchers/org.kicad.pcbnew.desktop.in b/resources/linux/launchers/org.kicad.pcbnew.desktop.in
+index 470360c..8fd2419 100644
+--- a/resources/linux/launchers/org.kicad.pcbnew.desktop.in
++++ b/resources/linux/launchers/org.kicad.pcbnew.desktop.in
+@@ -1,7 +1,7 @@
+ [Desktop Entry]
+ Version=1.0
+ Terminal=false
+-Keywords=pcbnew;PCB;Circuit;Layout;Design;Editor;Footprint;
++Keywords=PCB;Circuit;Layout;Design;Editor;Footprint;
+ Icon=@KICAD_DESKTOP_FILE_ICON_PREFIX@pcbnew
+ Type=Application
+ Categories=Science;Electronics;
--- /dev/null
+From: Carsten Schoenert <c.schoenert@t-online.de>
+Date: Wed, 5 Jun 2024 18:27:22 +0200
+Subject: demos: Adjust MIME encoding to UTF8 of some libraries
+
+The used strings in the text files did get checked against current
+avaialble license and text files from STM.
+---
+ demos/simulation/gain_control/vca810.lib | 2 +-
+ .../ST_SILICON_CARBIDE_SCHOTTKY_V9.LIB | 38 +++++++++++-----------
+ 2 files changed, 20 insertions(+), 20 deletions(-)
+
+diff --git a/demos/simulation/gain_control/vca810.lib b/demos/simulation/gain_control/vca810.lib
+index e2b907b..8a7ff22 100644
+--- a/demos/simulation/gain_control/vca810.lib
++++ b/demos/simulation/gain_control/vca810.lib
+@@ -18,7 +18,7 @@
+ * Simulator Version: 9.3.80.256 SF-TI
+ * EVM Order Number: N/A
+ * EVM Users Guide: N/A
+-* Datasheet: SBOS275F \96JUNE 2003\96REVISED DECEMBER 2010
++* Datasheet: SBOS275F JUNE 2003 REVISED DECEMBER 2010
+ *
+ * Model Version: 1.0
+ *
+diff --git a/demos/simulation/power_supplies/hv_converter/ST_SILICON_CARBIDE_SCHOTTKY_V9.LIB b/demos/simulation/power_supplies/hv_converter/ST_SILICON_CARBIDE_SCHOTTKY_V9.LIB
+index dc54e29..dfc399d 100644
+--- a/demos/simulation/power_supplies/hv_converter/ST_SILICON_CARBIDE_SCHOTTKY_V9.LIB
++++ b/demos/simulation/power_supplies/hv_converter/ST_SILICON_CARBIDE_SCHOTTKY_V9.LIB
+@@ -5,10 +5,10 @@
+ **********************************************************************
+ *Please Read Carefully:
+ *Information in this document is provided solely in connection with ST products.
+-*STMicroelectronics NV and its subsidiaries (\93ST\94) reserve the right to make :
++*STMicroelectronics NV and its subsidiaries (“ST”) reserve the right to make :
+ *changes, corrections, modifications or improvements, to this document,
+ *and the products and services described herein at any time, without notice.
+-*All ST products are sold pursuant to ST\92s terms and conditions of sale.
++*All ST products are sold pursuant to ST’s terms and conditions of sale.
+ *Purchasers are solely responsible for the choice, selection and use of the ST products, and services described herein,
+ *and ST assumes no liability whatsoever relating to the choice, selection or use of the ST products and services described herein.
+ *No license, express or implied, by estoppel or otherwise, to any intellectual property rights is granted under this document.
+@@ -17,7 +17,7 @@
+ *services, or any intellectual property contained therein or
+ *considered as a warranty covering the use in any manner whatsoever of such third party products or
+ *services or any intellectual property contained therein.
+-*UNLESS OTHERWISE SET FORTH IN ST\92S TERMS AND CONDITIONS OF SALE ST DISCLAIMS ANY EXPRESS OR IMPLIED
++*UNLESS OTHERWISE SET FORTH IN ST’S TERMS AND CONDITIONS OF SALE ST DISCLAIMS ANY EXPRESS OR IMPLIED
+ *WARRANTY WITH RESPECT TO THE USE AND/OR SALE OF ST PRODUCTS INCLUDING WITHOUT LIMITATION IMPLIED
+ *WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (AND THEIR EQUIVALENTS UNDER THE LAWS
+ *OF ANY JURISDICTION), OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT.
+@@ -25,7 +25,7 @@
+ *RECOMMENDED, AUTHORIZED OR WARRANTED FOR USE IN MILITARY, AIR CRAFT, SPACE, LIFE SAVING, OR LIFE SUSTAINING
+ *APPLICATIONS, NOR IN PRODUCTS OR SYSTEMS WHERE FAILURE OR MALFUNCTION MAY RESULT IN PERSONAL INJURY,
+ *DEATH, OR SEVERE PROPERTY OR ENVIRONMENTAL DAMAGE. ST PRODUCTS WHICH ARE NOT SPECIFIED AS "AUTOMOTIVE
+-*GRADE" MAY ONLY BE USED IN AUTOMOTIVE APPLICATIONS AT USER\92S OWN RISK.
++*GRADE" MAY ONLY BE USED IN AUTOMOTIVE APPLICATIONS AT USER’S OWN RISK.
+ *Resale of ST products with provisions different from the statements and/or technical features
+ *set forth in this document shall immediately void any warranty granted by ST for the ST product or
+ *service described herein and shall not create or extend in any manner whatsoever, any liability of ST.
+@@ -34,7 +34,7 @@
+ *The ST logo is a registered trademark of STMicroelectronics.
+ *All other names are the property of their respective owners.
+ *
+-*© 2006 STMicroelectronics - All rights reserved
++*© 2006 STMicroelectronics - All rights reserved
+ *
+ *STMicroelectronics group of companies
+ *Australia - Belgium - Brazil - Canada - China - Czech Republic - Finland - France
+@@ -94,7 +94,7 @@
+ *******************************************************************
+ * Model name : STPSC606G-TR
+ * Description : Power Schottky SiC rectifier
+-* Package type : D²PAK
++* Package type : D2PAK
+ *******************************************************************
+ .MODEL STPSC606G-TR D
+ + IS=548.81E-18 N=.99749 RS=78.375E-3 IKF=996.79 XTI=2 EG=3.26 CJO=360.14E-12
+@@ -278,7 +278,7 @@ d1 3 4 dx
+ *******************************************************************
+ * Model name : STPSC6H065G-TR
+ * Description : Power Schottky rectifier
+-* Package type : D²PAK in tape&reel
++* Package type : D2PAK in tape&reel
+ *******************************************************************
+ *model STPSC6H065G-TR anode
+ * | cathode
+@@ -288,7 +288,7 @@ d1 3 4 dx
+ .model dx D(IS=1.0831E-15 N=1.0873 RS=92.529E-3 IKF=1.8184 CJO=289.19E-12 M=.44088
+ + VJ=1.6095 ISR=34.491E-9 NR=2.6336 FC=0.5 TT=0 XTI=2 EG=3.26)
+
+-* STMicroelectronics case=D²PAK Delivery = Tape & reel
++* STMicroelectronics case=D2PAK Delivery = Tape & reel
+ .ends
+
+ *******************************************************************
+@@ -359,7 +359,7 @@ d1 3 4 dx
+ *******************************************************************
+ * Model name : STPSC8H065G-TR
+ * Description : Power Schottky rectifier
+-* Package type : D²PAK in tape&reel
++* Package type : D2PAK in tape&reel
+ *******************************************************************
+ *model STPSC8H065G-TR anode
+ * | cathode
+@@ -369,7 +369,7 @@ d1 3 4 dx
+ .model dx D(IS=15.653E-18 N=.93123 RS=77.690E-3 IKF=1.0000E3 CJO=409.87E-12 M=.43606
+ + VJ=1.5432 ISR=54.323E-9 NR=1.8317 FC=0.5 TT=0 XTI=2 EG=3.26)
+
+-* STMicroelectronics case=D²PAK Delivery = Tape & reel
++* STMicroelectronics case=D2PAK Delivery = Tape & reel
+ .ends
+
+ *******************************************************************
+@@ -431,7 +431,7 @@ d1 3 4 dx
+ *******************************************************************
+ * Model name : STPSC10H065G-TR
+ * Description : Power Schottky rectifier
+-* Package type : D²PAK in tape&reel
++* Package type : D2PAK in tape&reel
+ *******************************************************************
+ *model STPSC10H065G-TR anode
+ * | cathode
+@@ -441,7 +441,7 @@ d1 3 4 dx
+ .model dx D(IS=510.14E-21 N=.94967 RS=54.909E-3 IKF=1.0000E3 CJO=483.36E-12 M=.44365
+ + VJ=1.7167 ISR=55.766E-9 NR=2.8818 FC=0.5 TT=0 XTI=2 EG=3.26)
+
+-* STMicroelectronics case=D²PAK Delivery = Tape & reel
++* STMicroelectronics case=D2PAK Delivery = Tape & reel
+ .ends
+
+ *******************************************************************
+@@ -549,7 +549,7 @@ d1 3 4 dx
+ *******************************************************************
+ * Model name : STPSC12H065G-TR
+ * Description : Power Schottky rectifier
+-* Package type : D²PAK in tape&reel
++* Package type : D2PAK in tape&reel
+ *******************************************************************
+ *model STPSC12H065G-TR anode
+ * | cathode
+@@ -559,7 +559,7 @@ d1 3 4 dx
+ .model dx D(IS=1.0773E-15 N=1.0548 RS=50.078E-3 IKF=8.2204 CJO=602.01E-12 M=.43897
+ + VJ=1.6031 ISR=201.30E-9 NR=2.6372 FC=0.5 TT=0 XTI=2 EG=3.26)
+
+-* STMicroelectronics case=D²PAK Delivery = Tape & reel
++* STMicroelectronics case=D2PAK Delivery = Tape & reel
+ .ends
+
+ *******************************************************************
+@@ -766,7 +766,7 @@ d2 3 2 dx
+ *******************************************************************
+ * Model name : STPSC10H12G2-TR
+ * Description : 1200 V, 10 A, silicon carbide power Schottky diode
+-* Package type : D²PAK HV in tape&reel
++* Package type : D2PAK HV in tape&reel
+ *******************************************************************
+ *model STPSC10H12G2-TR anode
+ * | cathode
+@@ -802,7 +802,7 @@ d1 3 4 dx
+ *******************************************************************
+ * Model name : STPSC15H12G2-TR
+ * Description : 1200 V, 10 A, silicon carbide power Schottky diode
+-* Package type : D²PAK HV in tape&reel
++* Package type : D2PAK HV in tape&reel
+ *******************************************************************
+ *model STPSC15H12G2-TR anode
+ * | cathode
+@@ -856,7 +856,7 @@ d2 3 2 dx
+ *******************************************************************
+ * Model name : STPSC20H12G
+ * Description : Power Schottky rectifier
+-* Package type : D²PAK in tape&reel
++* Package type : D2PAK in tape&reel
+ *******************************************************************
+ *model STPSC20H12G anode
+ * | cathode
+@@ -866,13 +866,13 @@ d1 3 4 dx
+ .model dx D(IS=30.694E-15 N=1.1357 RS=16.654E-3 IKF=3.5832 CJO=1.6E-9 M=.4315
+ + VJ=1.1575 ISR=412.90E-9 NR=4.9461 TT=0 XTI=2 EG=3.26 FC=0.5)
+
+-* STMicroelectronics case=D²PAK Delivery = Tape & reel
++* STMicroelectronics case=D2PAK Delivery = Tape & reel
+ .ends
+
+ *******************************************************************
+ * Model name : STPSC20H12G2-TR
+ * Description : 1200 V, 10 A, silicon carbide power Schottky diode
+-* Package type : D²PAK HV in tape&reel
++* Package type : D2PAK HV in tape&reel
+ *******************************************************************
+ *model STPSC20H12G2-TR anode
+ * | cathode
--- /dev/null
+From: Carsten Schoenert <c.schoenert@t-online.de>
+Date: Thu, 18 Jul 2024 16:50:22 +0200
+Subject: python: Use raw-strings expressions
+
+Python 3.12 is now more pedantic about the used string regexp syntax in
+re.* functions.
+---
+ eeschema/python_scripts/kicad_netlist_reader.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/eeschema/python_scripts/kicad_netlist_reader.py b/eeschema/python_scripts/kicad_netlist_reader.py
+index 1a4146e..5d105d6 100644
+--- a/eeschema/python_scripts/kicad_netlist_reader.py
++++ b/eeschema/python_scripts/kicad_netlist_reader.py
+@@ -745,7 +745,7 @@ class netlist():
+ # the normal sort would place 100 before 99 since it only would look at the first digit.
+ def sortKey( str ):
+ return [ int(t) if t.isdigit() else t.lower()
+- for t in re.split( '(\d+)', str ) ]
++ for t in re.split( r'(\d+)', str ) ]
+
+ ret.sort(key=lambda g: sortKey(g.getRef()))
+
+@@ -791,7 +791,7 @@ class netlist():
+ # the normal sort would place 100 before 99 since it only would look at the first digit.
+ def sortKey( str ):
+ return [ int(t) if t.isdigit() else t.lower()
+- for t in re.split( '(\d+)', str ) ]
++ for t in re.split( r'(\d+)', str ) ]
+
+ for g in groups:
+ #g = sorted(g, key=lambda g: sortKey(g.getRef()))
--- /dev/null
+From: Carsten Schoenert <c.schoenert@t-online.de>
+Date: Thu, 13 Oct 2016 21:08:18 +0200
+Subject: doc: Add field 'revdate' to asciidoc files
+
+For reproducibility we need to set up a date that's not depending on the
+current time and timezone. We add a extra asciidoc control field
+'revdate' and expand the variable behind that while building the package
+with the date from the changelog file.
+
+Note!
+Unfortunately using the modified files in the way it's originally
+intended breaks the build of the source by using dpkg-buildpackage twice
+in a row. Until this issue is solved the added fields are now commented
+out.
+
+Forwarded: Not-Needed
+---
+ doc/src/doc_writing_style_policy/doc_writing_style_policy.adoc | 1 +
+ doc/src/eeschema/eeschema.adoc | 1 +
+ doc/src/gerbview/gerbview.adoc | 1 +
+ doc/src/getting_started_in_kicad/getting_started_in_kicad.adoc | 1 +
+ doc/src/kicad/kicad.adoc | 1 +
+ doc/src/pcbnew/pcbnew.adoc | 1 +
+ doc/src/pl_editor/pl_editor.adoc | 1 +
+ 7 files changed, 7 insertions(+)
+
+diff --git a/doc/src/doc_writing_style_policy/doc_writing_style_policy.adoc b/doc/src/doc_writing_style_policy/doc_writing_style_policy.adoc
+index c852dc7..7bbad39 100644
+--- a/doc/src/doc_writing_style_policy/doc_writing_style_policy.adoc
++++ b/doc/src/doc_writing_style_policy/doc_writing_style_policy.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: article
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+
+diff --git a/doc/src/eeschema/eeschema.adoc b/doc/src/eeschema/eeschema.adoc
+index a126c0f..a5ec506 100644
+--- a/doc/src/eeschema/eeschema.adoc
++++ b/doc/src/eeschema/eeschema.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: book
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+ :experimental:
+diff --git a/doc/src/gerbview/gerbview.adoc b/doc/src/gerbview/gerbview.adoc
+index 255dc15..457fb9f 100644
+--- a/doc/src/gerbview/gerbview.adoc
++++ b/doc/src/gerbview/gerbview.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: article
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+
+diff --git a/doc/src/getting_started_in_kicad/getting_started_in_kicad.adoc b/doc/src/getting_started_in_kicad/getting_started_in_kicad.adoc
+index 14fa227..1895c6c 100644
+--- a/doc/src/getting_started_in_kicad/getting_started_in_kicad.adoc
++++ b/doc/src/getting_started_in_kicad/getting_started_in_kicad.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: book
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+ :experimental:
+diff --git a/doc/src/kicad/kicad.adoc b/doc/src/kicad/kicad.adoc
+index b0abb0c..e8d5486 100644
+--- a/doc/src/kicad/kicad.adoc
++++ b/doc/src/kicad/kicad.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: book
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+ :experimental:
+diff --git a/doc/src/pcbnew/pcbnew.adoc b/doc/src/pcbnew/pcbnew.adoc
+index 684c649..6ae6d49 100644
+--- a/doc/src/pcbnew/pcbnew.adoc
++++ b/doc/src/pcbnew/pcbnew.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: book
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+ :figure-caption!:
+diff --git a/doc/src/pl_editor/pl_editor.adoc b/doc/src/pl_editor/pl_editor.adoc
+index e991f4b..5cd7685 100644
+--- a/doc/src/pl_editor/pl_editor.adoc
++++ b/doc/src/pl_editor/pl_editor.adoc
+@@ -1,5 +1,6 @@
+ :author: The KiCad Team
+ :doctype: article
++//:revdate: @REVDATE@
+ :toc:
+ :ascii-ids:
+
--- /dev/null
+fixes/Adjusting-content-in-the-desktop-files.patch
+reproducibility/doc-Add-field-revdate-to-asciidoc-files.patch
+debian-hacks/KiCadFullVersion-Drop-hyphen-in-the-string.patch
+fixes/demos-Adjust-MIME-encoding-to-UTF8-of-some-libraries.patch
+fixes/python-Use-raw-strings-expressions.patch
--- /dev/null
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+
+export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/architecture.mk
+include /usr/share/dpkg/buildflags.mk
+CFLAGS+=$(CPPFLAGS)
+CXXFLAGS+=$(CPPFLAGS)
+
+# workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81358
+ifneq (,$(filter $(DEB_HOST_ARCH), armel m68k powerpc sh4))
+ export DEB_LDFLAGS_MAINT_APPEND += -Wl,--no-as-needed -latomic -Wl,--as-needed
+endif
+
+# out of tree build folder for kicad application
+DEB_BUILD_DIR=debian/build
+# default install folder
+INSTDIR=$(CURDIR)/debian/tmp
+# catching make jobs from DEB_BUILD_OPTIONS
+PARALLEL_BUILD=$(echo $DEB_BUILD_OPTIONS | sed -e '/parallel=/!s/.*/1/;s/.*parallel=\([0-9]\+\).*/\1/g')
+
+# other variables
+include /usr/share/dpkg/pkg-info.mk
+DEB_VERSION_APPENDIX = $(shell echo $(DEB_VERSION) | sed 's/.*+/+/')
+DATE = $(shell date +'%Y-%m-%d' -d@"$(SOURCE_DATE_EPOCH)")
+export REVDATE := $(shell TZ=UTC date -d@"$(SOURCE_DATE_EPOCH)" +%Y-%m-%d)
+
+PREPROCESS_FILES := $(wildcard debian/*.in)
+
+ASCIIDOCFILES := \
+ doc/src/doc_writing_style_policy/doc_writing_style_policy.adoc \
+ doc/src/eeschema/eeschema.adoc \
+ doc/src/gerbview/gerbview.adoc \
+ doc/src/getting_started_in_kicad/getting_started_in_kicad.adoc \
+ doc/src/kicad/kicad.adoc \
+ doc/src/pcbnew/pcbnew.adoc \
+ doc/src/pl_editor/pl_editor.adoc \
+ $(NULL)
+
+DEB_KICAD_CMAKE_OPTS := \
+ -DCMAKE_CXX_FLAGS="$(CXXFLAGS) -DNDEBUG" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_SHARED_LINKER_FLAGS_RELEASE="$(LDFLAGS)" \
+ -DKICAD_BUILD_I18N=ON \
+ -DKICAD_I18N_UNIX_STRICT_PATH=ON \
+ -DKICAD_INSTALL_DEMOS=ON \
+ -DKICAD_SCRIPTING_WXPYTHON=ON \
+ -DKICAD_SPICE=ON \
+ -DKICAD_USE_CMAKE_FINDPROTOBUF=ON \
+ -DKICAD_USE_EGL=OFF \
+ -DKICAD_VERSION_EXTRA="$(DEB_VERSION_APPENDIX)" \
+ $(NULL)
+
+DEB_DOC_CMAKE_OPTS := \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_FORMATS=html \
+ $(NULL)
+
+$(PREPROCESS_FILES:.in=): %: %.in
+ sed -e 's,/@DEB_HOST_MULTIARCH@,$(DEB_HOST_MULTIARCH:%=/%),g' $< > $@
+
+%:
+ dh $@ --with-python3
+
+override_dh_clean:
+ dh_clean
+ rm -rf $(DEB_BUILD_DIR)
+ find -type d -name ".mypy_cache" -delete
+
+override_dh_auto_configure:
+ #sed -i 's/@REVDATE@/$(REVDATE)/' $(ASCIIDOCFILES)
+ mkdir -p $(DEB_BUILD_DIR)
+ #################################
+ # configuring KiCad application #
+ #################################
+ dh_auto_configure --sourcedirectory=$(CURDIR) --builddirectory=$(DEB_BUILD_DIR) -- $(DEB_KICAD_CMAKE_OPTS)
+ ###################################
+ # configuring KiCad documentation #
+ ###################################
+ dh_auto_configure --sourcedirectory=$(CURDIR)/doc --builddirectory=$(DEB_BUILD_DIR)/doc -- $(DEB_DOC_CMAKE_OPTS)
+
+override_dh_auto_build-arch:
+ ##############################
+ # building KiCad application #
+ ##############################
+ dh_auto_build --sourcedirectory=$(CURDIR) --builddirectory=$(DEB_BUILD_DIR)
+
+override_dh_auto_build-indep:
+ ################################
+ # building KiCad documentation #
+ ################################
+ dh_auto_build --sourcedirectory=$(CURDIR)/doc --builddirectory=$(DEB_BUILD_DIR)/doc
+
+override_dh_auto_install-arch: $(PREPROCESS_FILES:.in=)
+ ################################
+ # installing KiCad application #
+ ################################
+ dh_auto_install --destdir=$(INSTDIR) --sourcedirectory=$(CURDIR) --builddirectory=$(DEB_BUILD_DIR)
+ # Removing a potentially added RUNPATH from the Pcbnew Python library.
+ chrpath --delete $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/_pcbnew.so
+ # some tweaks before running the next dh sequencers
+ # fixing icon sizes
+ IMAGES=$$(find $(INSTDIR)/usr/share/icons/hicolor/48x48 -name "*.png"); \
+ for FILE in $${IMAGES}; do \
+ SIZE=$$(identify $${FILE} | sed -n 's/.* PNG \(4[^ ]*\) .*/\1/ p'); \
+ if [ "$${SIZE}" != "48x48" ]; then \
+ echo "Resize $$(basename $${FILE}) : $${SIZE} => 48x48"; \
+ convert -resize '48x48!' $$f $${FILE}.tmp && mv $${FILE}.tmp $${FILE}; \
+ fi; \
+ done
+
+override_dh_auto_install-indep: $(PREPROCESS_FILES:.in=)
+ ##########################
+ # installing KiCad demos #
+ ##########################
+ dh_auto_install --destdir=$(INSTDIR) --sourcedirectory=$(CURDIR) --builddirectory=$(DEB_BUILD_DIR)/demos
+ # Remove any uneeded License or Readme related files in kicad-demos.
+ find $(INSTDIR)/usr/share/kicad/demos -type f \( -name "*.md" -o -name "LICENSE*" -o -name "README*" \) -exec rm {} \;
+ ##################################
+ # installing KiCad documentation #
+ ##################################
+ dh_auto_install --destdir=$(INSTDIR) --sourcedirectory=$(CURDIR)/doc --builddirectory=$(DEB_BUILD_DIR)/doc
+
+override_dh_install-arch:
+ dh_install -a
+ dh_python3
+ # The KiCad XPM icon comes with a to high resolution, fixing before install.
+ convert -resize '32x32!' $(CURDIR)/debian/kicad/usr/share/pixmaps/icon_kicad.xpm $(CURDIR)/debian/kicad/usr/share/pixmaps/icon_kicad.xpm
+
+override_dh_install-indep:
+ dh_install -i
+
+override_dh_fixperms-arch:
+ dh_fixperms
+ # fixing file permissions for *.py files in kicad
+ for FILE in `find $(CURDIR)/debian/kicad/usr -type f -name "*.py"`; do \
+ FOUND_PYTHON=$$(head -n1 $${FILE} | grep python); \
+ if [ "$${FOUND_PYTHON}" != "" ]; then \
+ chmod +x $${FILE}; \
+ else \
+ chmod -x $${FILE}; \
+ fi; \
+ done
+
+override_dh_missing:
+ dh_missing --exclude usr/share/doc/kicad/scripts/lib_convert.py \
+ --exclude usr/share/doc/kicad/scripts/test_plugin.py \
+ --exclude usr/share/doc/kicad/scripts/test_kicad_plugin.py \
+ --exclude usr/share/doc/kicad/scripts/ddr3_length_match.py
+
+override_dh_strip-arch:
+ dh_strip
+ # strip unneeded symbols from the kicad specific libraries in /usr/lib/kicad/
+ strip --strip-unneeded --remove-section=.comment $(CURDIR)/debian/kicad/usr/lib/kicad/_*.kiface
+
+override_dh_makeshlibs:
+ dh_makeshlibs -a \
+ -Xlibkicad_3dsg \
+ -Xlibs3d_plugin_idf \
+ -Xlibs3d_plugin_oce \
+ -Xlibs3d_plugin_vrml \
+ -X_pcbnew.$(DEB_HOST_MULTIARCH)
+
+override_dh_dwz:
+# dh_dwz is running out of memory on armhf, see #1091284
+ifneq ($(DEB_BUILD_ARCH),armhf)
+ dh_dwz
+endif
--- /dev/null
+3.0 (quilt)
--- /dev/null
+debian/kicad-packages-relations.dia
--- /dev/null
+# There is a quite long line in the file.
+source: source-is-missing [doxygen/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js]
+# Ignore this, there will be no signature ever.
+source: debian-watch-does-not-check-openpgp-signature [debian/watch]
+# Irrelevant for us.
+source: uses-deprecated-python-stdlib distutils (deprecated in Python 3.10, removed in Python 3.12) [thirdparty/pybind11/pybind11/setup_helpers.py:60]
+source: uses-deprecated-python-stdlib distutils (deprecated in Python 3.10, removed in Python 3.12) [thirdparty/pybind11/pybind11/setup_helpers.py:61]
--- /dev/null
+Tests:
+ smoke,
+Depends:
+ kicad,
+Restrictions:
+ allow-stderr,
+ skippable,
+ superficial,
--- /dev/null
+#!/usr/bin/python3
+
+'''
+Really simple test to see if the pcbnew package can be imported.
+Right now there are no additional functional tests. If you can provide some
+usefull tests here please provide your suggestions via the BTS.
+
+'''
+
+import pcbnew
--- /dev/null
+Bug-Database: https://gitlab.com/kicad/code/kicad/-/issues
+Bug-Submit: https://gitlab.com/kicad/code/kicad/-/issues/new
+Repository: https://gitlab.com/kicad/code/kicad.git
+Repository-Browse: https://gitlab.com/kicad/code/kicad
--- /dev/null
+# No real watch provided.
+# Upstream is not always available in unix format and includes components that
+# we normally remove for licence reasons.
+# Upstream is packaged from git with some tweaks, see README.source.
+version=4
+
+# We ignore all x.99.x versions and map them back to x.0.x
+
+opts="mode=git, \
+ uversionmangle=s/-(beta|rc|dev)/~$1/; \
+ s/\.-(beta|rc|dev)\.\d.*//; \
+ s/\.99/\.0/; \
+ s/\.\.//,\
+ dversionmangle=s/\+dfsg(\.?\d+)?$//" \
+ https://gitlab.com/kicad/code/kicad.git \
+ refs/tags/(\d+\.\d+\.\d+(?:\.?beta[1-9])?)