Skip to content
Snippets Groups Projects
make-hplip 2.18 KiB
Newer Older
#!/bin/sh
#
#    Copyright (C) 2011 MPA
#    Copyright (C) 2013-2017 Ruben Rodriguez <ruben@trisquel.info>
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program; if not, write to the Free Software
#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
#

VERSION=1
echo Removing printers not supported with free drivers from the database
tmp=`mktemp`
output=`mktemp`
printers='data/models/models.dat'

# Keep header license
sed  '/\[/,99999d' $printers > $output

for model in $(grep '\[' $printers | /bin/sed 's/\[//; s/\]//'); do
  sed -n "/\[$model\]/,/^$/p;" $printers > $tmp
  grep '^download=True' -q $tmp && continue
  grep '^plugin=1' -q $tmp && continue
  grep '^support-type=0' -q $tmp && continue
  cat $tmp >> $output

cp $output $printers


#grep -B 7 'download=True' $printers|grep "\["|/bin/sed 's/\[//g; s/\]//g' > $tmp2
#grep -B 18 'plugin=1' $printers|grep "\["|/bin/sed 's/\[//g; s/\]//g' >> $tmp2
#grep -B 33 'support-type=0' $printers|grep "\["|/bin/sed 's/\[//g; s/\]//g' >> $tmp2
#sort -u < $tmp2 > $tmp
#for i in `cat $tmp`; do 
#	/bin/sed -i '/\['"$i"'\]/,/^$/d' $printers
#done
sed -i 's/plugin=2/plugin=0/g' $printers

rm $tmp $tmp2
rm debian/patches/hp_photosmart_pro_b9100_support.patch
sed -i '/hp_photosmart_pro_b9100_support.patch/d' debian/patches/series
rm debian/local/scripts/hp-plugin-ubuntu
sed /hp-plugin-ubuntu/d ./debian/rules -i

# disable downloader
#rm plugin.py
#sed s/plugin.py//g -i ./hplip.list.in ./Makefile.in ./Makefile.am
#sed '/run_plugin_command/s/$/\n    return/' -i ./base/pkit.py

changelog "Removed printers with propietary drivers (required and optional)"

compile