Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
redox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pirson Bethancourt
redox
Commits
1156bf27
Unverified
Commit
1156bf27
authored
2 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Add find-recipe.sh, move changelog.sh to scripts
parent
bbeb98c7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/changelog.sh
+49
-0
49 additions, 0 deletions
scripts/changelog.sh
scripts/find-recipe.sh
+42
-0
42 additions, 0 deletions
scripts/find-recipe.sh
with
91 additions
and
0 deletions
scripts/changelog.sh
0 → 100755
+
49
−
0
View file @
1156bf27
#!/usr/bin/env bash
set
-e
LAST_RELEASE_TAG
=
"
$(
git describe
--tags
--abbrev
=
0
)
"
LAST_RELEASE_TIMESTAMP
=
"
$(
git log
--format
=
"%ct"
-1
"
${
LAST_RELEASE_TAG
}
"
)
"
echo
"Last release:
${
LAST_RELEASE_TAG
}
at
${
LAST_RELEASE_TIMESTAMP
}
"
REPOS
=(
redox
=
.
cookbook
=
cookbook
rust
=
rust
)
for
package
in
$(
installer/target/release/redox_installer
--list-packages
-c
config/x86_64/desktop.toml
)
do
REPOS+
=(
"
${
package
}
=cookbook/recipes/
${
package
}
/source"
)
done
# TODO: resolve dependencies instead of manually adding these initfs packages
for
package
in
init logd nulld ramfs randd zerod
do
REPOS+
=(
"
${
package
}
=cookbook/recipes/
${
package
}
/source"
)
done
for
name_repo
in
"
${
REPOS
[@]
}
"
do
name
=
"
$(
echo
"
${
name_repo
}
"
|
cut
-d
"="
-f
1
)
"
repo
=
"
$(
echo
"
${
name_repo
}
"
|
cut
-d
"="
-f
2-
)
"
echo
-en
"
\x
1B[1m
${
name
}
:
\x
1B[0m "
if
[
-e
"
${
repo
}
/.git"
]
then
remote
=
"
$(
git
-C
"
${
repo
}
"
remote get-url origin
)
"
website
=
"
${
remote
%.*
}
"
before
=
"
$(
git
-C
"
${
repo
}
"
log
--until
=
"
${
LAST_RELEASE_TIMESTAMP
}
"
--format
=
"%h"
-1
)
"
after
=
"
$(
git
-C
"
${
repo
}
"
log
--since
=
"
${
LAST_RELEASE_TIMESTAMP
}
"
--format
=
"%h"
-1
)
"
if
[
-z
"
${
before
}
"
]
then
echo
"New repository at
${
website
}
"
elif
[
-z
"
${
after
}
"
]
then
echo
"No changes"
else
echo
"
${
website
}
/-/compare/
${
before
}
...
${
after
}
"
fi
else
echo
"Not a git repository"
fi
done
This diff is collapsed.
Click to expand it.
scripts/find-recipe.sh
0 → 100755
+
42
−
0
View file @
1156bf27
#!/usr/bin/env bash
# Ensure arch and config are set as desired, we use these to find the build dir
export
ARCH
=
x86_64
export
CONFIG_NAME
=
desktop
# Make sure to unmount the image first
make unmount &>/dev/null
||
true
# Mount the image
make mount
>
/dev/null
# Find all files
find
"build/
${
ARCH
}
/
${
CONFIG_NAME
}
/"
-type
f |
cut
-d
/
-f5-
|
\
sort
|
\
uniq
|
\
while
read
path
do
# Skip empty paths
if
[
-z
"
${
path
}
"
]
then
continue
fi
# Find all packages providing this file
pkgs
=
"
$(
find cookbook/recipes/
*
"/target/
${
ARCH
}
-unknown-redox/stage/
${
path
}
"
-type
f 2>/dev/null |
cut
-d
/
-f3
|
tr
'\n'
' '
|
sort
|
uniq
)
"
if
[
-n
"
${
pkgs
}
"
]
then
echo
"
$path
:
${
pkgs
}
"
else
echo
"
$path
: no packages, see config/
${
ARCH
}
/
${
CONFIG_NAME
}
.toml"
fi
done
# Make sure to unmount the image
make unmount &>/dev/null
||
true
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment