initial tagged lists draft
- bin/tags2lists - pkg/lists/tagged/
This commit is contained in:
parent
d91a3564ac
commit
2f967a0528
19
bin/tags2lists
Executable file
19
bin/tags2lists
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh -f
|
||||
# a script to transform a tag name, a list of tag names (ANDed then),
|
||||
# or a complex boolean expression into a list of package list names
|
||||
#
|
||||
# examples of expected stdin:
|
||||
#
|
||||
# kde
|
||||
# live gnome
|
||||
# (base && (kernel || apt || alterator))
|
||||
#
|
||||
|
||||
find . $(sed \
|
||||
-e "s,\([^&|! ()']\+\),-name *_\1_*,g" \
|
||||
-e "s, *&& *, -a ,g" \
|
||||
-e "s, *|| *, -o ,g" \
|
||||
-e "s, *! *, ! ,g" \
|
||||
-e "s, *( *, ( ,g" \
|
||||
-e "s, *) *, ) ,g" \
|
||||
) | sed 's,^\./,,'
|
4
pkg/lists/tagged/_.base_alterator_install_
Normal file
4
pkg/lists/tagged/_.base_alterator_install_
Normal file
@ -0,0 +1,4 @@
|
||||
alterator-lilo
|
||||
alterator-root
|
||||
alterator-users
|
||||
alterator-net-eth
|
3
pkg/lists/tagged/_.base_apt_
Normal file
3
pkg/lists/tagged/_.base_apt_
Normal file
@ -0,0 +1,3 @@
|
||||
interactivesystem
|
||||
apt-conf-sisyphus
|
||||
apt
|
2
pkg/lists/tagged/_.base_kernel_
Normal file
2
pkg/lists/tagged/_.base_kernel_
Normal file
@ -0,0 +1,2 @@
|
||||
basesystem
|
||||
kernel-image-std-def
|
Loading…
Reference in New Issue
Block a user