summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2019-02-23 19:51:24 -0300
committerDavid P <megver83@parabola.nu>2019-02-23 19:52:08 -0300
commit05b81ab38e24db3efce60d5bd4c6206b7ac53474 (patch)
treec26c336735a959e25edeb7959f84d6e656f1435c
parent5ecdb12c10d6ae50e33ef176c051d5c234abd484 (diff)
blacklist.txt: add acpi_call-dkms and libsynctex
libsynctex is a split pkg from texlive-bin also improve find-deprecated-pkgs a bit Signed-off-by: David P <megver83@parabola.nu>
-rw-r--r--blacklist.txt2
-rwxr-xr-xfind-deprecated-pkgs6
2 files changed, 5 insertions, 3 deletions
diff --git a/blacklist.txt b/blacklist.txt
index c461112..470d1f9 100644
--- a/blacklist.txt
+++ b/blacklist.txt
@@ -32,6 +32,7 @@ abiword:abiword:::[semifree] Hard-codes nonfree fonts, and has non-privacy searc
abuse:abuse:fsf:Free_Abuse_Extensions:[semifree] Contains a nonfree addon
acetoneiso2::fsf:AcetoneISO:[uses-nonfree] ask to download and install nonfree poweriso
acpi_call:acpi_call:::[technical] adapted to nonfree linux kernel
+acpi_call-dkms:acpi_call-dkms:::[technical] adapted to nonfree linux kernel
acpi_call-lts:acpi_call-lts:::[technical] adapted to nonfree linux-lts kernel
alsa-firmware::::[FIXME:description]
amd-ucode::::[nonfree] no modification, use restrictions
@@ -409,6 +410,7 @@ libquicktime:libquicktime:::[uses-nonfree] depends on faac
libretro-genesis-plus-gx::parabola:1011:[nonfree] noncommercial software https://github.com/libretro/Genesis-Plus-GX/blob/master/LICENSE.txt
libretro-shaders-cg::parabola:1454:[uses-nonfree] depends on nonfree nvidia-cg-toolkit
libretro-snes9x::parabola:1012:[nonfree] noncommercial software https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt
+libsynctex:libsynctex:::[branding] [semifree] rebranding due to other TeXLive changes
libsystemd:libsystemd:::[technical] Changing how the package gets split
libtraceevent:linux-libre-tools-libtraceevent::: [semifree] (linux-tools) Build from the Linux-libre kernel
libunrar::::[nonfree] part of nonfree unrar, Issue442
diff --git a/find-deprecated-pkgs b/find-deprecated-pkgs
index 24c63b3..841045f 100755
--- a/find-deprecated-pkgs
+++ b/find-deprecated-pkgs
@@ -270,10 +270,10 @@ check(){
msg 'done'
}
-if [[ $@ = "" ]]; then
- usage
-else
+if [[ ${#@} -gt 0 ]]; then
ip r | grep ^default | awk '{print $3}' |
ping -q -w1 -c1 $(tail -n1 /dev/stdin) &> /dev/null || err 'You must have internet connection to run this program'
for arg in $@; do check $arg; done
+else
+ usage
fi