mirror of
https://git.rockylinux.org/rocky/comps.git
synced 2024-11-21 04:31:23 +00:00
62 lines
1.9 KiB
Bash
Executable File
62 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
BRANCH=c10s
|
|
VERS=c10s
|
|
COMPS_FILE=comps-centos-stream-10.xml.in
|
|
COMPS_ROCKY=${COMPS_FILE/centos-stream-10/rocky-10-lh}
|
|
|
|
if [ ! -f "${COMPS_ROCKY}" ]; then
|
|
echo "Rocky Comps not found."
|
|
fi
|
|
|
|
echo "Fetching from upstream"
|
|
git clone https://gitlab.com/redhat/centos-stream/release-engineering/comps.git -b ${BRANCH} /var/tmp/${VERS}-comps
|
|
echo "Copying comps file over"
|
|
cp /var/tmp/${VERS}-comps/${COMPS_FILE} "./${COMPS_ROCKY}"
|
|
|
|
echo "Modifying file with Rocky Branding"
|
|
while read -r pattern; do
|
|
sscript+="$pattern;"
|
|
done <<EOF
|
|
s/>redhat-release/>rocky-release/g
|
|
s/Red Hat Enterprise Linux/Rocky Linux/g
|
|
s/RHEL/Rocky Linux/g
|
|
s/Red Hat, Inc./Rocky Enterprise Software Foundation/g
|
|
EOF
|
|
sed -i "$sscript" "${COMPS_ROCKY}"
|
|
|
|
echo "Making sure some packages are RHEL only"
|
|
while read -r pattern; do
|
|
mscript+="$pattern;"
|
|
done <<EOF
|
|
/ <packagereq .*>insights-client/ s/(<packagereq.*>insights-client<\/packagereq>)/<rhel_only>\1<\/rhel_only>/g
|
|
EOF
|
|
sed -Ei "$mscript" "${COMPS_ROCKY}"
|
|
|
|
echo "Making sure some packages are RHEL only"
|
|
while read -r pattern; do
|
|
bscript+="$pattern;"
|
|
done <<EOF
|
|
/<rhel_only><packagereq variant="AppStream">redhat-backgrounds<\/packagereq><\/rhel_only>/ s/$/\n <rocky_only><packagereq variant="AppStream">rocky-backgrounds<\/packagereq><\/rocky_only>/g
|
|
EOF
|
|
sed -Ei "$bscript" "${COMPS_ROCKY}"
|
|
|
|
#echo "Modifications to make sure certain scenarios work"
|
|
#while read -r pattern; do
|
|
# wscript+="$pattern;"
|
|
#done <<EOF
|
|
#/>kmod-kvdo</ s/type="default"/type="default" arch="ppc64le,s390x,x86_64"/g
|
|
#/>vdo</ s/type="default"/type="default" arch="ppc64le,s390x,x86_64"/g
|
|
#EOF
|
|
#sed -i "$wscript" "${COMPS_ROCKY}"
|
|
|
|
echo "Generating proper XML"
|
|
/bin/bash ./scripts/update-comps "${COMPS_ROCKY/.in/}" rocky
|
|
|
|
echo "Cleaning up upstream"
|
|
rm -rf /var/tmp/${VERS}-comps
|
|
|
|
echo "!! DIFF OF CHANGES !!"
|
|
git --no-pager diff HEAD
|
|
|
|
echo "You may now commit and push if there are any changes."
|