Commit graph

1626 commits

Author SHA1 Message Date
mef
85dbcfda08 (cad/qcad) Add one patch for adapting to QT update, Re: QPainterPath 2020-06-16 23:09:31 +00:00
mef
dada960a1d (cad/librecad) fix build after boost update 2020-06-16 14:43:17 +00:00
adam
6bd0c30da6 Revbump for icu 2020-06-02 08:22:31 +00:00
mef
1348ef4b0a (cad/kicad) Adapt to boost 1.73. (sorry adhoc fix, please correct me if wrong tks)
- pkglint -F
- add patch for #include <algorithm>
  It's been failing since 2020/05/07 of boost update

  ./20200507.0738/kicad-5.1.4nb5
  ...
  ./20200523.0017/kicad-5.1.4nb6
  ...
  ./20200530.0227/kicad-5.1.4nb6
2020-06-01 03:50:21 +00:00
joerg
e7465fb09a Explicitly read files as unicode for Python 3. The content is converted
using the system locale with Python 3.6 otherwise, falling back to
ASCII.
2020-05-31 20:49:32 +00:00
markd
a0c1536555 gnucap: add build dependency on tex-ec and tex-cm-super 2020-05-30 03:10:44 +00:00
markd
e30f9ade2d fastcap: also build dependenecy tex-cm-super 2020-05-30 03:04:40 +00:00
markd
29f96d7d40 fastcap: add build dependenecy on tex-ec 2020-05-30 03:02:24 +00:00
wiz
188111f641 *: reset MAINTAINER for fhajny on his request 2020-05-27 19:37:36 +00:00
rillig
63d139f402 cad/gtkwave: allow bashisms for macOS 2020-05-23 10:39:31 +00:00
rillig
925430b8ed cad/openscad: remove nonexistent file from REPLACE_PYTHON 2020-05-22 19:51:17 +00:00
adam
d62c903eea revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
rillig
080a7f3bed cad/freehdl: remove nonexistent file from REPLACE_PERL 2020-05-22 05:55:42 +00:00
rillig
4f4f64fdce mark packages that fail with -Werror=char-subscripts
These packages are susceptible to bugs when confronted with non-ASCII
characters.

See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94182.

It takes some time to analyze and fix these individually, therefore they
are only marked as "needs work".
2020-05-20 06:09:03 +00:00
joerg
09f181f25a Build as egg. Bump revision. 2020-05-19 13:59:02 +00:00
nia
4bb58570a7 Recursive revbump for json-c-0.14 2020-05-19 12:09:07 +00:00
rillig
1553f617d6 cad/ghdl: skip portability check 2020-05-17 15:54:04 +00:00
adam
def14da987 fix pytest versioned dep. 2020-05-16 09:03:22 +00:00
adam
243ba07874 py-MyHDL: pytest from versioned depens 2020-05-16 08:41:53 +00:00
joerg
29e1a0b9c8 Huge package, can take a long time to pkg_create 2020-05-14 19:16:48 +00:00
mef
700aa49e6f (cad/openscad) fix build with boost 1.73. PKGREVISION++ ? (not yet) 2020-05-14 13:16:19 +00:00
adam
7d4b705c63 revbump after boost update 2020-05-06 14:04:05 +00:00
adam
15d2ff94d8 py-gds: updated to 1.5.2
Version 1.5.2 (Feb 01, 2020)
Added support for importing GDSII files containing BOX elements.
Bug fix in GdsLibrary.extract (thanks collineps for finding the problem).

Version 1.5 (Dec 20, 2019)
New Cell.write_svg function to export an SVG image of the cell.
New GdsLibrary.new_cell function to quickly create and add cells to a library.
GdsLibrary.add can update references when a cell is overwritten.
Added GdsLibrary.remove to allow cells to be properly removed from libraries.
Added GdsLibrary.rename_cell to rename cells in libraries.
Added GdsLibrary.replace_references to easily replace referenced cells in libraries.
GdsLibrary.add can add dependencies recursively.
Iterating over GdsLibrary objects yields all its cells.
Iterating over Cell objects yield all its polygons, paths, labels and references.
Breaking change to *.to_gds functions in order to improve write efficiency (this should not be a problem for most users, since gdspy.write_gds and Cell.write_gds remain the same).
Breaking change: renamed GdsLibrary.cell_dict to GdsLibrary.cells.
Deprecated: gdspy.current_library, gdspy.write_gds, gdspy.fast_boolen, GdsLibrary.extract.
Bug fixes and better tests for FlexPath and RobustPath.

Version 1.4.3 (Nov 11, 2019)
Bug fix for FlexPath and RobustPath references.

Version 1.4.2 (Oct 01, 2019)
Bug fix in FlexPath.

Version 1.4.1 (Sep 20, 2019)
Bug fixes (thanks to DerekK88 and Sequencer for the patches).

Version 1.4 (May 18, 2019)
Revised documentation.
New FlexPath and RobustPath classes: more efficient path generation when using the original GDSII path specification.
New Curve class: SVG-like polygon creation.
Added PolygonSet.mirror (thanks to Daan Waardenburg for the contribution).
Added Path.bezier to create paths based on Bézier curves.
Added Path.smooth to create paths based on smooth interpolating curves.
Added get_gds_units to get units used in a GDSII file without loading.
Added get_binary_cells to load only the binary GDSII representation of cell from a file.
Added argument tolerance to Round, Path.arc, Path.turn, and Path.parametric to automatically control the number of points in the final polygons.
Added argument binary_cells to GDSII writing functions to support get_binary_cells.
Added argument rename_template to GdsLibrary.read_gds for flexible cell renaming (thanks to @yoshi74ls181 for the contribution).
Changed return value of slice to avoid creating empty PolygonSet.
Added argument timestamp to GDSII writing functions.
Improved Round to support creating ellipses.
Added support for unlimited number of points per polygon.
Added support for BGNEXTN and ENDEXTN when reading a GDSII file.
Polygon creation warnings are now controlled by poly_warnings.
Incorrect anchor in Label now raises an error, instead of emitting a warning.
Added correct support for radius in PolygonSet.fillet on a per-vertex basis.
Speed improvements in GDSII file generation (thanks to @fbeutel for the contribution) and geometry creation.
Font rendering example using matplotlib (thanks Hernan Pastoriza for the contribution).
Expanded test suite.

Version 1.3.2 (Mar 14, 2019)
Small fix for building on Mac OS X Mojave.
2020-04-27 18:50:26 +00:00
dsainty
2744af60a7 There are two common ways to select the "java" executable in Pkgsrc.
One is via "${JAVA_BINPREFIX}-java", and one is via
"${PKG_JAVA_HOME}/bin/java".

The "${JAVA_BINPREFIX}-java" way relies on an appropriately named
executable being present in the built-in JRE if you are using the
built-in - something with a "-java" suffix.  That just doesn't exist
in either the MacOS Oracle JRE install or the JDK install.  So switch
to "${PKG_JAVA_HOME}/bin/java" instead, which works (but does require
careful quoting to allow for spaces under MacOS).

Bump PKGREVISION.
2020-04-26 01:05:15 +00:00
adam
24daafa112 Recursive revision bump after textproc/icu update 2020-04-12 08:27:48 +00:00
plunky
be68e6e9c4 update to version 3.24.3.0
ChangeLog:

3.24.3 (2020/03/17)

    Edit > Application Preferences > Graphics View:
        Behaviour:
            Configurable tolerance for double-click to select contour
        Appearance:
            Configurable default lineweight for "Default" lineweight value
    View > Property Editor:
        Allow editing of values in imperial formats "Architectural" and "Engineering"
    Bug fixes:
        FS#2030 - Cannot snap to points of mirrored blocks
        FS#2032 - Draw > Circle > Three Tangents: Cannot select third tangent
        FS#2035 - Linetype scale in viewports
        FS#2036 - Arc rendering in block context
        FS#2038 - Cannot snap arc / circle reference points inside blocks
        FS#2051 - Window selection of rotated and aligned dimensions with large extension line offset
        FS#2053 - Dots in line patterns not visible at extreme coordinates
        FS#2054 - Misc > Modify > Flatten Drawing to 2D

3.24.2 (2020/01/13)

    Bug fixes:
        FS#2027 - File > Print: Minimum line weight for printing is 0.01 drawing units

3.24.1 (2020/01/02)

    Bug fixes:
        FS#2017 - Rendering of arcs in blocks with scale factor > 1
        FS#2020 - Edit > Paste: Wrong position for block references with different drawing units
2020-04-07 08:18:21 +00:00
plunky
dfd483a162 fix build, add missing header (upstream patch) 2020-04-06 18:30:00 +00:00
joerg
3e35b2c46f Fix racy bison use. Rename patch to match patched file. 2020-03-26 02:37:14 +00:00
joerg
206a2f200a Not really C++11 ready. Don't define bool/true/false for C++. 2020-03-18 17:45:25 +00:00
ryoon
ac1314010b verilator: Update to 4.030
Changelog:
Verilator 4.030 2020-03-08

    Add split_var metacomment to assist UNOPTFLAT fixes, #2066. [Yutetsu TAKATSUKASA]

    Add support for $dumpfile and $dumpvars, #2126. [Alexander Grobman]

    Add support for dynamic arrays, #379.

    Add +verilator+noassert flag to disable assertion checking. [Tobias W\303\266lfel]

    Add check for assertOn for asserts, #2162. [Tobias W\303\266lfel]

    Add --structs-packed for forward compatibility.

    Fix genblk naming with directly nested generate blocks, #2176. [Alexander Grobman]

    Implement $displayb/o/h, $writeb/o/h, etc, #1637.

    Use gcc -Os in examples instead of -O2 for better average performance.

    Fix undeclared VL_SHIFTR_WWQ, #2114. [Alex Solomatnikov]


Verilator 4.028 2020-02-08

    Support attributes (public, isolate_assignments, etc.) in configuration files.

    Add -match to lint_off to waive warnings. [Philipp Wagner]

    Link Verilator binary partially statically, #2146. [Geza Lore]

    Verilation speed improvements, #2133, #2138. [Geza Lore]

    Support libgoogle-perftools-dev's libtcmalloc if available, #2137. [Geza Lore]

    Support $readmem/$writemem with assoc arrarys, #2100. [agrobman]

    Support type(expression) operator and $typename, #1650.

    Support left justified $display, #2101. [Pieter Kapsenberg]

    Support string character access via indexing.

    Support enum.next(k) with constant k > 1, #2125. [Tobias Rosenkranz]

    Support parameter access from arrays of interfaces, #2155. [Todd Strader]

    Add parameter values in XML. #2110. [Pieter Kapsenberg]

    Add loc column location in XML (replaces fl), #2122. [Pieter Kapsenberg]

    Add error on misused define. [Topa Tota]

    Add parameter to set maximum signal width, #2082. [\303\230yvind Harboe]

    Add warning on genvar in normal for loop, #2143. [yurivict]

    Fix VPI scope naming for public modules. [Nandu Raj]

    Fix FST tracing of enums inside structs. [fsiegle]

    Fix WIDTH warning on

    Fix OpenSolaris issues, #2154. [brancoliticus]




Verilator 4.026 2020-01-11

    Docker images are now available for Verilator releases.

    Support bounded queues.

    Support implication operator "|->" in assertions, #2069. [Peter Monsson]

    Support string compare, ato*, etc methods, #1606. [Yutetsu TAKATSUKASA]

    Support immediate cover statements.

    Ignore `uselib to end-of-line, #1634. [Frederic Antonin]

    Update FST trace API for better performance.

    Add vpiTimeUnit and allow to specify time as string, #1636. [Stefan Wallentowitz]

    Add error when `resetall inside module (IEEE 2017-22.3).

    Add cleaner error on version control conflicts in sources.

    Fix little endian cell ranges, #1631. [Julien Margetts]

    Fix queue issues, #1641, #1643. [Peter Monsson, Stefan Wallentowitz]

    Fix strcasecmp for windows, #1651. [Kuba Ober]

    Fix disable iff in assertions. Closes #1404. [Peter Monsson]

    Fix huge case statement performance. Closes #1644. [Julien Margetts]

    Fix tracing -1 index arrays. Closes #2090. [Yutetsu Takatsukasa]

    Fix expand optimization slowing --lint-only. Closes #2091. [Thomas Watts]

    Fix %{number}s with strings. #2093. [agrobman]

    Fix shebang breaking some shells. Closes #2067. [zdave]



Verilator 4.024 2019-12-08

    Support associative arrays (excluding [*] and pattern assignments), bug544.

    Support queues (excluding {} notation and pattern assignments), bug545.

    Add +verilator+error+limit to see more assertion errors. [Peter Monsson]

    Support string.toupper and string.tolower.

    Support $rewind and $ungetc.

    Support shortreal as real, with a SHORTREAL warning.

    Add -Wpedantic and -Wno-context for compliance testing.

    Add error on redefining preprocessor directives. [Piotr Binkowski]

    Support $value$plusargs float and shorts, bug1592, bug1619. [Garrett Smith]

    Fix gate lvalue optimization error, bug831. [Jonathon Donaldson, Driss Hafdi]

    Fix color assertion on empty if, bug1604. [Andrew Holme]

    Fix for loop missing initializer, bug1605. [Andrew Holme]

    Fix hang on concat error, bug1608. [Bogdan Vukobratovic]

    Fix VPI timed callbacks to be one-shot, pull5. [Matthew Ballance]

    Fix // in filenames, bug1610. [Peter Nelson]

    Fix $display("%p") to be closer to IEEE.

    Fix labels on functions with returns, bug1614. [Mitch Hayenga]

    Fix false unused message on __Vemumtab, msg3180. [Tobias Rosenkranz]

    Fix assertion on dotted parameter arrayed function, bug1620. [Rich Porter]

    Fix interface reference tracing, bug1595. [Todd Strader]

    Fix error on unpacked concatenations, bug1627. [Driss Hafdi]



Verilator 4.022 2019-11-10

    Add --protect-lib, bug1490. [Todd Strader]

    Add cmake support, bug1363. [Patrick Stewart]

    Examples have been renamed.

    Add --protect-ids to obscure information in objects, bug1521. [Todd Strader]

    Add --trace-coverage.

    Add --xml-output.

    Support multithreading on Windows. [Patrick Stewart]

    Suppress 'command failed' on normal errors.

    Support some unpacked arrays in parameters, bug1315. [Marshal Qiao]

    Add interface port visibility in traces, bug1594. [Todd Strader]

    Increase case duplicate/incomplete to 16 bit tables, bug1545. [Yossi Nivin]

    Support quoted arguments in -f files, bug1535. [Yves Mathieu]

    Optimize modulus by power-of-two constants, and masked conditionals.

    Fix detecting missing reg types, bug1570. [Jacko Dirks]

    Fix multithreaded yield behavior when no work. [Patrick Stewart]

    Fix bad-syntax crashes, bug1548, bug1550-1553, bug1557-1560, bug1563, bug1573-1577, bug1579, bug1582-1591. [Eric Rippey]

    Fix false CMPCONST/UNSIGNED warnings on "inside", bug1581. [Mitch Hayenga]




Verilator 4.020 2019-10-06

    Support $fseek, $ftell, $frewind, bug1496. [Howard Su]

    Add --public-flat-rw, bug1511. [Stefan Wallentowitz]

    Support vpiModule, bug1469. [Stefan Wallentowitz]

    Make Syms file honor --output-split-cfuncs, bug1499. [Todd Strader]

    Fix make test with no VERILATOR_ROOT, bug1494. [Ahmed El-Mahmoudy]

    Fix error on multidimensional cells, bug1505. [Anderson Ignacio Da Silva]

    Fix config_rev revision detection on old versions.

    Fix false warning on backward indexing, bug1507. [Hao Shi]

    Fix vpiType accessor, bug1509, bug1510. [Stefan Wallentowitz]

    Fix ugly error on interface misuse, bug1525. [Bogdan Vukobratovic]

    Fix misc bad-syntax crashes, bug1529-bug1533. [Eric Rippey]

    Fix case statements with strings, bug1536. [Philipp Wagner]




Verilator 4.018 2019-08-29

    When showing an error, show source code and offer suggestions of replacements.

    When showing an error, show the instance location, bug1305. [Todd Strader]

    Add --rr, bug1481. [Todd Strader]

    Change MULTITOP to warning to help linting, see manual.

    Add XSim support to driver.pl, bug1493. [Todd Strader]

    Show included-from filenames in warnings, bug1439. [Todd Strader]

    Fix elaboration time errors, bug1429. [Udi Finkelstein]

    Fix not reporting some duplicate signals/ports, bug1462. [Peter Gerst]

    Fix not in array context on non-power-of-two slices, msg2946. [Yu Sheng Lin]

    Fix system compile flags injection. [Gianfranco Costamagna]

    Fix enum values not being sized based on parent, bug1442. [Dan Petrisko]

    Fix internal error on gate optimization of assign, bug1475. [Oyvind Harboe]

    Add --dpi-hdr-only, bug1491. [Todd Strader]
2020-03-18 13:33:38 +00:00
wiz
6d28b7bef7 oce: fix option check in bl3.mk file 2020-03-14 00:16:03 +00:00
wiz
4e3b1b97c2 librsvg: update bl3.mk to remove libcroco in rust case
recursive bump for the dependency change
2020-03-10 22:08:37 +00:00
wiz
f669fda471 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
joerg
9027e5c347 Revert intentional commit. 2020-02-18 17:44:26 +00:00
joerg
f9aa434496 *** empty log message *** 2020-02-18 16:40:18 +00:00
mef
f2d7f2e7cf (cad/xcircuit) Updated to 3.10.17. ChangeLog unknown 2020-02-15 07:30:06 +00:00
mef
6342f7cb0e (cad/gtkwave) Updated to 3.3.104
3.3.104 24jan20 Added support for loading .vf files (provided FSDB reader
                libraries are enabled).
                Added support for dumping variable types in vcd saveer, not
                just using "wire" for non-reals/strings.
                Fix for uninitialized values at time 0 for FST, FSDB loaders.
2020-02-15 07:24:16 +00:00
rillig
9637f7852e all: migrate homepages from http to https
pkglint -r --network --only "migrate"

As a side-effect of migrating the homepages, pkglint also fixed a few
indentations in unrelated lines. These and the new homepages have been
checked manually.
2020-01-26 17:30:40 +00:00
rillig
84f2203288 all: migrate some SourceForge homepage URLs back from https to http
https://mail-index.netbsd.org/pkgsrc-changes/2020/01/18/msg205146.html

In the above commit, the homepage URLs were migrated from http to https,
assuming that SourceForge would use the same host names for both http and
https connections. This assumption was wrong. Their documentation at
https://sourceforge.net/p/forge/documentation/Custom%20VHOSTs/ states
that the https URLs use the domain sourceforge.io instead.

To make the homepages from the above commit reachable again, pkglint has
been extended to check for reachable homepages. This check is only
enabled when the --network command line option is given.

Each of the homepages that referred to https://$project.sourceforge.net
before was migrated to https://$project.sourceforge.io (27), and if that
was not reachable, to the fallback URL http://$project.sourceforge.net
(163).
2020-01-26 05:26:08 +00:00
rillig
ffe83de7b1 all: migrate several HOMEPAGEs to https
pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.
2020-01-18 23:30:05 +00:00
jperkin
26c1bffc9f *: Recursive revision bump for openssl 1.1.1. 2020-01-18 21:48:19 +00:00
hauke
cf4080a801 Upgrade cad/ng-spice to v31.
Changes are probably many. From upstream's changelog:

2017-08-25  h_vogt
This ChangeLog is no longer maintained.
Starting with ngspice-26, for code changes
please refer to the git repository at
https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/.
Especially the 'history' button on the top of the page
will give all the change log information.
2020-01-14 09:15:42 +00:00
ryoon
eedd1e806f *: Recursive revbump from devel/boost-libs 2020-01-12 20:19:52 +00:00
plunky
084e1ffc98 drop PLIST var handling, as these are not installed by package now 2019-12-29 14:27:52 +00:00
plunky
fdb8d941b6 do not copy or reinstall Qt plugins, allow QCAD to find them directly 2019-12-29 14:18:20 +00:00
plunky
11be7ff89e does not use qt5-qttools 2019-12-29 14:16:05 +00:00
plunky
42eca00ec9 install icons as qcad.??? 2019-12-29 14:15:32 +00:00
plunky
4fb0928166 Update to QCAD 3.24.0.1, with ChangeLog:
3.24.0.1:

    Bug fixes:
        FS#2017 - Rendering of arcs in blocks with scale factor > 1

3.24.0 (2019/12/19):

    Draw:
        Ellipse > Inscribed in Quadrilateral:
            Create circle if appropriate
    Performance:
        Use of multiple CPU cores for display
    Modify:
        Scale:
            Improved support for non-uniform scaling
    Blocks:
        Improved support for non-uniform scaling
    Snap > Reference:
        Snap to reference point of block reference for block reference entities
    Edit > Application Preferences:
        File > Open/Save:
            Add preference to override "last saved by" file information for DXF/DWG export
    Misc > Script Examples > Mathematics > FlexPainter
        Paint complex patterns along existing lines and curves (see forum announcement)
    macOS 10.15:
        Update to Qt 5.13.2
            Fix mouse cursor display
    Linux:
        Provide packages linked against Qt 5.13
            Wayland support
            Fix keyboard layout switching under Wayland
    Bug fixes:
        FS#1931 - File > SVG Export: hatch arc interpolation
        FS#1933 - File > Advanced SVG export: file overwrite check doesn't use updated filename
        FS#1942 - Draw > Circle > Two tangents and point: fails for case with point on bisector
        FS#1946 - CAM > Cam Legacy Export: Cut inner paths before outer paths has no effect
        FS#1948 - Modify > Offset (through Point): Point orthogonal to end point of line segment not accepted
        FS#1949 - Modify > Break out: Leftover (zero length line) after using tool on ray
        FS#1950 - File > Save As: File dialog offers unsupported export formats (DWG R9, R10, R2.6, R2.5)
        FS#1962 - CAM > Drill Toolpaths: Cannot be edited / updated from source entities
        FS#1973 - File > SVG Export: polylines with large arc segments (> 180°) not exported correctly
        FS#1975 - RPolyline::getOrientation: Wrong orientation for polylines with large arcs
        FS#1979 - View > Layer List: icon spacing
        FS#1984 - Block > Create Block from Selection: Slow for large number of entities
        FS#1985 - Hatch dots are rendered as lines with fixed lenght of 0.02 units
        FS#1986 - Page Tags set as default not displayed
        FS#1987 - File > SVG Export: full circle hatch
        FS#1990 - Layer > Duplicate Layer: fails for layer "0"
        FS#1991 - Modify > Divide: Preview indicator fails on infinitive lines
        FS#1993 - Draw > Insert Bitmap: relative zero point not set
        FS#1996 - File > Save: DXF header variable CECOLOR changed
        FS#2000 - CAM > Nesting: misleading "Sheet added" confirmation
        FS#2001 - CAM > Nesting: Alignment fails
        FS#2002 - Draw > Viewport > Add Viewport: Hatch is offset incorrectly in Viewport
        FS#2007 - bbox.bat cannot write log file
        FS#2012 - Draw > Hatch > Hatch from Selection: block transforms not taken into account
2019-12-29 12:44:15 +00:00
wiz
a33ad1eb3e tnt-mmtl: update to 1.2.2nb13.
Something changed in the dependencies, breaking the build of some png files
which are now not installed any longer. Remove them from the PLIST and
bump PKGREVISION.
2019-12-28 12:35:45 +00:00
plunky
7c19c2218a ensure debug binaries are not built, by using target 'release'
instead of 'all'
2019-12-07 07:44:36 +00:00