summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Muskee <wimmuskee@gmail.com>2012-12-07 20:25:47 +0100
committerWim Muskee <wimmuskee@gmail.com>2012-12-07 20:25:47 +0100
commit3e30bbfd7be4d5a37ba9e7238a3204ea96380191 (patch)
tree062c0592b02047da94f73c92eeb84b64b240ceee /localepurge
parentRemoved useless etab function, also fix more tabs-spaces. (diff)
downloadlocalepurge-3e30bbfd7be4d5a37ba9e7238a3204ea96380191.tar.gz
localepurge-3e30bbfd7be4d5a37ba9e7238a3204ea96380191.tar.bz2
localepurge-3e30bbfd7be4d5a37ba9e7238a3204ea96380191.zip
Generate localelist from glibc supported locales and packaged list.
Diffstat (limited to 'localepurge')
-rwxr-xr-xlocalepurge37
1 files changed, 33 insertions, 4 deletions
diff --git a/localepurge b/localepurge
index f31867f..28e2091 100755
--- a/localepurge
+++ b/localepurge
@@ -13,7 +13,10 @@ LOCALEDIRS="/usr/share/locale /usr/local/share/locale /usr/kde/?.?/share/locale
MANPAGEDIRS="/usr/share/man /usr/man /usr/local/share/man /usr/kde/?.?/share/man /usr/kde/?.?/man /opt/sun-jdk-*/man /opt/sun-jre-bin-*/man"
LOCALELIST="${PREFIX}/var/cache/localepurge/localelist"
+LOCALELIST_GLIBC="${PREFIX}/var/cache/localepurge/localelist-glibc"
+LOCALELIST_EXTRA="${PREFIX}/var/cache/localepurge/localelist-extra"
CONFIGFILE="${PREFIX}/etc/locale.nopurge"
+
VERSION="0.5.4"
LOCALETOTAL=0
@@ -72,6 +75,25 @@ version () {
einfo "${BRACKET}[${NORMAL} ${GOOD}${VERSION}${NORMAL} ${BRACKET}]${NORMAL}"
}
+# Creates new localelist
+# from glibc supported locales and the packaged extra locales
+
+createlist() {
+ if [ "$VERBOSE" = "enabled" ]; then
+ einfo "localepurge: updating list of locales in ${LOCALELIST} ..."
+ fi
+
+ # select all supported glibc locales
+ localeworkfile=$(mktemp)
+ cat /usr/share/i18n/SUPPORTED | cut -d ' ' -f 1 > ${localeworkfile}
+ cat /usr/share/i18n/SUPPORTED | cut -d '_' -f 1 | uniq >> ${localeworkfile}
+ cat ${localeworkfile} | sort > ${LOCALELIST_GLIBC}
+ rm ${localeworkfile}
+
+ # add the extra locales
+ cat ${LOCALELIST_GLIBC} ${LOCALELIST_EXTRA} | sort | uniq > ${LOCALELIST}
+}
+
# Check options in CONFIGFILE
grep -xq SHOWFREEDSPACE ${CONFIGFILE} && SHOWFREEDSPACE=enabled
@@ -151,10 +173,6 @@ else
fi
fi
-# Prune the locale list using CONFIGFILE as a list of regex patterns:
-
-PURGELIST=`grep -xvf ${CONFIGFILE} "${LOCALELIST}"`
-
# Deleting a filepath and optionally counting freed space
@@ -247,6 +265,17 @@ purgeman () {
fi
}
+# If running for the first time, create new localelist:
+if [ ! -f ${LOCALELIST_GLIBC} ]; then
+ if [ "$VERBOSE" = "enabled" ]; then
+ einfo "localepurge: running for the first time"
+ fi
+ createlist
+fi
+
+# Prune the locale list using CONFIGFILE as a list of regex patterns:
+PURGELIST=`grep -xvf ${CONFIGFILE} "${LOCALELIST}"`
+
[ "${LIST}" = "enabled" ] && [ "${VERBOSE}" = "enabled" ] &&
ewarn "If not in list mode, localepurge would clear the following directories:\n"