Skip to content

Commit

Permalink
switch to copier template
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Feb 17, 2024
1 parent f534118 commit fb5b2a5
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: 2024.2.2b1
_src_path: gh:epics-containers/ioc-template
description: The Generic ioc for GigE cameras using the Aravis Library
git_platform: github.com
github_org: epics-containers
name: ioc-adaravis
repo_uri: [email protected]:epics-containers/ioc-adaravis.git
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
An epics-containers generic IOC source file for ADAravis.
# Generic IOC Template Repository ioc-adaravis

Generates a Generic IOC for running in a container and
creating IOC instances to control Aravis cameras.
## Description
The Generic ioc for GigE cameras using the Aravis Library

See the https://epics-containers.github.io
## Template Info
This repository was generated by
[ioc-template](https://github.com/epics-containers/ioc-template)

To update to the latest version of the template:

```bash
# activate a python virtual environment

pip install copier
cd ioc-adaravis
copier update -a --trust .
```
4 changes: 2 additions & 2 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ set -xe
cd $(dirname ${0})

# use docker if available else use podman
if ! docker version &>/dev/null; then alias docker=podman; fi
if ! docker version &>/dev/null; then docker=podman; else docker=docker; fi

# make sure new repos get their submodule ibek-support
git submodule update --init

# build and developer images
docker build -t ${TAG} --build-arg TARGET_ARCHITECTURE=$T_A --target $TARGET .
$docker build -t ${TAG} --build-arg TARGET_ARCHITECTURE=$T_A --target $TARGET .

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ibek==1.6.3
# to install direct from github during development in a branch
# git+https://github.com/epics-containers/ibek.git@fix-extract-assets
# git+https://github.com/epics-containers/ibek.git@fix-extract-assets

0 comments on commit fb5b2a5

Please sign in to comment.