Codebase list kaccounts-integration / 0c36a82
drop unused files Pino Toscano 3 years ago
3 changed file(s) with 1 addition(s) and 31 deletion(s). Raw diff Collapse all Expand all
2525 bump.
2626 * Drop the 'testsuite' autopkgtest, as it does not test the installed
2727 packages.
28 * Drop unused files.
2829
2930 -- Scarlett Moore <sgmoore@kde.org> Fri, 08 Feb 2019 15:18:12 -0700
3031
+0
-20
debian/libkaccounts-dev.acc.in less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <descriptor>
2
3 <version>
4 15.04.0
5 </version>
6
7 <headers>
8 /usr/include/KAccounts/
9 </headers>
10
11 <libs>
12 /usr/lib/@@DEB_HOST_MULTIARCH@@/libkaccounts.so
13 </libs>
14
15 <gcc_options>
16 -fPIC
17 </gcc_options>
18
19 </descriptor>
+0
-11
debian/tests/acc less more
0 #!/bin/sh
1
2 DEB_HOST_MULTIARCH=$(dpkg-architecture -qDEB_HOST_MULTIARCH)
3
4 for in_file in debian/*.acc.in; do
5 out_file=${in_file%.in}
6 sed 's/@@DEB_HOST_MULTIARCH@@/'"${DEB_HOST_MULTIARCH}"'/' \
7 "${in_file}" > "${out_file}"
8 done
9
10 dh_acc