Skip to content

Commit

Permalink
support/modbus: 3-2 -> 3-4
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Dec 12, 2024
1 parent 7c3a41a commit 4ff8127
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions docs/release-notes/2411.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
24.11 Release notes
===================

.. role:: nix(code)
:language: nix

Breaking changes
----------------

- the :ref:`pkg-support.modbus` support module was upgraded from 3-2 to 3-4,
which changed the name of the ``modbus.dbd`` file.
This file wasn't meant to be used,
but if you used it by mistake,
make sure to include ``modbusSupport.dbd``,
and ``drvAsynIPPort.dbd`` or ``drvAsynSerialPort.dbd`` instead.
6 changes: 3 additions & 3 deletions pkgs/epnix/support/modbus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
}:
mkEpicsPackage rec {
pname = "modbus";
version = "3-2";
version = "3-4";
varname = "MODBUS";

src = fetchFromGitHub {
owner = "epics-modules";
repo = pname;
rev = "R3-2";
hash = "sha256-k8MSgNxib4JT0JTbs0BOm75HIVvxHuVPPlo7VcMCnzg=";
rev = "R${version}";
hash = "sha256-0v6eLWdjgYKbFOHWaW1NSfN/gG5XHVRD9jan55dXWW0=";
};

propagatedBuildInputs = with epnix.support; [asyn];
Expand Down

0 comments on commit 4ff8127

Please sign in to comment.