Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cheddar 3.3 #1016

Merged
merged 3 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions index/ch/cheddar/cheddar-3.3.0.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
description = "Cheddar is a real time scheduling analysis tool."

long-description = """
To run cheddar you should set CHEDDAR_INSTALL_PATH or change
current working directory to the crate root.
"""

name = "cheddar"
version = "3.3.0"
website = "http://beru.univ-brest.fr/cheddar"
authors = ["Lab-STICC"]
licenses = "GPL-3.0-only"
maintainers = ["Maxim Reznik <[email protected]>"]
maintainers-logins = ["reznikmm"]
project-files = ["gpr/cheddar.gpr"]
tags = ["realtime", "model", "simulator", "analyzer"]
executables = ["cheddar"]

configuration.disabled = true

[environment]
CHEDDAR_DIR.set = "${CRATE_ROOT}"
CHEDDAR_INSTALL_PATH.set = "${CRATE_ROOT}/graphical_editor/"

# Drop `/src` segment from Source_Dirs, drop `required_packages/*` references
# Add `package Install` to install glade_files into the crate root.
[[actions]]
type = "post-fetch"
command = ["bash", "-c", "-x", "sed -i.bak -e/CHEDDAR_DIR/s/.src// -es/required_packages[a-z/]*// '-e/^end/s@^@package Install is for Artifacts (\".\") use (\"../graphical_editor/glade_files\"); end Install;@' gpr/*.gpr"]

# Append dependencies to the project.
[[actions]]
type = "post-fetch"
command = ["sed", "-i.bk2", '-e1s/^/with "gtkada";with "ocarina-config"; with "xmlada";/', "gpr/cheddar.gpr"]

[[depends-on]]
gtkada = "*"
xmlada = "*"
ocarina_lib = "=1.1.0-20070603"

[origin]
url = "http://beru.univ-brest.fr/svn/CHEDDAR/releases/Cheddar-3.3-src.tar.gz"
hashes = ["sha256:aea10b3cf91eec749b09d3c22ba2a97c4d8a1360ef0d95efb7349c0121cb4a16"]
37 changes: 37 additions & 0 deletions index/oc/ocarina_lib/ocarina_lib-1.1.0-20070603.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name = "ocarina_lib"
description = "Ocarina is a stand-alone AADL model processor, written in Ada."
version = "1.1.0-20070603"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this really intended to be a pre-release?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found ocarina-1.1w-src-20070603.tar.gz archive. They use it to build Cheddar 3.3. It seems the archive is just some snapshot of 1.1 work-in-progress version. That's why I named it 1.1.0-20070603.

What is your advice?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From what you say, I think that's the right way to name it, thanks for the details.


long-description = "This is an old snapshot used in Cheddar!"

authors = ["Telecom ParisTech", "Jérôme Hugues"]
maintainers = ["Max Reznik <[email protected]>"]
maintainers-logins = ["reznikmm", "yoogx"]
licenses = "GPL-3.0-or-later WITH GCC-exception-3.1"
website = "http://www.openaadl.org/ocarina.html"
tags = ["aadl", "model"]
project-files = ["projects/ocarina-config.gpr"]

configuration.disabled = true

# Old configure can't detect Windows
[available.'case(os)']
windows = false
'...' = true

# Disable -gnatwe:
[[actions]]
type = "post-fetch"
command = ["sed", "-i.bak", "-e", '/gnatg/s/)/, "-gnatwn")/', "projects/ocarina.gpr"]

[[actions]]
type = "post-fetch"
command = ["bash", "-c", "PYTHON=/bin/false ./configure"]

# ./configure can't find XMLAda even if it presents
# [[depends-on]]
# xmlada = "*"

[origin]
url = "http://beru.univ-brest.fr/svn/CHEDDAR/trunk/required_packages/Archive/ocarina-1.1w-src-20070603.tar.gz"
hashes = ["sha256:56e84ebed2dd34f3048beede06aa11c550701ea17c53cbcc94214d6e2b8d78d8"]
Loading