-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from epics-extensions/feat-add-busy-support
add EPICS module support busy
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
epnixLib, | ||
mkEpicsPackage, | ||
fetchFromGitHub, | ||
epnix, | ||
local_config_site ? {}, | ||
local_release ? {}, | ||
}: | ||
mkEpicsPackage rec { | ||
pname = "busy"; | ||
version = "1-7-4"; | ||
varname = "BUSY"; | ||
|
||
inherit local_config_site local_release; | ||
|
||
src = fetchFromGitHub { | ||
owner = "epics-modules"; | ||
repo = "busy"; | ||
rev = "R${version}"; | ||
sha256 = "sha256-mSzFLj42iXkyWGWaxplfLehoQcULLpf745trYMd1XT4="; | ||
}; | ||
|
||
patches = [./fix-release.patch]; | ||
|
||
buildInputs = with epnix.support; [calc asyn autosave]; | ||
|
||
meta = { | ||
description = "APS BCDA synApps module: busy"; | ||
homepage = "https://epics.anl.gov/bcda/synApps/busy/busy.html"; | ||
license = epnixLib.licenses.epics; | ||
maintainers = with epnixLib.maintainers; [agaget]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/configure/RELEASE b/configure/RELEASE | ||
index 4d24f2c..61a1d60 100644 | ||
--- a/configure/RELEASE | ||
+++ b/configure/RELEASE | ||
@@ -13,7 +13,7 @@ ASYN=$(SUPPORT)/asyn-4-33 | ||
AUTOSAVE=$(SUPPORT)/autosave-5-9 | ||
|
||
# BUSY is this module | ||
-BUSY=$(SUPPORT)/busy-1-7 | ||
+# BUSY=$(SUPPORT)/busy-1-7 | ||
|
||
# EPICS_BASE usually appears last so other apps can override stuff: | ||
EPICS_BASE=/corvette/usr/local/epics-devel/base-7.0.2 |