~ubuntu-langpack/langpack-o-matic/main

« back to all changes in this revision

Viewing changes to update-touch-packages

  • Committer: Martin Pitt
  • Date: 2016-02-12 09:22:13 UTC
  • mfrom: (550.1.6 langpack-o-matic)
  • Revision ID: martin.pitt@canonical.com-20160212092213-2ywnleh711jv9bal
Add pam to touch package lists

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
sound-theme-freedesktop
12
12
totem-pl-parser
13
13
xz"
 
14
WHITELIST="pam"
14
15
 
15
16
if [ $# != 1 ]; then
16
17
    echo "Usage: $0 <release>" >&2
39
40
 
40
41
# determine list of binary packages in ubuntu-touch seed
41
42
germinate --no-rdepends --no-installer -s ubuntu-touch.$RELEASE -d $RELEASE -a armhf -c main,universe -m http://ports.ubuntu.com/
 
43
# Don't consider 'required' since most of those aren't user visible (but there
 
44
# is a whitelist at the top for anything we want anyway)
42
45
grep -h '^[0-9a-z]' touch sdk-libs minimal touch-core touch-android touch | cut -f1 -d ' ' | grep -v ^language-pack > binaries
43
46
 
44
47
# map binaries to sources, generate output
45
 
sources=''
 
48
sources="$WHITELIST"
46
49
for pkg in $(cat binaries); do
47
50
    s=${binsrc[$pkg]}
48
51
    if ! echo "$s" | grep -qF "$BLACKLIST"; then