mirror of
https://github.com/helixarch/debtap
synced 2025-06-29 09:20:14 +02:00
Add files via upload
Bug fixes
This commit is contained in:
parent
7c1044c69a
commit
26ed775990
87
debtap
87
debtap
@ -15,7 +15,7 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Version=3.6
|
Version=3.6.0
|
||||||
|
|
||||||
# Defining colors and bold letters
|
# Defining colors and bold letters
|
||||||
lightgreen='\e[1;32m'
|
lightgreen='\e[1;32m'
|
||||||
@ -581,6 +581,7 @@ for debian_package_name in $(gawk '{print $1}' $(ls | grep initial-check-list));
|
|||||||
grep -q "^$debian_package_name$" tempfile05 || echo $debian_package_name >> tempfile05
|
grep -q "^$debian_package_name$" tempfile05 || echo $debian_package_name >> tempfile05
|
||||||
done
|
done
|
||||||
|
|
||||||
|
touch tempfile06
|
||||||
for i in $(for j in $(cat tempfile05); do echo $j-tempfile04; done); do
|
for i in $(for j in $(cat tempfile05); do echo $j-tempfile04; done); do
|
||||||
k=$(sort $i | uniq -c | gawk '{print $1}' | sort -n | tail -1)
|
k=$(sort $i | uniq -c | gawk '{print $1}' | sort -n | tail -1)
|
||||||
if [[ $(sort $i | uniq -c | gawk '{print $1}' | sort -n | grep "^$k$" | wc -l) -ge 2 ]]; then
|
if [[ $(sort $i | uniq -c | gawk '{print $1}' | sort -n | grep "^$k$" | wc -l) -ge 2 ]]; then
|
||||||
@ -598,14 +599,18 @@ done
|
|||||||
|
|
||||||
cat tempfile06 | sed s'/=/ = /g' | sed s'/>/ > /g' | sed s'/</ < /g' | sed s'/> =/>=/g' | sed s'/< =/<=/g' | sed s'/^lib32-\|-multilib$//g' > tempfile07
|
cat tempfile06 | sed s'/=/ = /g' | sed s'/>/ > /g' | sed s'/</ < /g' | sed s'/> =/>=/g' | sed s'/< =/<=/g' | sed s'/^lib32-\|-multilib$//g' > tempfile07
|
||||||
|
|
||||||
|
if [[ $(cat tempfile07 | wc -l) == 0 ]]; then
|
||||||
|
echo >> tempfile07
|
||||||
|
fi
|
||||||
|
|
||||||
cat tempfile07 | while read line; do
|
cat tempfile07 | while read line; do
|
||||||
if [[ $(echo "$line" | wc -w) -eq 0 ]]; then
|
if [[ $(echo "$line" | wc -w) -eq 0 ]]; then
|
||||||
echo >> final-check-list
|
echo >> final-check-list
|
||||||
elif [[ $(echo "$line" | wc -w) -eq 1 ]] || [[ $(echo "$line" | wc -w) -eq 3 ]]; then
|
elif [[ $(echo "$line" | wc -w) -eq 1 ]] || [[ $(echo "$line" | wc -w) -eq 3 ]]; then
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $2}') $(echo "$line" | gawk '{print $3}')" >> final-check-list
|
echo "$line" | gawk '{print $1,$2,$3}' >> final-check-list
|
||||||
elif [[ $(echo "$line" | wc -w) -eq 5 ]]; then
|
elif [[ $(echo "$line" | wc -w) -eq 5 ]]; then
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $2}') $(echo "$line" | gawk '{print $3}')" >> final-check-list
|
echo "$line" | gawk '{print $1,$2,$3}' >> final-check-list
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $4}') $(echo "$line" | gawk '{print $5}')" >> final-check-list
|
echo "$line" | gawk '{print $1,$4,$5}' >> final-check-list
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -619,7 +624,7 @@ for i in $(eval echo {1..$(cat $(ls | grep initial-check-list) | wc -l)}); do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Second method of translating remaining untranslated .deb packages names into Arch Linux packages names, same as first method, but searches in Ubuntu database for packages contents instead of Debian database
|
# Second method of translating remaining untranslated .deb packages names into Arch Linux packages names, same as first method, but searches in Ubuntu database for packages contents instead of Debian database
|
||||||
if [[ -e untranslated-names-only ]]; then
|
if [[ -e untranslated-names-only ]] && [[ $(cat untranslated-names-only 2> /dev/null) != "" ]]; then
|
||||||
for ubuntu_package_name in $(sort -u untranslated-names-only); do
|
for ubuntu_package_name in $(sort -u untranslated-names-only); do
|
||||||
for ubuntu_package_file in $(grep "/$ubuntu_package_name$" /var/cache/debtap/ubuntu-packages-files | grep 'bin\|opt\|\.so' | gawk '{print $1}' | sed s'/\// /g' | gawk '{print $NF}'); do
|
for ubuntu_package_file in $(grep "/$ubuntu_package_name$" /var/cache/debtap/ubuntu-packages-files | grep 'bin\|opt\|\.so' | gawk '{print $1}' | sed s'/\// /g' | gawk '{print $NF}'); do
|
||||||
echo $ubuntu_package_file $(grep "^$ubuntu_package_name$\|^$ubuntu_package_name " untranslated | gawk '{print $2}')
|
echo $ubuntu_package_file $(grep "^$ubuntu_package_name$\|^$ubuntu_package_name " untranslated | gawk '{print $2}')
|
||||||
@ -639,6 +644,7 @@ if [[ -e untranslated-names-only ]]; then
|
|||||||
grep -q "^$ubuntu_package_name$" tempfile10 || echo $ubuntu_package_name >> tempfile10
|
grep -q "^$ubuntu_package_name$" tempfile10 || echo $ubuntu_package_name >> tempfile10
|
||||||
done
|
done
|
||||||
|
|
||||||
|
touch tempfile11
|
||||||
for i in $(for j in $(cat tempfile10); do echo $j-tempfile09; done); do
|
for i in $(for j in $(cat tempfile10); do echo $j-tempfile09; done); do
|
||||||
k=$(sort $i | uniq -c | gawk '{print $1}' | sort -n | tail -1)
|
k=$(sort $i | uniq -c | gawk '{print $1}' | sort -n | tail -1)
|
||||||
if [[ $(sort $i | uniq -c | gawk '{print $1}' | sort -n | grep "^$k$" | wc -l) -ge 2 ]]; then
|
if [[ $(sort $i | uniq -c | gawk '{print $1}' | sort -n | grep "^$k$" | wc -l) -ge 2 ]]; then
|
||||||
@ -656,14 +662,18 @@ if [[ -e untranslated-names-only ]]; then
|
|||||||
|
|
||||||
cat tempfile11 | sed s'/=/ = /g' | sed s'/>/ > /g' | sed s'/</ < /g' | sed s'/> =/>=/g' | sed s'/< =/<=/g' | sed s'/^lib32-\|-multilib$//g' > tempfile12
|
cat tempfile11 | sed s'/=/ = /g' | sed s'/>/ > /g' | sed s'/</ < /g' | sed s'/> =/>=/g' | sed s'/< =/<=/g' | sed s'/^lib32-\|-multilib$//g' > tempfile12
|
||||||
|
|
||||||
|
if [[ $(cat tempfile12 | wc -l) == 0 ]]; then
|
||||||
|
echo >> tempfile12
|
||||||
|
fi
|
||||||
|
|
||||||
cat tempfile12 | while read line; do
|
cat tempfile12 | while read line; do
|
||||||
if [[ $(echo "$line" | wc -w) -eq 0 ]]; then
|
if [[ $(echo "$line" | wc -w) -eq 0 ]]; then
|
||||||
echo >> final-check-list
|
echo >> final-check-list
|
||||||
elif [[ $(echo "$line" | wc -w) -eq 1 ]] || [[ $(echo "$line" | wc -w) -eq 3 ]]; then
|
elif [[ $(echo "$line" | wc -w) -eq 1 ]] || [[ $(echo "$line" | wc -w) -eq 3 ]]; then
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $2}') $(echo "$line" | gawk '{print $3}')" >> final-check-list
|
echo "$line" | gawk '{print $1,$2,$3}' >> final-check-list
|
||||||
elif [[ $(echo "$line" | wc -w) -eq 5 ]]; then
|
elif [[ $(echo "$line" | wc -w) -eq 5 ]]; then
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $2}') $(echo "$line" | gawk '{print $3}')" >> final-check-list
|
echo "$line" | gawk '{print $1,$2,$3}' >> final-check-list
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $4}') $(echo "$line" | gawk '{print $5}')" >> final-check-list
|
echo "$line" | gawk '{print $1,$4,$5}' >> final-check-list
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -680,7 +690,7 @@ if [[ -e untranslated-names-only ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Third method of translating remaining untranslated .deb packages names into Arch Linux packages names, less accurate, comparing .deb packages names with Arch Linux packages names
|
# Third method of translating remaining untranslated .deb packages names into Arch Linux packages names, less accurate, comparing .deb packages names with Arch Linux packages names
|
||||||
if [[ -e new-untranslated-names-only ]]; then
|
if [[ -e new-untranslated-names-only ]] && [[ $(cat new-untranslated-names-only 2> /dev/null) != "" ]]; then
|
||||||
for i in $(sort -u new-untranslated-names-only | grep -v python-support); do
|
for i in $(sort -u new-untranslated-names-only | grep -v python-support); do
|
||||||
|
|
||||||
j=$(echo "$i" | sed s'/-svn$\|-git$\|-cvs$\|-bzr$\|-darcs$\|-hg$//')
|
j=$(echo "$i" | sed s'/-svn$\|-git$\|-cvs$\|-bzr$\|-darcs$\|-hg$//')
|
||||||
@ -2659,7 +2669,7 @@ if [[ -e new-untranslated-names-only ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Appending untranslated packages names (if any exist) to the translated packages names list
|
# Appending untranslated packages names (if any exist) to the translated packages names list
|
||||||
if [[ $(cat new-untranslated 2> /dev/null | wc -l) -ne 0 ]]; then
|
if [[ -e new-untranslated-names ]] && [[ $(cat new-untranslated-names 2> /dev/null) != "" ]]; then
|
||||||
tac new-untranslated | sed s'/=/= /g' | sed s'/>/> /g' | sed s'/</< /g' | sed s'/> =/>=/g' | sed s'/< =/<=/g' >> final-check-list
|
tac new-untranslated | sed s'/=/= /g' | sed s'/>/> /g' | sed s'/</< /g' | sed s'/> =/>=/g' | sed s'/< =/<=/g' >> final-check-list
|
||||||
gawk '{print $1}' new-untranslated | sort -u > $(echo $(ls | grep initial-check-list) | sed s'/initial-check-list/untranslated-names-only/')
|
gawk '{print $1}' new-untranslated | sort -u > $(echo $(ls | grep initial-check-list) | sed s'/initial-check-list/untranslated-names-only/')
|
||||||
fi
|
fi
|
||||||
@ -2673,7 +2683,7 @@ fi
|
|||||||
|
|
||||||
# Special rules for optional dependencies
|
# Special rules for optional dependencies
|
||||||
if [[ -e optional-dependencies-untranslated-names-only ]]; then
|
if [[ -e optional-dependencies-untranslated-names-only ]]; then
|
||||||
if [[ -e dependencies-untranslated-names-only ]]; then
|
if [[ $(cat dependencies-untranslated-names-only) != "" ]]; then
|
||||||
for i in $(cat optional-dependencies-untranslated-names-only); do
|
for i in $(cat optional-dependencies-untranslated-names-only); do
|
||||||
if [[ $(grep -q "^$i$" dependencies-untranslated-names-only; echo $?) != 0 ]]; then
|
if [[ $(grep -q "^$i$" dependencies-untranslated-names-only; echo $?) != 0 ]]; then
|
||||||
echo "$i" >> optional-dependencies-untranslated-names-only-1
|
echo "$i" >> optional-dependencies-untranslated-names-only-1
|
||||||
@ -2714,11 +2724,13 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Stripping unnecessary symbols and words from packages versions
|
# Stripping unnecessary symbols and words from packages versions
|
||||||
|
touch tempfile13
|
||||||
grep -v "^$" final-check-list | while read line; do
|
grep -v "^$" final-check-list | while read line; do
|
||||||
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $2}') $(echo "$line" | gawk '{print $3}' | sed s'/^[^:]*://' | sed -e s'/[+~]/-/g' -e s'/[-._]alpha/alpha/' -e s'/[-._]beta/beta/' -e s'/[-._]pre/pre/' -e s'/[-._]rc/rc/' -e s'/[-._]dfsg/dfsg/' | gawk -F 'dev' '{print $1}' | sed -e s'/-\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+\.[0-9]\+//g' -e s'/-[0-9]\+\.[0-9]\+\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+[a-z]*[0-9]*//g' -e s'/-[0-9]\+\.[0-9]\+\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+[a-z]*[0-9]*//g' -e s'/-[0-9]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+[a-z]*[0-9]*//g' -e s'/-[0-9]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+[a-z]*[0-9]*//g' -e s'/[a-z]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+[a-z]*[0-9]*//g' -e s'/[a-z]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]*[a-z]*[0-9]*//g' -e s'/--/-/g' -e s'/\.\././g' | sed s'/\.$//')" >> tempfile13
|
echo "$(echo "$line" | gawk '{print $1}') $(echo "$line" | gawk '{print $2}') $(echo "$line" | gawk '{print $3}' | sed s'/^[^:]*://' | sed -e s'/[+~]/-/g' -e s'/[-._]alpha/alpha/' -e s'/[-._]beta/beta/' -e s'/[-._]pre/pre/' -e s'/[-._]rc/rc/' -e s'/[-._]dfsg/dfsg/' | gawk -F 'dev' '{print $1}' | sed -e s'/-\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+\.[0-9]\+//g' -e s'/-[0-9]\+\.[0-9]\+\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+[a-z]*[0-9]*//g' -e s'/-[0-9]\+\.[0-9]\+\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+[a-z]*[0-9]*//g' -e s'/-[0-9]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+[a-z]*[0-9]*//g' -e s'/-[0-9]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+[a-z]*[0-9]*//g' -e s'/[a-z]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]\+\.[0-9]\+[a-z]*[0-9]*//g' -e s'/[a-z]*\(ubuntu\|debian\|build\|dfsg\|nobinonly\|ppa\|nmu\|deb\)[0-9]*[a-z]*[0-9]*//g' -e s'/--/-/g' -e s'/\.\././g' | sed s'/\.$//')" >> tempfile13
|
||||||
done
|
done
|
||||||
|
|
||||||
# Special rules for version control systems
|
# Special rules for version control systems
|
||||||
|
touch tempfile14
|
||||||
cat tempfile13 | while read line; do
|
cat tempfile13 | while read line; do
|
||||||
for i in {git,bzr,darcs,hg}; do
|
for i in {git,bzr,darcs,hg}; do
|
||||||
if [[ $(echo "$line" | gawk '{print $3}' | grep -q $i; echo $?) == 0 ]]; then
|
if [[ $(echo "$line" | gawk '{print $3}' | grep -q $i; echo $?) == 0 ]]; then
|
||||||
@ -2747,6 +2759,7 @@ if [[ $pseudo != set ]]; then
|
|||||||
mv tempfile14 tempfile15
|
mv tempfile14 tempfile15
|
||||||
else
|
else
|
||||||
# Special rules for multilib packages
|
# Special rules for multilib packages
|
||||||
|
touch tempfile15
|
||||||
cat tempfile14 | while read line; do
|
cat tempfile14 | while read line; do
|
||||||
i=$(echo "$line" | gawk '{print $1}')
|
i=$(echo "$line" | gawk '{print $1}')
|
||||||
pacman -Ssq "lib32-$i" > result
|
pacman -Ssq "lib32-$i" > result
|
||||||
@ -2841,6 +2854,9 @@ if [[ $(grep -q ^Replaces: control; echo $?) == 0 ]]; then
|
|||||||
done
|
done
|
||||||
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
||||||
grep -v '^xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > replacements-initial-check-list
|
grep -v '^xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > replacements-initial-check-list
|
||||||
|
if [[ $(cat replacements-initial-check-list | wc -l) == 0 ]]; then
|
||||||
|
echo >> replacements-initial-check-list
|
||||||
|
fi
|
||||||
packages-names-translator
|
packages-names-translator
|
||||||
if [[ $wipeout != set ]]; then
|
if [[ $wipeout != set ]]; then
|
||||||
for i in $(sort -u tempfile22); do echo "replaces = $i" >> .PKGINFO; done
|
for i in $(sort -u tempfile22); do echo "replaces = $i" >> .PKGINFO; done
|
||||||
@ -2849,6 +2865,7 @@ if [[ $(grep -q ^Replaces: control; echo $?) == 0 ]]; then
|
|||||||
fi
|
fi
|
||||||
rm -rf *tempfile* replacements-initial-check-list final-check-list
|
rm -rf *tempfile* replacements-initial-check-list final-check-list
|
||||||
fi
|
fi
|
||||||
|
touch replacements-untranslated-names-only
|
||||||
|
|
||||||
# Generating conflicts fields
|
# Generating conflicts fields
|
||||||
if [[ $(grep -q ^Conflicts: control; echo $?) == 0 ]]; then
|
if [[ $(grep -q ^Conflicts: control; echo $?) == 0 ]]; then
|
||||||
@ -2859,6 +2876,9 @@ if [[ $(grep -q ^Conflicts: control; echo $?) == 0 ]]; then
|
|||||||
done
|
done
|
||||||
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
||||||
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > conflicts-initial-check-list
|
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > conflicts-initial-check-list
|
||||||
|
if [[ $(cat conflicts-initial-check-list | wc -l) == 0 ]]; then
|
||||||
|
echo >> conflicts-initial-check-list
|
||||||
|
fi
|
||||||
packages-names-translator
|
packages-names-translator
|
||||||
if [[ $wipeout != set ]]; then
|
if [[ $wipeout != set ]]; then
|
||||||
for i in $(sort -u tempfile22); do echo "conflict = $i" >> .PKGINFO; done
|
for i in $(sort -u tempfile22); do echo "conflict = $i" >> .PKGINFO; done
|
||||||
@ -2867,6 +2887,7 @@ if [[ $(grep -q ^Conflicts: control; echo $?) == 0 ]]; then
|
|||||||
fi
|
fi
|
||||||
rm -rf *tempfile* conflicts-initial-check-list final-check-list
|
rm -rf *tempfile* conflicts-initial-check-list final-check-list
|
||||||
fi
|
fi
|
||||||
|
touch conflicts-untranslated-names-only
|
||||||
|
|
||||||
# Generating provisions fields
|
# Generating provisions fields
|
||||||
if [[ $(grep -q ^Provides: control; echo $?) == 0 ]]; then
|
if [[ $(grep -q ^Provides: control; echo $?) == 0 ]]; then
|
||||||
@ -2877,6 +2898,9 @@ if [[ $(grep -q ^Provides: control; echo $?) == 0 ]]; then
|
|||||||
done
|
done
|
||||||
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
||||||
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > provisions-initial-check-list
|
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > provisions-initial-check-list
|
||||||
|
if [[ $(cat provisions-initial-check-list | wc -l) == 0 ]]; then
|
||||||
|
echo >> provisions-initial-check-list
|
||||||
|
fi
|
||||||
packages-names-translator
|
packages-names-translator
|
||||||
if [[ $wipeout != set ]] && [[ $pkgbuild != set ]] && [[ $Pkgbuild != set ]]; then
|
if [[ $wipeout != set ]] && [[ $pkgbuild != set ]] && [[ $Pkgbuild != set ]]; then
|
||||||
for i in $(sort -u tempfile22); do echo "provides = $i" >> .PKGINFO; done
|
for i in $(sort -u tempfile22); do echo "provides = $i" >> .PKGINFO; done
|
||||||
@ -2885,6 +2909,7 @@ if [[ $(grep -q ^Provides: control; echo $?) == 0 ]]; then
|
|||||||
fi
|
fi
|
||||||
rm -rf *tempfile* provisions-initial-check-list final-check-list
|
rm -rf *tempfile* provisions-initial-check-list final-check-list
|
||||||
fi
|
fi
|
||||||
|
touch provisions-untranslated-names-only
|
||||||
|
|
||||||
# Generating backups fields
|
# Generating backups fields
|
||||||
if [[ -e conffiles ]]; then
|
if [[ -e conffiles ]]; then
|
||||||
@ -2911,6 +2936,9 @@ if [[ $(grep -q '^Depends:\|^Pre-Depends:' control; echo $?) == 0 ]]; then
|
|||||||
done
|
done
|
||||||
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
||||||
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > dependencies-initial-check-list
|
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > dependencies-initial-check-list
|
||||||
|
if [[ $(cat dependencies-initial-check-list | wc -l) == 0 ]]; then
|
||||||
|
echo >> dependencies-initial-check-list
|
||||||
|
fi
|
||||||
packages-names-translator
|
packages-names-translator
|
||||||
if [[ $wipeout != set ]]; then
|
if [[ $wipeout != set ]]; then
|
||||||
for i in $(sort -u tempfile22); do echo "depend = $i" >> .PKGINFO; done
|
for i in $(sort -u tempfile22); do echo "depend = $i" >> .PKGINFO; done
|
||||||
@ -2919,6 +2947,7 @@ if [[ $(grep -q '^Depends:\|^Pre-Depends:' control; echo $?) == 0 ]]; then
|
|||||||
fi
|
fi
|
||||||
rm -rf *tempfile* dependencies-initial-check-list final-check-list
|
rm -rf *tempfile* dependencies-initial-check-list final-check-list
|
||||||
fi
|
fi
|
||||||
|
touch dependencies-untranslated-names-only
|
||||||
|
|
||||||
# Generating optional dependencies fields
|
# Generating optional dependencies fields
|
||||||
if [[ $(grep -q '^Recommends:\|^Suggests:' control; echo $?) == 0 ]]; then
|
if [[ $(grep -q '^Recommends:\|^Suggests:' control; echo $?) == 0 ]]; then
|
||||||
@ -2929,6 +2958,9 @@ if [[ $(grep -q '^Recommends:\|^Suggests:' control; echo $?) == 0 ]]; then
|
|||||||
done
|
done
|
||||||
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
sed -e s'/(/ /g' -e s'/)//g' tempfile01 | sort > tempfile02
|
||||||
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > optional-dependencies-initial-check-list
|
grep -v 'xlibs$\|^xlibs \|^libgl1$\|^libgl1 \|^libglu1$\|^libglu1 \|^default-jre$\|^default-jre \|^openjdk-[0-9]+-[jdk|jre]\|^libstdc[0-9]+$\|^libstdc[0-9]+ \|^qt[0-9]+-default$\|^qt[0-9]+-default \|^python:any$\|^python:any \|^libpango\|^libcupsys2$\|^libcupsys2 \|^jackd[0-9]*$\|^jackd[0-9]* \|^fonts-freefont-ttf$\|^fonts-freefont-ttf \|^fonts-liberation$\|^fonts-liberation \|^ttf-mscorefonts-installer$\|^ttf-mscorefonts-installer \|^dpkg$\|^dpkg \|^apt$\|^apt \|^apt-get$\|^apt-get \|^aptitude$\|^aptitude \|^debconf' tempfile02 > optional-dependencies-initial-check-list
|
||||||
|
if [[ $(cat optional-dependencies-initial-check-list | wc -l) == 0 ]]; then
|
||||||
|
echo >> optional-dependencies-initial-check-list
|
||||||
|
fi
|
||||||
packages-names-translator
|
packages-names-translator
|
||||||
if [[ $wipeout != set ]]; then
|
if [[ $wipeout != set ]]; then
|
||||||
for i in $(sort -u tempfile22); do
|
for i in $(sort -u tempfile22); do
|
||||||
@ -2946,8 +2978,9 @@ if [[ $(grep -q '^Recommends:\|^Suggests:' control; echo $?) == 0 ]]; then
|
|||||||
fi
|
fi
|
||||||
rm -rf *tempfile* optional-dependencies-initial-check-list final-check-list
|
rm -rf *tempfile* optional-dependencies-initial-check-list final-check-list
|
||||||
fi
|
fi
|
||||||
|
touch optional-dependencies-untranslated-names-only-1
|
||||||
|
|
||||||
# Moving report files to /tmp/debtap (if any exist)
|
# Moving report files to /tmp/debtap
|
||||||
rm -rf /tmp/debtap 2> /dev/null
|
rm -rf /tmp/debtap 2> /dev/null
|
||||||
mkdir /tmp/debtap 2> /dev/null
|
mkdir /tmp/debtap 2> /dev/null
|
||||||
if [[ $? != 0 ]]; then
|
if [[ $? != 0 ]]; then
|
||||||
@ -2957,49 +2990,49 @@ mv *untranslated* /tmp/debtap 2> /dev/null
|
|||||||
mv *missing-files /tmp/debtap 2> /dev/null
|
mv *missing-files /tmp/debtap 2> /dev/null
|
||||||
|
|
||||||
# Report of (warning messages for) untranslated packages names and packages with missing files (if any exist)
|
# Report of (warning messages for) untranslated packages names and packages with missing files (if any exist)
|
||||||
if [[ -e /tmp/debtap/dependencies-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/dependencies-untranslated-names-only) != "" ]]; then
|
||||||
echo -e "\n${lightred}Warning: These dependencies (depend = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "\n${lightred}Warning: These dependencies (depend = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
echo $(cat /tmp/debtap/dependencies-untranslated-names-only) | sed s'/ /, /g'
|
echo $($(cat /tmp/debtap/dependencies-untranslated-names-only)) | sed s'/ /, /g'
|
||||||
fi
|
fi
|
||||||
if [[ -e /tmp/debtap/dependencies-missing-files ]]; then
|
if [[ -e /tmp/debtap/dependencies-missing-files ]]; then
|
||||||
if [[ -e /tmp/debtap/dependencies-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/dependencies-untranslated-names-only) != "" ]]; then
|
||||||
echo -e "${lightred}Warning: These packages names could not be included as dependencies, because debtap has translated them into the same name with the package for conversion. This happens sometimes when you convert packages that already exist in your repositories (which is a bad idea in general). The following packages contain files that are already included in the package from your repositories (without these files your converted package may be dysfunctional):${NC}"
|
echo -e "${lightred}Warning: These packages names could not be included as dependencies, because debtap has translated them into the same name with the package for conversion. This happens sometimes when you convert packages that already exist in your repositories (which is a bad idea in general). The following packages contain files that are already included in the package from your repositories (without these files your converted package may be dysfunctional):${NC}"
|
||||||
else
|
else
|
||||||
echo -e "\n${lightred}Warning: These packages names could not be included as dependencies, because debtap has translated them into the same name with the package for conversion. This happens sometimes when you convert packages that already exist in your repositories (which is a bad idea in general). The following packages contain files that are already included in the package from your repositories (without these files your converted package may be dysfunctional):${NC}"
|
echo -e "\n${lightred}Warning: These packages names could not be included as dependencies, because debtap has translated them into the same name with the package for conversion. This happens sometimes when you convert packages that already exist in your repositories (which is a bad idea in general). The following packages contain files that are already included in the package from your repositories (without these files your converted package may be dysfunctional):${NC}"
|
||||||
fi
|
fi
|
||||||
echo $(cat /tmp/debtap/dependencies-missing-files) | sed s'/ /, /g'
|
echo $(cat /tmp/debtap/dependencies-missing-files) | sed s'/ /, /g'
|
||||||
fi
|
fi
|
||||||
if [[ -e /tmp/debtap/optional-dependencies-untranslated-names-only-1 ]]; then
|
if [[ $(cat /tmp/debtap/optional-dependencies-untranslated-names-only-1) != "" ]]; then
|
||||||
if [[ -e /tmp/debtap/dependencies-untranslated-names-only ]] || [[ -e /tmp/debtap/dependencies-missing-files ]]; then
|
if [[ $(cat /tmp/debtap/dependencies-untranslated-names-only) != "" ]] || [[ -e /tmp/debtap/dependencies-missing-files ]]; then
|
||||||
echo -e "${lightred}Warning: These optional dependencies (optdepend = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "${lightred}Warning: These optional dependencies (optdepend = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
else
|
else
|
||||||
echo -e "\n${lightred}Warning: These optional dependencies (optdepend = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "\n${lightred}Warning: These optional dependencies (optdepend = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
fi
|
fi
|
||||||
echo $(cat /tmp/debtap/optional-dependencies-untranslated-names-only-1) | sed s'/ /, /g'
|
echo $($(cat /tmp/debtap/optional-dependencies-untranslated-names-only-1)) | sed s'/ /, /g'
|
||||||
fi
|
fi
|
||||||
if [[ -e /tmp/debtap/replacements-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/replacements-untranslated-names-only) != "" ]]; then
|
||||||
if [[ -e /tmp/debtap/dependencies-untranslated-names-only ]] || [[ -e /tmp/debtap/dependencies-missing-files ]] || [[ -e /tmp/debtap/optional-dependencies-untranslated-names-only-1 ]]; then
|
if [[ $(cat /tmp/debtap/dependencies-untranslated-names-only) != "" ]] || [[ -e /tmp/debtap/dependencies-missing-files ]] || [[ $(cat /tmp/debtap/optional-dependencies-untranslated-names-only-1) != "" ]]; then
|
||||||
echo -e "${lightred}Warning: These replacements (replaces = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "${lightred}Warning: These replacements (replaces = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
else
|
else
|
||||||
echo -e "\n${lightred}Warning: These replacements (replaces = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "\n${lightred}Warning: These replacements (replaces = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
fi
|
fi
|
||||||
echo $(cat /tmp/debtap/replacements-untranslated-names-only) | sed s'/ /, /g'
|
echo $($(cat /tmp/debtap/replacements-untranslated-names-only)) | sed s'/ /, /g'
|
||||||
fi
|
fi
|
||||||
if [[ -e /tmp/debtap/conflicts-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/conflicts-untranslated-names-only) != "" ]]; then
|
||||||
if [[ -e /tmp/debtap/dependencies-untranslated-names-only ]] || [[ -e /tmp/debtap/dependencies-missing-files ]] || [[ -e /tmp/debtap/optional-dependencies-untranslated-names-only-1 ]] || [[ -e /tmp/debtap/replacements-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/dependencies-untranslated-names-only) != "" ]] || [[ -e /tmp/debtap/dependencies-missing-files ]] || [[ $(cat /tmp/debtap/optional-dependencies-untranslated-names-only-1) != "" ]] || [[ $(cat /tmp/debtap/replacements-untranslated-names-only) != "" ]]; then
|
||||||
echo -e "${lightred}Warning: These conflicts (conflict = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "${lightred}Warning: These conflicts (conflict = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
else
|
else
|
||||||
echo -e "\n${lightred}Warning: These conflicts (conflict = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "\n${lightred}Warning: These conflicts (conflict = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
fi
|
fi
|
||||||
echo $(cat /tmp/debtap/conflicts-untranslated-names-only) | sed s'/ /, /g'
|
echo $($(cat /tmp/debtap/conflicts-untranslated-names-only)) | sed s'/ /, /g'
|
||||||
fi
|
fi
|
||||||
if [[ -e /tmp/debtap/provisions-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/provisions-untranslated-names-only) != "" ]]; then
|
||||||
if [[ -e /tmp/debtap/dependencies-untranslated-names-only ]] || [[ -e /tmp/debtap/dependencies-missing-files ]] || [[ -e /tmp/debtap/optional-dependencies-untranslated-names-only-1 ]] || [[ -e /tmp/debtap/replacements-untranslated-names-only ]] || [[ -e /tmp/debtap/conflicts-untranslated-names-only ]]; then
|
if [[ $(cat /tmp/debtap/dependencies-untranslated-names-only) != "" ]] || [[ -e /tmp/debtap/dependencies-missing-files ]] || [[ $(cat /tmp/debtap/optional-dependencies-untranslated-names-only-1) != "" ]] || [[ $(cat /tmp/debtap/replacements-untranslated-names-only) != "" ]] || [[ $(cat /tmp/debtap/conflicts-untranslated-names-only) != "" ]]; then
|
||||||
echo -e "${lightred}Warning: These provisions (provides = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "${lightred}Warning: These provisions (provides = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
else
|
else
|
||||||
echo -e "\n${lightred}Warning: These provisions (provides = fields) could not be translated into Arch Linux packages names:${NC}"
|
echo -e "\n${lightred}Warning: These provisions (provides = fields) could not be translated into Arch Linux packages names:${NC}"
|
||||||
fi
|
fi
|
||||||
echo $(cat /tmp/debtap/provisions-untranslated-names-only) | sed s'/ /, /g'
|
echo $($(cat /tmp/debtap/provisions-untranslated-names-only)) | sed s'/ /, /g'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Generating .INSTALL file (if necessary)
|
# Generating .INSTALL file (if necessary)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user