Added some maintenance scripts, WIP

ubuntu/cosmic
Alf Gaida 7 years ago
parent 5e386877d5
commit e53294cb38

3
debian/bin/evil vendored

@ -0,0 +1,3 @@
#!/bin/bash
lintian -EvIL +pedantic --show-overrides --no-tag-display-limit *changes

5
debian/bin/mangle vendored

@ -0,0 +1,5 @@
#!/bin/bash
echo "A: $@" | sed 's/ \(_.*\) \(.*\)/ (c++)"\1" \2/' | c++filt

@ -0,0 +1,8 @@
#!/bin/bash
if [ -d ./debian ]; then
for i in `find . -name symbols`; do
k=`echo $i | sed "s#/DEBIAN/symbols##" | sed "s#./debian/##"`
cat "$i" | sed 's/ \(_.*\) \(.*\)/ (c++)"\1" \2/' | c++filt | sort | uniq | tee "debian/$k.mangled";
done
fi

2
debian/control vendored

@ -7,7 +7,7 @@ Priority: optional
Build-Depends: debhelper (>= 10),
cmake (>= 3.0.2),
qtbase5-dev
Standards-Version: 3.9.8
Standards-Version: 4.1.0
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/lxqt-build-tools.git/?h=debian/sid
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-build-tools.git -b debian/sid
Homepage: https://github.com/lxde/lxqt-build-tools

1
debian/install vendored

@ -0,0 +1 @@
debian/bin/* /usr/bin
Loading…
Cancel
Save