[fpga-icestorm] branch master updated (604e1b3 -> be437c7)

Ruben Undheim rubund-guest at moszumanska.debian.org
Fri Oct 7 19:52:12 UTC 2016


This is an automated email from the git hooks/post-receive script.

rubund-guest pushed a change to branch master
in repository fpga-icestorm.

      from  604e1b3   UNRELEASED->unstable
      adds  30cb298   fix a few spelling mistakes in error messages
      adds  798eb52   fix a few spelling errors
      adds  19ea5dd   Merge pull request #31 from SebKuzminsky/spelling-fixes
      adds  43e7741   Use pkg-config for libftdi
      adds  0ac6a35   Fixed make_lc40 with y=0 bug #32
      adds  6178dfb   Added Makefile support for "make STATIC=1"
      adds  3587093   Fix iceprog on Windows opening binary in text mode
      adds  a1fd644   Merge pull request #35 from benpye/fix-iceprog-windows
      adds  b1d6d0a   Added "icetime -c"
      adds  58a2aa2   Improvements in iceprog
      adds  53670d2   Added some IDs for deep-links to index.html
      adds  af36a8a   Fixes for MXE build
      adds  66e35e3   Added icebram test bench
      adds  0e14172   Added icebram skeleton
      adds  2c553ba   Added icebram bitslice replacer
      adds  8503d3e   Finished icebram
      adds  a4e1fe2   Merge branch 'feat-icebram'
      adds  6e07df9   Added icebram to top-level Makefile
      adds  37cc00c   Added IceBRAM to docs
      adds  9ebed4d   Added FILTER_RANGE support to icepll
      adds  dcf4e6c   Added icebox noplls_db
      adds  bafd99b   Added icetime json output format (icetime -j)
      adds  a2f635f   icetime: json now contains net and hwnet
      adds  a9ca5ef   icetime: only include "net" in json output if different from hwnet
      adds  a3510a4   Some icetime json format fixes
      adds  1b7253a   Added missing #include <stdlib.h> to iceprog.c
      adds  4fbc8d2   Bugfix for when e.g. PLL LOCK drives longest path
      adds  fb67695   Make clang optional
      adds  4903aa5   Merge pull request #44 from dvc94ch/clang-optional
      adds  857ed83   Using ?= for all config.mk entries
      adds  d4c0a01   Minor icebram improvements
      adds  6a0fabc   Better icetime error message for empty designs
      adds  c9ea734   Typo fix in "icebox_vlog --help"
      adds  49e3ad4   Bugfix in icetime .pcf parser
      adds  09387a0   Added icefuzz/glbcheck.py
      adds  0597f41   Added "icecube.sh -ul1k"
      adds  75fd59c   Added icedude link
      adds  3578b35   Give priority to libftdi1 over libftdi
      adds  5d14357   Merge pull request #48 from Jesus89/libftdi
      adds  8a7a746   Explicitly ask for vasprintf where appropriate.
      adds  12b2295   Only define _GNU_SOURCE for vasprintf() when not _WIN32
      adds  fb2b83a   icetime: support PREFIX expansion for win32
      adds  31cba8a   Merge pull request #53 from Jesus89/win32
      adds  5899972   More links on website
      adds  a4b050c   Fix to enable a clean build on Mac OS X.
      adds  0d3ee26   Fix to enable a clean build on Mac OS X.
      adds  612ea83   The fix will check to see if you are compiling on Mac OS X and set the correct LDLIBS and CFLAGS for Mac OS X.
      adds  563c097   Merge pull request #54 from adhorden/adhorden_iceprog_makefile_osx
      adds  0b4b038   Minor Makefile typo fix
      adds  266e758   Added prerequisites install command for Fedora 24
       new  a80ffcf   Merge tag 'upstream/0_20160913git266e758'
       new  bec4b08   Refreshed patches
       new  986414e   Bumped version
       new  69d24a4   [FIXME] Temporarily disable hardening since icebram FTBFS with it
       new  f0fe203   Added missing man page
       new  7b79e52   Updated patch
       new  be437c7   Reenabled hardening

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                                      |   4 +
 config.mk                                     |   8 +-
 debian/changelog                              |  10 +
 debian/man/genmanpages.sh                     |   1 +
 debian/man/icebram.txt                        |  27 +++
 debian/patches/01_installpath.patch           |  28 ++-
 debian/patches/02_spelling_fixes.patch        |  73 ------
 debian/patches/03_cxxflags.patch              |  62 +++--
 debian/patches/fix_spelling_in_binaries.patch |  41 ----
 debian/patches/override-CXX.patch             |  21 --
 debian/patches/reproducible.patch             |   2 +-
 debian/patches/series                         |   3 -
 docs/index.html                               |  36 ++-
 icebox/icebox.py                              |  12 +
 icebox/icebox_chipdb.py                       |   6 +
 icebox/icebox_vlog.py                         |   2 +-
 icebram/.gitignore                            |  13 +
 icebram/Makefile                              |  33 +++
 icebram/icebram.cc                            | 337 ++++++++++++++++++++++++++
 icebram/makedemo.py                           |  72 ++++++
 icebram/rundemo.sh                            |  12 +
 icefuzz/glbcheck.py                           |  63 +++++
 icefuzz/icecube.sh                            |   5 +
 icemulti/Makefile                             |   4 +
 icepack/Makefile                              |   4 +
 icepack/icepack.cc                            |  19 +-
 icepll/Makefile                               |   4 +
 icepll/icepll.cc                              |  15 +-
 iceprog/Makefile                              |  20 +-
 iceprog/iceprog.c                             |  73 ++++--
 icetime/Makefile                              |   4 +
 icetime/icetime.cc                            | 233 +++++++++++++-----
 32 files changed, 983 insertions(+), 264 deletions(-)
 create mode 100644 debian/man/icebram.txt
 delete mode 100644 debian/patches/02_spelling_fixes.patch
 delete mode 100644 debian/patches/fix_spelling_in_binaries.patch
 delete mode 100644 debian/patches/override-CXX.patch
 create mode 100644 icebram/.gitignore
 create mode 100644 icebram/Makefile
 create mode 100644 icebram/icebram.cc
 create mode 100644 icebram/makedemo.py
 create mode 100644 icebram/rundemo.sh
 create mode 100644 icefuzz/glbcheck.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/fpga-icestorm.git



More information about the debian-science-commits mailing list