blob: fa90b243a80534098108eb9913296d77413552dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# Binary for syncing xbps with a list
#
# HOWTO:
# Make sure to install xtools and that there is a
# repository.list, which should be initialized with xpkg -m > ~/repository.list
#
# Add whatever package you want to install, and run xsync to sync your
# list of packages with the new list
set -e
xpkg -m | sort > /tmp/xsync-installed
cat ~/repository.list | sort > /tmp/xsync-spec
echo $INSTALLED
comm /tmp/xsync-spec /tmp/xsync-installed -23 > /tmp/xsync-to-install
comm /tmp/xsync-spec /tmp/xsync-installed -13 > /tmp/xsync-to-remove
# You can add the -n flag to dry-run and see what will happen
[ -s /tmp/xsync-to-remove ] && sudo xbps-remove $(cat /tmp/xsync-to-remove) || echo "Nothing to remove"
# You can add the -n flag to dry-run and see what will happen
[ -s /tmp/xsync-to-install ] && sudo xbps-install -S $(cat /tmp/xsync-to-install) || echo "Nothing to install"
|