mirror of
https://github.com/emmett1/lfs-scripts.git
synced 2025-07-25 17:11:45 +00:00
uodates
This commit is contained in:
42
bootstrap.sh
42
bootstrap.sh
@ -24,7 +24,7 @@ PKGMK_PACKAGE_DIR=/tmp/lfs-pkg
|
||||
. $PWD/files/pkgmk.bootstrap
|
||||
" > /tmp/bootstrap.conf
|
||||
|
||||
if [ ! "$(command -v pkgmk)" ]; then
|
||||
if [ ! "$(PATH=$TOOLS/bin command -v pkgmk)" ]; then
|
||||
if [ ! -f $sourcedir/pkgutils-5.40.10.tar.xz ]; then
|
||||
curl -o $sourcedir/pkgutils-5.40.10.tar.xz https://crux.nu/files/pkgutils-5.40.10.tar.xz
|
||||
fi
|
||||
@ -33,6 +33,7 @@ PKGMK_PACKAGE_DIR=/tmp/lfs-pkg
|
||||
sed -i -e 's/ --static//' -e 's/ -static//' /tmp/pkgutils-5.40.10/Makefile
|
||||
make -C /tmp/pkgutils-5.40.10
|
||||
make -C /tmp/pkgutils-5.40.10 BINDIR=$TOOLS/bin MANDIR=$TOOLS/man ETCDIR=$TOOLS/etc install
|
||||
rm -rf /tmp/pkgutils-5.40.10
|
||||
fi
|
||||
|
||||
for i in $toolchainpkg; do
|
||||
@ -40,7 +41,7 @@ PKGMK_PACKAGE_DIR=/tmp/lfs-pkg
|
||||
export tcpkg="$i"
|
||||
cd core/${i%-pass*}
|
||||
mkdir -p /tmp/lfs-pkg
|
||||
pkgmk -d -if -cf /tmp/bootstrap.conf
|
||||
pkgmk -d -is -if -cf /tmp/bootstrap.conf
|
||||
rm -rf /tmp/lfs-pkg
|
||||
cd - >/dev/null 2>&1
|
||||
touch $TOOLS/$i
|
||||
@ -82,6 +83,7 @@ _buildbase() {
|
||||
echo "base need to build as root"
|
||||
exit 1
|
||||
fi
|
||||
export PATH=$TOOLS/bin:$PATH
|
||||
if [ ! -f $LFS/var/lib/pkg/db ]; then
|
||||
mkdir -pv $LFS/bin $LFS/usr/lib $LFS/usr/bin $LFS/etc $LFS/dev || true
|
||||
for i in bash cat chmod dd echo ln mkdir pwd rm stty; do
|
||||
@ -95,8 +97,12 @@ _buildbase() {
|
||||
ln -svf bash $LFS/bin/sh
|
||||
ln -svf /proc/self/mounts $LFS/etc/mtab
|
||||
|
||||
mknod -m 600 $LFS/dev/console c 5 1
|
||||
mknod -m 666 $LFS/dev/null c 1 3
|
||||
mknod -m 600 $LFS/dev/console c 5 1 || true
|
||||
mknod -m 666 $LFS/dev/null c 1 3 || true
|
||||
|
||||
#mkdir -p $LFS/lib
|
||||
#ln -s lib $LFS/lib64
|
||||
#ln -svf $TOOLS/lib/ld-linux-x86-64.so.2 $LFS/lib
|
||||
|
||||
cat core/aaa_filesystem/passwd > $LFS/etc/passwd
|
||||
cat core/aaa_filesystem/group > $LFS/etc/group
|
||||
@ -108,6 +114,7 @@ _buildbase() {
|
||||
# package and source
|
||||
mkdir -p $LFS/tmp/src
|
||||
mkdir -p $LFS/tmp/pkg
|
||||
mkdir -p $packagedir
|
||||
fi
|
||||
|
||||
# core ports
|
||||
@ -116,9 +123,11 @@ _buildbase() {
|
||||
cp -r core/* $LFS/usr/ports/core
|
||||
|
||||
# xpkg
|
||||
echo 'repodir /usr/ports/core' > $LFS/etc/xpkg.conf
|
||||
cp core/xpkg/xpkg $TOOLS/bin
|
||||
chmod +x $TOOLS/bin/xpkg
|
||||
#echo 'repodir /usr/ports/core' > $LFS/etc/xpkg.conf
|
||||
#cp core/xpkg/xpkg $TOOLS/bin
|
||||
#chmod +x $TOOLS/bin/xpkg
|
||||
cp files/pkgin $TOOLS/bin/pkgin
|
||||
chmod +x $TOOLS/bin/pkgin
|
||||
|
||||
# pkgmk
|
||||
mkdir -p $LFS/var/lib/pkgmk
|
||||
@ -139,10 +148,12 @@ PKGMK_WORK_DIR="/tmp/pkgmk-$name"
|
||||
|
||||
if [ "$1" = rebuild ]; then
|
||||
LFSPATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
_xpkg_opt="upgrade -fr"
|
||||
#_xpkg_opt="upgrade -fr"
|
||||
pkgmkopt="-f"
|
||||
pkgaddopt="-u"
|
||||
else
|
||||
LFSPATH=/bin:/usr/bin:/sbin:/usr/sbin:$TOOLS/bin
|
||||
_xpkg_opt="add"
|
||||
#_xpkg_opt="add"
|
||||
fi
|
||||
|
||||
mountfs
|
||||
@ -153,9 +164,8 @@ PKGMK_WORK_DIR="/tmp/pkgmk-$name"
|
||||
case $i in
|
||||
aaa_filesystem|gcc|bash|dash|perl|coreutils|pkgutils|xpkg) _force=-f;;
|
||||
esac
|
||||
fi
|
||||
chroot $LFS env -i PATH=$LFSPATH xpkg $_xpkg_opt $i -y $_force -if -nd -cf /tmp/pkgmk.conf || { umountfs; exit 1; }
|
||||
if [ "$1" != rebuild ]; then
|
||||
chroot $LFS env -i PATH=$LFSPATH pkgin $pkgmkopt -d $i -is -if -cf /tmp/pkgmk.conf || { umountfs; exit 1; }
|
||||
pkgadd -r $LFS $_force $pkgaddopt $(ls -1 $packagedir/$i#* | tail -n1) || exit 1
|
||||
case $i in
|
||||
glibc) cat << EOF > $LFS/tmp/glibc-postinstall
|
||||
#!/bin/sh
|
||||
@ -179,6 +189,8 @@ EOF
|
||||
rm -f $LFS/tmp/glibc-postinstall
|
||||
;;
|
||||
esac
|
||||
else
|
||||
chroot $LFS env -i PATH=$LFSPATH prt-get update -fr $i || { umountfs; exit 1; }
|
||||
fi
|
||||
done
|
||||
umountfs
|
||||
@ -225,16 +237,16 @@ export LFS=/tmp/lfs-rootfs
|
||||
export TOOLS=/tmp/lfs-tools
|
||||
export LC_ALL=C
|
||||
|
||||
toolchainpkg="binutils-pass1 gmp mpfr mpc gcc-pass1 linux-headers glibc gcc-pass2 binutils-pass2 gcc-pass3 m4
|
||||
toolchainpkg="binutils-pass1 gmp mpfr mpc gcc-pass1 linux-headers glibc gcc-pass2 binutils-pass2 libxcrypt gcc-pass3 m4
|
||||
ncurses bash bison bzip2 coreutils diffutils file findutils gawk gettext grep gzip make patch perl python
|
||||
sed tar texinfo xz openssl ca-certificates curl libarchive"
|
||||
|
||||
basepkg="aaa_filesystem linux-headers man-pages glibc tzdata zlib bzip2 xz file ncurses readline m4 bc binutils
|
||||
basepkg="aaa_filesystem linux-headers man-pages glibc tzdata zlib bzip2 xz file ncurses readline m4 bc binutils libxcrypt
|
||||
gmp mpfr mpc attr acl shadow gcc pkgconf libcap sed psmisc iana-etc bison flex pcre2 grep bash dash
|
||||
libtool gdbm gperf expat inetutils perl perl-xml-parser intltool autoconf automake openssl kmod gettext elfutils
|
||||
libffi sqlite python coreutils check diffutils gawk findutils groff less gzip zstd iptables libtirpc iproute2 kbd
|
||||
libpipeline make patch man-db tar texinfo vim procps-ng util-linux e2fsprogs sysklogd eudev which
|
||||
libarchive ca-certificates curl pkgutils xpkg"
|
||||
libarchive ca-certificates curl pkgutils prt-get"
|
||||
|
||||
sourcedir="$PWD/sources"
|
||||
packagedir="$PWD/packages"
|
||||
|
@ -1,12 +0,0 @@
|
||||
088b9e30476023f6daf6331f47714868 Pkgfile
|
||||
c9aa956753dd0a546e13c967275d24fb fstab
|
||||
8dae1a1bd7394619836eed4edb32706a group
|
||||
b8419160170a41ae01abab13a3b887df hostname
|
||||
73b50995f63c6d88f5137db0759d6e92 hosts
|
||||
8a8fb1798e7264cbeff332551188efe6 issue
|
||||
5cbb5efc6adba814bafb91e534b09836 locale.conf
|
||||
6336f6a759a3cff8a5f02daabf3c9be3 locale.sh
|
||||
bd566ecc2f902cf225453ae103f36bd7 os-release
|
||||
aa116741c76ab220567c0771d2c7d718 passwd
|
||||
3e47d3ddb26a72616c5889a4f266cadf resolv.conf
|
||||
dbc052b74f12041e24e64ddfc32ff604 shells
|
@ -1,77 +0,0 @@
|
||||
# Pkgfile for aaa_filesystem
|
||||
|
||||
name=aaa_filesystem
|
||||
version=1
|
||||
release=1
|
||||
source=(fstab
|
||||
group
|
||||
hostname
|
||||
hosts
|
||||
issue
|
||||
locale.conf
|
||||
locale.sh
|
||||
os-release
|
||||
passwd
|
||||
Pkgfile
|
||||
resolv.conf
|
||||
shells)
|
||||
|
||||
pkg_build() {
|
||||
cd $SRC
|
||||
|
||||
# root dirs
|
||||
for d in proc sys run dev bin boot etc/opt home lib mnt \
|
||||
opt sbin srv var; do
|
||||
mkdir -p $PKG/$d
|
||||
done
|
||||
install -d -m 0750 $PKG/root
|
||||
install -d -m 1777 $PKG/tmp $PKG/var/tmp
|
||||
|
||||
# /usr and /usr/local dirs
|
||||
for d in bin include lib sbin src; do
|
||||
mkdir -p $PKG/usr/$d
|
||||
mkdir -p $PKG/usr/local/$d
|
||||
done
|
||||
|
||||
# man page dirs
|
||||
for d in 1 2 3 4 5 6 7 8; do
|
||||
mkdir -p $PKG/usr/share/man/man$d
|
||||
mkdir -p $PKG/usr/local/share/man/man$d
|
||||
done
|
||||
|
||||
# /var dirs
|
||||
for d in log spool/mail opt cache lib/misc local; do
|
||||
mkdir -p $PKG/var/$d
|
||||
done
|
||||
|
||||
ln -s ../run $PKG/var/run
|
||||
ln -s ../run/lock $PKG/var/lock
|
||||
|
||||
ln -s /proc/self/mounts $PKG/etc/mtab
|
||||
|
||||
# log files
|
||||
for f in btmp lastlog faillog wtmp; do
|
||||
touch $PKG/var/log/$f
|
||||
done
|
||||
chgrp utmp $PKG/var/log/lastlog
|
||||
chmod 664 $PKG/var/log/lastlog
|
||||
chmod 600 $PKG/var/log/btmp
|
||||
|
||||
install -m644 passwd $PKG/etc
|
||||
install -m644 group $PKG/etc
|
||||
install -m644 resolv.conf $PKG/etc
|
||||
install -m644 locale.conf $PKG/etc
|
||||
install -m644 hosts $PKG/etc
|
||||
install -m644 hostname $PKG/etc
|
||||
install -m644 shells $PKG/etc
|
||||
install -m644 fstab $PKG/etc
|
||||
|
||||
install -dm0755 $PKG/etc/profile.d
|
||||
install -m644 locale.sh $PKG/etc/profile.d
|
||||
|
||||
install -d $PKG/etc/skel
|
||||
install -m644 issue $PKG/etc
|
||||
|
||||
echo rolling > $PKG/etc/lfs-release
|
||||
cat os-release > $PKG/etc/os-release
|
||||
}
|
@ -1,99 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/chacl
|
||||
-rwxr-xr-x root/root usr/bin/getfacl
|
||||
-rwxr-xr-x root/root usr/bin/setfacl
|
||||
drwxr-xr-x root/root usr/include/
|
||||
drwxr-xr-x root/root usr/include/acl/
|
||||
-rw-r--r-- root/root usr/include/acl/libacl.h
|
||||
drwxr-xr-x root/root usr/include/sys/
|
||||
-rw-r--r-- root/root usr/include/sys/acl.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libacl.a
|
||||
-rwxr-xr-x root/root usr/lib/libacl.la
|
||||
lrwxrwxrwx root/root usr/lib/libacl.so -> libacl.so.1.1.2301
|
||||
lrwxrwxrwx root/root usr/lib/libacl.so.1 -> libacl.so.1.1.2301
|
||||
-rwxr-xr-x root/root usr/lib/libacl.so.1.1.2301
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libacl.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/acl/
|
||||
-rw-r--r-- root/root usr/share/doc/acl/CHANGES
|
||||
-rw-r--r-- root/root usr/share/doc/acl/COPYING
|
||||
-rw-r--r-- root/root usr/share/doc/acl/COPYING.LGPL
|
||||
-rw-r--r-- root/root usr/share/doc/acl/PORTING
|
||||
-rw-r--r-- root/root usr/share/doc/acl/extensions.txt
|
||||
-rw-r--r-- root/root usr/share/doc/acl/libacl.txt
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@boldquot/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@quot/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/acl.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/chacl.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/getfacl.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/setfacl.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_add_perm.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_calc_mask.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_check.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_clear_perms.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_cmp.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_copy_entry.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_copy_ext.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_copy_int.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_create_entry.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_delete_def_file.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_delete_entry.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_delete_perm.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_dup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_entries.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_equiv_mode.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_error.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_extended_fd.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_extended_file.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_extended_file_nofollow.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_free.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_from_mode.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_from_text.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_entry.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_fd.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_file.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_perm.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_permset.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_qualifier.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_get_tag_type.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_init.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_set_fd.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_set_file.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_set_permset.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_set_qualifier.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_set_tag_type.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_size.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_to_any_text.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_to_text.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/acl_valid.3.gz
|
||||
drwxr-xr-x root/root usr/share/man/man5/
|
||||
-rw-r--r-- root/root usr/share/man/man5/acl.5.gz
|
@ -1 +0,0 @@
|
||||
95ce715fe09acca7c12d3306d0f076b2 acl-2.3.1.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for acl
|
||||
|
||||
name=acl
|
||||
version=2.3.1
|
||||
release=1
|
||||
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
|
@ -1,74 +0,0 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
-rw-r--r-- root/root etc/xattr.conf
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/attr
|
||||
-rwxr-xr-x root/root usr/bin/getfattr
|
||||
-rwxr-xr-x root/root usr/bin/setfattr
|
||||
drwxr-xr-x root/root usr/include/
|
||||
drwxr-xr-x root/root usr/include/attr/
|
||||
-rw-r--r-- root/root usr/include/attr/attributes.h
|
||||
-rw-r--r-- root/root usr/include/attr/error_context.h
|
||||
-rw-r--r-- root/root usr/include/attr/libattr.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libattr.a
|
||||
-rwxr-xr-x root/root usr/lib/libattr.la
|
||||
lrwxrwxrwx root/root usr/lib/libattr.so -> libattr.so.1.1.2501
|
||||
lrwxrwxrwx root/root usr/lib/libattr.so.1 -> libattr.so.1.1.2501
|
||||
-rwxr-xr-x root/root usr/lib/libattr.so.1.1.2501
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libattr.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/attr/
|
||||
-rw-r--r-- root/root usr/share/doc/attr/CHANGES
|
||||
-rw-r--r-- root/root usr/share/doc/attr/COPYING
|
||||
-rw-r--r-- root/root usr/share/doc/attr/COPYING.LGPL
|
||||
-rw-r--r-- root/root usr/share/doc/attr/PORTING
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@boldquot/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@quot/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/attr.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/attr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/getfattr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/setfattr.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/attr_get.3.gz
|
||||
lrwxrwxrwx root/root usr/share/man/man3/attr_getf.3.gz -> attr_get.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/attr_list.3.gz
|
||||
lrwxrwxrwx root/root usr/share/man/man3/attr_listf.3.gz -> attr_list.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/attr_multi.3.gz
|
||||
lrwxrwxrwx root/root usr/share/man/man3/attr_multif.3.gz -> attr_multi.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/attr_remove.3.gz
|
||||
lrwxrwxrwx root/root usr/share/man/man3/attr_removef.3.gz -> attr_remove.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/attr_set.3.gz
|
||||
lrwxrwxrwx root/root usr/share/man/man3/attr_setf.3.gz -> attr_set.3.gz
|
@ -1 +0,0 @@
|
||||
ac1c5a7a084f0f83b8cace34211f64d8 attr-2.5.1.tar.gz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for attr
|
||||
|
||||
name=attr
|
||||
version=2.5.1
|
||||
release=1
|
||||
source=(https://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz)
|
@ -1,77 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/autoconf
|
||||
-rwxr-xr-x root/root usr/bin/autoheader
|
||||
-rwxr-xr-x root/root usr/bin/autom4te
|
||||
-rwxr-xr-x root/root usr/bin/autoreconf
|
||||
-rwxr-xr-x root/root usr/bin/autoscan
|
||||
-rwxr-xr-x root/root usr/bin/autoupdate
|
||||
-rwxr-xr-x root/root usr/bin/ifnames
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/autoconf/
|
||||
drwxr-xr-x root/root usr/share/autoconf/Autom4te/
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/C4che.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/ChannelDefs.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/Channels.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/Config.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/Configure_ac.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/FileUtils.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/General.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/Getopt.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/Request.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/Autom4te/XFile.pm
|
||||
-rw-r--r-- root/root usr/share/autoconf/INSTALL
|
||||
drwxr-xr-x root/root usr/share/autoconf/autoconf/
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/autoconf.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/autoconf.m4f
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/autoheader.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/autoscan.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/autotest.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/autoupdate.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/c.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/erlang.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/fortran.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/functions.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/general.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/go.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/headers.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/lang.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/libs.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/oldnames.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/programs.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/specific.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/status.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/trailer.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoconf/types.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autom4te.cfg
|
||||
drwxr-xr-x root/root usr/share/autoconf/autoscan/
|
||||
-rw-r--r-- root/root usr/share/autoconf/autoscan/autoscan.list
|
||||
drwxr-xr-x root/root usr/share/autoconf/autotest/
|
||||
-rw-r--r-- root/root usr/share/autoconf/autotest/autotest.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autotest/autotest.m4f
|
||||
-rw-r--r-- root/root usr/share/autoconf/autotest/general.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/autotest/specific.m4
|
||||
drwxr-xr-x root/root usr/share/autoconf/build-aux/
|
||||
-rwxr-xr-x root/root usr/share/autoconf/build-aux/config.guess
|
||||
-rwxr-xr-x root/root usr/share/autoconf/build-aux/config.sub
|
||||
-rwxr-xr-x root/root usr/share/autoconf/build-aux/install-sh
|
||||
drwxr-xr-x root/root usr/share/autoconf/m4sugar/
|
||||
-rw-r--r-- root/root usr/share/autoconf/m4sugar/foreach.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/m4sugar/m4sh.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/m4sugar/m4sh.m4f
|
||||
-rw-r--r-- root/root usr/share/autoconf/m4sugar/m4sugar.m4
|
||||
-rw-r--r-- root/root usr/share/autoconf/m4sugar/m4sugar.m4f
|
||||
-rw-r--r-- root/root usr/share/autoconf/m4sugar/version.m4
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/autoconf.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/standards.info.gz
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/autoconf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/autoheader.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/autom4te.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/autoreconf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/autoscan.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/autoupdate.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ifnames.1.gz
|
@ -1 +0,0 @@
|
||||
12cfa1687ffa2606337efe1a64416106 autoconf-2.71.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for autoconf
|
||||
|
||||
name=autoconf
|
||||
version=2.71
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1,138 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/aclocal
|
||||
-rwxr-xr-x root/root usr/bin/aclocal-1.16
|
||||
-rwxr-xr-x root/root usr/bin/automake
|
||||
-rwxr-xr-x root/root usr/bin/automake-1.16
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/aclocal-1.16/
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/amversion.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/ar-lib.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/as.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/auxdir.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/cond-if.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/cond.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/depend.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/depout.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/dmalloc.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/extra-recurs.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/gcj.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/init.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/install-sh.m4
|
||||
drwxr-xr-x root/root usr/share/aclocal-1.16/internal/
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/internal/ac-config-macro-dirs.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/lead-dot.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/lex.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/lispdir.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/maintainer.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/make.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/missing.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/mkdirp.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/obsolete.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/options.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/prog-cc-c-o.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/python.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/runlog.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/sanity.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/silent.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/strip.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/substnot.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/tar.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/upc.m4
|
||||
-rw-r--r-- root/root usr/share/aclocal-1.16/vala.m4
|
||||
drwxr-xr-x root/root usr/share/aclocal/
|
||||
-rw-r--r-- root/root usr/share/aclocal/README
|
||||
drwxr-xr-x root/root usr/share/automake-1.16/
|
||||
drwxr-xr-x root/root usr/share/automake-1.16/Automake/
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/ChannelDefs.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Channels.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Condition.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Config.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Configure_ac.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/DisjConditions.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/FileUtils.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/General.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Getopt.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Item.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/ItemDef.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Language.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Location.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Options.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Rule.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/RuleDef.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/VarDef.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Variable.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Version.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/Wrap.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/Automake/XFile.pm
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/COPYING
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/INSTALL
|
||||
drwxr-xr-x root/root usr/share/automake-1.16/am/
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/check.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/check2.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/clean-hdr.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/clean.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/compile.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/configure.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/data.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/dejagnu.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/depend.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/depend2.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/distdir.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/footer.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/header-vars.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/header.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/inst-vars.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/install.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/java.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/lang-compile.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/lex.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/library.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/libs.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/libtool.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/lisp.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/ltlib.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/ltlibrary.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/mans-vars.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/mans.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/program.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/progs.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/python.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/remake-hdr.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/scripts.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/subdirs.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/tags.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/texi-vers.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/texibuild.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/texinfos.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/vala.am
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/am/yacc.am
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/ar-lib
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/compile
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/config.guess
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/config.sub
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/depcomp
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/install-sh
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/mdate-sh
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/missing
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/mkinstalldirs
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/py-compile
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/tap-driver.sh
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/test-driver
|
||||
-rw-r--r-- root/root usr/share/automake-1.16/texinfo.tex
|
||||
-rwxr-xr-x root/root usr/share/automake-1.16/ylwrap
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/automake/
|
||||
-rw-r--r-- root/root usr/share/doc/automake/amhello-1.0.tar.gz
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/automake-history.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/automake.info-1.gz
|
||||
-rw-r--r-- root/root usr/share/info/automake.info-2.gz
|
||||
-rw-r--r-- root/root usr/share/info/automake.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/aclocal-1.16.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/aclocal.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/automake-1.16.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/automake.1.gz
|
@ -1 +0,0 @@
|
||||
4017e96f89fca45ca946f1c5db6be714 automake-1.16.5.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for automake
|
||||
|
||||
name=automake
|
||||
version=1.16.5
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1,252 +0,0 @@
|
||||
drwxr-xr-x root/root bin/
|
||||
-rwxr-xr-x root/root bin/bash
|
||||
drwxr-xr-x root/root etc/
|
||||
-rw-r--r-- root/root etc/bashrc
|
||||
-rw-r--r-- root/root etc/profile
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-r-xr-xr-x root/root usr/bin/bashbug
|
||||
drwxr-xr-x root/root usr/include/
|
||||
drwxr-xr-x root/root usr/include/bash/
|
||||
-rw-r--r-- root/root usr/include/bash/alias.h
|
||||
-rw-r--r-- root/root usr/include/bash/array.h
|
||||
-rw-r--r-- root/root usr/include/bash/arrayfunc.h
|
||||
-rw-r--r-- root/root usr/include/bash/assoc.h
|
||||
-rw-r--r-- root/root usr/include/bash/bashansi.h
|
||||
-rw-r--r-- root/root usr/include/bash/bashintl.h
|
||||
-rw-r--r-- root/root usr/include/bash/bashjmp.h
|
||||
-rw-r--r-- root/root usr/include/bash/bashtypes.h
|
||||
-rw-r--r-- root/root usr/include/bash/builtins.h
|
||||
drwxr-xr-x root/root usr/include/bash/builtins/
|
||||
-rw-r--r-- root/root usr/include/bash/builtins/bashgetopt.h
|
||||
-rw-r--r-- root/root usr/include/bash/builtins/builtext.h
|
||||
-rw-r--r-- root/root usr/include/bash/builtins/common.h
|
||||
-rw-r--r-- root/root usr/include/bash/builtins/getopt.h
|
||||
-rw-r--r-- root/root usr/include/bash/command.h
|
||||
-rw-r--r-- root/root usr/include/bash/config-bot.h
|
||||
-rw-r--r-- root/root usr/include/bash/config-top.h
|
||||
-rw-r--r-- root/root usr/include/bash/config.h
|
||||
-rw-r--r-- root/root usr/include/bash/conftypes.h
|
||||
-rw-r--r-- root/root usr/include/bash/dispose_cmd.h
|
||||
-rw-r--r-- root/root usr/include/bash/error.h
|
||||
-rw-r--r-- root/root usr/include/bash/execute_cmd.h
|
||||
-rw-r--r-- root/root usr/include/bash/externs.h
|
||||
-rw-r--r-- root/root usr/include/bash/general.h
|
||||
-rw-r--r-- root/root usr/include/bash/hashlib.h
|
||||
drwxr-xr-x root/root usr/include/bash/include/
|
||||
-rw-r--r-- root/root usr/include/bash/include/ansi_stdlib.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/chartypes.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/filecntl.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/gettext.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/maxpath.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/memalloc.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/ocache.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/posixdir.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/posixjmp.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/posixstat.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/posixtime.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/posixwait.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/shmbchar.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/shmbutil.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/shtty.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/stat-time.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/stdc.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/systimes.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/typemax.h
|
||||
-rw-r--r-- root/root usr/include/bash/include/unionwait.h
|
||||
-rw-r--r-- root/root usr/include/bash/jobs.h
|
||||
-rw-r--r-- root/root usr/include/bash/make_cmd.h
|
||||
-rw-r--r-- root/root usr/include/bash/pathnames.h
|
||||
-rw-r--r-- root/root usr/include/bash/quit.h
|
||||
-rw-r--r-- root/root usr/include/bash/shell.h
|
||||
-rw-r--r-- root/root usr/include/bash/sig.h
|
||||
-rw-r--r-- root/root usr/include/bash/siglist.h
|
||||
-rw-r--r-- root/root usr/include/bash/signames.h
|
||||
-rw-r--r-- root/root usr/include/bash/subst.h
|
||||
-rw-r--r-- root/root usr/include/bash/syntax.h
|
||||
-rw-r--r-- root/root usr/include/bash/unwind_prot.h
|
||||
-rw-r--r-- root/root usr/include/bash/variables.h
|
||||
-rw-r--r-- root/root usr/include/bash/version.h
|
||||
-rw-r--r-- root/root usr/include/bash/xmalloc.h
|
||||
-rw-r--r-- root/root usr/include/bash/y.tab.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/bash/
|
||||
-rw-r--r-- root/root usr/lib/bash/Makefile.inc
|
||||
-rw-r--r-- root/root usr/lib/bash/Makefile.sample
|
||||
-rwxr-xr-x root/root usr/lib/bash/accept
|
||||
-rwxr-xr-x root/root usr/lib/bash/basename
|
||||
-rwxr-xr-x root/root usr/lib/bash/csv
|
||||
-rwxr-xr-x root/root usr/lib/bash/cut
|
||||
-rwxr-xr-x root/root usr/lib/bash/dirname
|
||||
-rwxr-xr-x root/root usr/lib/bash/dsv
|
||||
-rwxr-xr-x root/root usr/lib/bash/fdflags
|
||||
-rwxr-xr-x root/root usr/lib/bash/finfo
|
||||
-rwxr-xr-x root/root usr/lib/bash/getconf
|
||||
-rwxr-xr-x root/root usr/lib/bash/head
|
||||
-rwxr-xr-x root/root usr/lib/bash/id
|
||||
-rwxr-xr-x root/root usr/lib/bash/ln
|
||||
-rw-r--r-- root/root usr/lib/bash/loadables.h
|
||||
-rwxr-xr-x root/root usr/lib/bash/logname
|
||||
-rwxr-xr-x root/root usr/lib/bash/mkdir
|
||||
-rwxr-xr-x root/root usr/lib/bash/mkfifo
|
||||
-rwxr-xr-x root/root usr/lib/bash/mktemp
|
||||
-rwxr-xr-x root/root usr/lib/bash/mypid
|
||||
-rwxr-xr-x root/root usr/lib/bash/pathchk
|
||||
-rwxr-xr-x root/root usr/lib/bash/print
|
||||
-rwxr-xr-x root/root usr/lib/bash/printenv
|
||||
-rwxr-xr-x root/root usr/lib/bash/push
|
||||
-rwxr-xr-x root/root usr/lib/bash/realpath
|
||||
-rwxr-xr-x root/root usr/lib/bash/rm
|
||||
-rwxr-xr-x root/root usr/lib/bash/rmdir
|
||||
-rwxr-xr-x root/root usr/lib/bash/seq
|
||||
-rwxr-xr-x root/root usr/lib/bash/setpgid
|
||||
-rwxr-xr-x root/root usr/lib/bash/sleep
|
||||
-rwxr-xr-x root/root usr/lib/bash/stat
|
||||
-rwxr-xr-x root/root usr/lib/bash/strftime
|
||||
-rwxr-xr-x root/root usr/lib/bash/sync
|
||||
-rwxr-xr-x root/root usr/lib/bash/tee
|
||||
-rwxr-xr-x root/root usr/lib/bash/truefalse
|
||||
-rwxr-xr-x root/root usr/lib/bash/tty
|
||||
-rwxr-xr-x root/root usr/lib/bash/uname
|
||||
-rwxr-xr-x root/root usr/lib/bash/unlink
|
||||
-rwxr-xr-x root/root usr/lib/bash/whoami
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/bash.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/bash/
|
||||
-rw-r--r-- root/root usr/share/doc/bash/CHANGES
|
||||
-rw-r--r-- root/root usr/share/doc/bash/COMPAT
|
||||
-rw-r--r-- root/root usr/share/doc/bash/FAQ
|
||||
-rw-r--r-- root/root usr/share/doc/bash/INTRO
|
||||
-rw-r--r-- root/root usr/share/doc/bash/NEWS
|
||||
-rw-r--r-- root/root usr/share/doc/bash/POSIX
|
||||
-rw-r--r-- root/root usr/share/doc/bash/RBASH
|
||||
-rw-r--r-- root/root usr/share/doc/bash/README
|
||||
-rw-r--r-- root/root usr/share/doc/bash/bash.html
|
||||
-rw-r--r-- root/root usr/share/doc/bash/bashref.html
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/bash.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/af/
|
||||
drwxr-xr-x root/root usr/share/locale/af/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/af/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@boldquot/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@quot/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/et/
|
||||
drwxr-xr-x root/root usr/share/locale/et/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lt/
|
||||
drwxr-xr-x root/root usr/share/locale/lt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lt/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sk/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sl/
|
||||
drwxr-xr-x root/root usr/share/locale/sl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sl/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/bash.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/bash.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/bashbug.1.gz
|
@ -1,3 +0,0 @@
|
||||
4281bb43497f3905a308430a8d6a30a5 bash-5.2.15.tar.gz
|
||||
7995a7c98fd5cd1d780c2a1f3022e1c8 bashrc
|
||||
dcc2549c4a11572a9d272ed65eda3958 profile
|
@ -1,25 +0,0 @@
|
||||
# Pkgfile for bash
|
||||
|
||||
name=bash
|
||||
version=5.2.15
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
|
||||
bashrc
|
||||
profile)
|
||||
build_opt="--without-bash-malloc --with-installed-readline"
|
||||
|
||||
bootstrap_build() {
|
||||
./configure --prefix=$TOOLS --without-bash-malloc
|
||||
make -j1
|
||||
make install
|
||||
ln -sv bash $TOOLS/bin/sh
|
||||
}
|
||||
|
||||
post_build() {
|
||||
mkdir -p $PKG/bin
|
||||
mv $PKG/usr/bin/bash $PKG/bin
|
||||
|
||||
install -d $PKG/etc
|
||||
install -m644 $SRC/bashrc $PKG/etc
|
||||
install -m644 $SRC/profile $PKG/etc
|
||||
}
|
@ -1 +0,0 @@
|
||||
a148cbaaf8ff813b7289a00539e74a5f bc-6.6.0.tar.xz
|
@ -1,13 +0,0 @@
|
||||
# Pkgfile for bc
|
||||
|
||||
name=bc
|
||||
version=6.6.0
|
||||
release=1
|
||||
source=(https://github.com/gavinhoward/$name/releases/download/$version/$name-$version.tar.xz)
|
||||
|
||||
pkg_build() {
|
||||
PREFIX=/usr CC=gcc CFLAGS="-std=c99" ./configure.sh -G -O3
|
||||
#./configure --prefix=/usr -r
|
||||
make
|
||||
make install
|
||||
}
|
@ -1,387 +0,0 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
-rw-r--r-- root/root etc/gprofng.rc
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/addr2line
|
||||
-rwxr-xr-x root/root usr/bin/ar
|
||||
-rwxr-xr-x root/root usr/bin/as
|
||||
-rwxr-xr-x root/root usr/bin/c++filt
|
||||
-rwxr-xr-x root/root usr/bin/dwp
|
||||
-rwxr-xr-x root/root usr/bin/elfedit
|
||||
-rwxr-xr-x root/root usr/bin/gp-archive
|
||||
-rwxr-xr-x root/root usr/bin/gp-collect-app
|
||||
-rwxr-xr-x root/root usr/bin/gp-display-html
|
||||
-rwxr-xr-x root/root usr/bin/gp-display-src
|
||||
-rwxr-xr-x root/root usr/bin/gp-display-text
|
||||
-rwxr-xr-x root/root usr/bin/gprof
|
||||
-rwxr-xr-x root/root usr/bin/gprofng
|
||||
-rwxr-xr-x root/root usr/bin/ld
|
||||
-rwxr-xr-x root/root usr/bin/ld.bfd
|
||||
-rwxr-xr-x root/root usr/bin/ld.gold
|
||||
-rwxr-xr-x root/root usr/bin/nm
|
||||
-rwxr-xr-x root/root usr/bin/objcopy
|
||||
-rwxr-xr-x root/root usr/bin/objdump
|
||||
-rwxr-xr-x root/root usr/bin/ranlib
|
||||
-rwxr-xr-x root/root usr/bin/readelf
|
||||
-rwxr-xr-x root/root usr/bin/size
|
||||
-rwxr-xr-x root/root usr/bin/strings
|
||||
-rwxr-xr-x root/root usr/bin/strip
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/ansidecl.h
|
||||
-rw-r--r-- root/root usr/include/bfd.h
|
||||
-rw-r--r-- root/root usr/include/bfdlink.h
|
||||
-rw-r--r-- root/root usr/include/collectorAPI.h
|
||||
-rw-r--r-- root/root usr/include/ctf-api.h
|
||||
-rw-r--r-- root/root usr/include/ctf.h
|
||||
-rw-r--r-- root/root usr/include/diagnostics.h
|
||||
-rw-r--r-- root/root usr/include/dis-asm.h
|
||||
-rw-r--r-- root/root usr/include/libcollector.h
|
||||
-rw-r--r-- root/root usr/include/libfcollector.h
|
||||
-rw-r--r-- root/root usr/include/plugin-api.h
|
||||
-rw-r--r-- root/root usr/include/sframe-api.h
|
||||
-rw-r--r-- root/root usr/include/sframe.h
|
||||
-rw-r--r-- root/root usr/include/symcat.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/bfd-plugins/
|
||||
-rwxr-xr-x root/root usr/lib/bfd-plugins/libdep.so
|
||||
drwxr-xr-x root/root usr/lib/gprofng/
|
||||
-rwxr-xr-x root/root usr/lib/gprofng/libgp-collector.so
|
||||
-rwxr-xr-x root/root usr/lib/gprofng/libgp-collectorAPI.so
|
||||
-rwxr-xr-x root/root usr/lib/gprofng/libgp-heap.so
|
||||
-rwxr-xr-x root/root usr/lib/gprofng/libgp-iotrace.so
|
||||
-rwxr-xr-x root/root usr/lib/gprofng/libgp-sync.so
|
||||
lrwxrwxrwx root/root usr/lib/gprofng/libgprofng.so -> libgprofng.so.0.0.0
|
||||
lrwxrwxrwx root/root usr/lib/gprofng/libgprofng.so.0 -> libgprofng.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/gprofng/libgprofng.so.0.0.0
|
||||
drwxr-xr-x root/root usr/lib/ldscripts/
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.x
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xbn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xd
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xdc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xdce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xde
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xdw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xdwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xr
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xs
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xsc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xsce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xse
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xsw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xswe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xu
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf32_x86_64.xwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.x
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xbn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xd
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xdc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xdce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xde
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xdw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xdwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xr
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xs
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xsc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xsce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xse
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xsw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xswe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xu
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_i386.xwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.x
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xbn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xd
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xdc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xdce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xde
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xdw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xdwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xr
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xs
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xsc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xsce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xse
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xsw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xswe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xu
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_iamcu.xwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.x
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xbn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xd
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xdc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xdce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xde
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xdw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xdwe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xn
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xr
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xs
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xsc
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xsce
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xse
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xsw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xswe
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xu
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xw
|
||||
-rw-r--r-- root/root usr/lib/ldscripts/elf_x86_64.xwe
|
||||
-rwxr-xr-x root/root usr/lib/libbfd-2.40.so
|
||||
-rw-r--r-- root/root usr/lib/libbfd.a
|
||||
-rwxr-xr-x root/root usr/lib/libbfd.la
|
||||
lrwxrwxrwx root/root usr/lib/libbfd.so -> libbfd-2.40.so
|
||||
-rw-r--r-- root/root usr/lib/libctf-nobfd.a
|
||||
-rwxr-xr-x root/root usr/lib/libctf-nobfd.la
|
||||
lrwxrwxrwx root/root usr/lib/libctf-nobfd.so -> libctf-nobfd.so.0.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libctf-nobfd.so.0 -> libctf-nobfd.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libctf-nobfd.so.0.0.0
|
||||
-rw-r--r-- root/root usr/lib/libctf.a
|
||||
-rwxr-xr-x root/root usr/lib/libctf.la
|
||||
lrwxrwxrwx root/root usr/lib/libctf.so -> libctf.so.0.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libctf.so.0 -> libctf.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libctf.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libopcodes-2.40.so
|
||||
-rw-r--r-- root/root usr/lib/libopcodes.a
|
||||
-rwxr-xr-x root/root usr/lib/libopcodes.la
|
||||
lrwxrwxrwx root/root usr/lib/libopcodes.so -> libopcodes-2.40.so
|
||||
-rw-r--r-- root/root usr/lib/libsframe.a
|
||||
-rwxr-xr-x root/root usr/lib/libsframe.la
|
||||
lrwxrwxrwx root/root usr/lib/libsframe.so -> libsframe.so.0.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libsframe.so.0 -> libsframe.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libsframe.so.0.0.0
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/as.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/bfd.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/binutils.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/ctf-spec.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/gprof.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/gprofng.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/ld.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/sframe-spec.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/ld.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/binutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/gprof.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/binutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/gprof.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/ld.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ka/
|
||||
drwxr-xr-x root/root usr/share/locale/ka/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ka/LC_MESSAGES/gprof.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/gprof.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/binutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/ld.mo
|
||||
drwxr-xr-x root/root usr/share/locale/rw/
|
||||
drwxr-xr-x root/root usr/share/locale/rw/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/rw/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/rw/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/rw/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/rw/LC_MESSAGES/gprof.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sk/LC_MESSAGES/binutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/gprof.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/bfd.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/gas.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/gold.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/ld.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/opcodes.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/binutils.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/ld.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/addr2line.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ar.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/as.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/c++filt.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/dlltool.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/elfedit.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gp-archive.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gp-collect-app.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gp-display-html.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gp-display-src.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gp-display-text.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gprof.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gprofng.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ld.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/nm.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/objcopy.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/objdump.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ranlib.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/readelf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/size.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/strings.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/strip.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/windmc.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/windres.1.gz
|
@ -1 +0,0 @@
|
||||
007b59bd908a737c06e5a8d3d2c737eb binutils-2.40.tar.xz
|
@ -1,62 +0,0 @@
|
||||
# Pkgfile for binutils
|
||||
|
||||
name=binutils
|
||||
version=2.40
|
||||
release=1
|
||||
source=(https://sourceware.org/pub/$name/releases/$name-$version.tar.xz)
|
||||
|
||||
bootstrap_build() {
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
if [ "$tcpkg" = binutils-pass1 ]; then
|
||||
../configure \
|
||||
--prefix=$TOOLS \
|
||||
--with-sysroot=$LFS \
|
||||
--target=$LFS_TGT \
|
||||
--disable-nls \
|
||||
--disable-werror \
|
||||
--enable-gprofng=no \
|
||||
--with-lib-path=$TOOLS/lib:$TOOLS/lib32
|
||||
make
|
||||
mkdir -v $TOOLS/lib && ln -sv lib $TOOLS/lib64
|
||||
mkdir -p $TOOLS/lib32
|
||||
make install
|
||||
elif [ "$tcpkg" = binutils-pass2 ]; then
|
||||
CC=$LFS_TGT-gcc \
|
||||
AR=$LFS_TGT-ar \
|
||||
RANLIB=$LFS_TGT-ranlib \
|
||||
../configure \
|
||||
--prefix=$TOOLS \
|
||||
--disable-nls \
|
||||
--disable-werror \
|
||||
--with-lib-path=$TOOLS/lib \
|
||||
--enable-gprofng=no \
|
||||
--with-sysroot
|
||||
make || make -j1
|
||||
make install
|
||||
make -C ld clean
|
||||
make -C ld LIB_PATH=/usr/lib:/lib:/usr/lib32
|
||||
cp -v ld/ld-new $TOOLS/bin
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_build() {
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
../configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--enable-gold \
|
||||
--enable-ld=default \
|
||||
--enable-lto \
|
||||
--enable-plugins \
|
||||
--enable-shared \
|
||||
--disable-werror \
|
||||
--with-system-zlib \
|
||||
--enable-multilib \
|
||||
--with-lib-path=/usr/lib:/lib:/usr/lib32
|
||||
make DESTDIR=$PKG tooldir=/usr
|
||||
make DESTDIR=$PKG tooldir=/usr install
|
||||
}
|
@ -1,330 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/bison
|
||||
-rwxr-xr-x root/root usr/bin/yacc
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/liby.a
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/aclocal/
|
||||
-rw-r--r-- root/root usr/share/aclocal/bison-i18n.m4
|
||||
drwxr-xr-x root/root usr/share/bison/
|
||||
-rw-r--r-- root/root usr/share/bison/README.md
|
||||
-rw-r--r-- root/root usr/share/bison/bison-default.css
|
||||
drwxr-xr-x root/root usr/share/bison/m4sugar/
|
||||
-rw-r--r-- root/root usr/share/bison/m4sugar/foreach.m4
|
||||
-rw-r--r-- root/root usr/share/bison/m4sugar/m4sugar.m4
|
||||
drwxr-xr-x root/root usr/share/bison/skeletons/
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/bison.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/c++-skel.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/c++.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/c-like.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/c-skel.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/c.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/d-skel.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/d.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/glr.c
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/glr.cc
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/glr2.cc
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/java-skel.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/java.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/lalr1.cc
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/lalr1.d
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/lalr1.java
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/location.cc
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/stack.hh
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/traceon.m4
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/variant.hh
|
||||
-rw-r--r-- root/root usr/share/bison/skeletons/yacc.c
|
||||
drwxr-xr-x root/root usr/share/bison/xslt/
|
||||
-rw-r--r-- root/root usr/share/bison/xslt/bison.xsl
|
||||
-rw-r--r-- root/root usr/share/bison/xslt/xml2dot.xsl
|
||||
-rw-r--r-- root/root usr/share/bison/xslt/xml2text.xsl
|
||||
-rw-r--r-- root/root usr/share/bison/xslt/xml2xhtml.xsl
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/bison/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/AUTHORS
|
||||
-rw-r--r-- root/root usr/share/doc/bison/COPYING
|
||||
-rw-r--r-- root/root usr/share/doc/bison/NEWS
|
||||
-rw-r--r-- root/root usr/share/doc/bison/README
|
||||
-rw-r--r-- root/root usr/share/doc/bison/THANKS
|
||||
-rw-r--r-- root/root usr/share/doc/bison/TODO
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/README.md
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c++/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/README.md
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c++/calc++/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/calc++.cc
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/driver.cc
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/driver.hh
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/parser.yy
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/calc++/scanner.ll
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/simple.yy
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/variant-11.yy
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c++/variant.yy
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/README.md
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/bistromathic/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/bistromathic/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/bistromathic/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/bistromathic/parse.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/calc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/calc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/calc/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/calc/calc.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/glr/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/glr/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/glr/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/glr/c++-types.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/lexcalc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/lexcalc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/lexcalc/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/lexcalc/parse.y
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/lexcalc/scan.l
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/mfcalc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/mfcalc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/mfcalc/calc.h
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/mfcalc/mfcalc.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/pushcalc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/pushcalc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/pushcalc/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/pushcalc/calc.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/reccalc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/reccalc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/reccalc/README.md
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/reccalc/parse.y
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/reccalc/scan.l
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/c/rpcalc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/rpcalc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/c/rpcalc/rpcalc.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/d/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/d/README.md
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/d/calc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/d/calc/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/d/calc/calc.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/d/simple/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/d/simple/Makefile
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/d/simple/calc.y
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/java/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/java/README.md
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/java/calc/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/java/calc/Calc.y
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/java/calc/Makefile
|
||||
drwxr-xr-x root/root usr/share/doc/bison/examples/java/simple/
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/java/simple/Calc.y
|
||||
-rw-r--r-- root/root usr/share/doc/bison/examples/java/simple/Makefile
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/bison.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/af/
|
||||
drwxr-xr-x root/root usr/share/locale/af/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/af/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ast/
|
||||
drwxr-xr-x root/root usr/share/locale/ast/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ast/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/be/
|
||||
drwxr-xr-x root/root usr/share/locale/be/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/be/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/et/
|
||||
drwxr-xr-x root/root usr/share/locale/et/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eu/
|
||||
drwxr-xr-x root/root usr/share/locale/eu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eu/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ia/
|
||||
drwxr-xr-x root/root usr/share/locale/ia/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ia/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ky/
|
||||
drwxr-xr-x root/root usr/share/locale/ky/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ky/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lt/
|
||||
drwxr-xr-x root/root usr/share/locale/lt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lt/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lv/
|
||||
drwxr-xr-x root/root usr/share/locale/lv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lv/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/rw/
|
||||
drwxr-xr-x root/root usr/share/locale/rw/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/rw/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sk/LC_MESSAGES/bison-gnulib.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sl/
|
||||
drwxr-xr-x root/root usr/share/locale/sl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sl/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sl/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sq/
|
||||
drwxr-xr-x root/root usr/share/locale/sq/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sq/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ta/
|
||||
drwxr-xr-x root/root usr/share/locale/ta/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ta/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/th/
|
||||
drwxr-xr-x root/root usr/share/locale/th/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/th/LC_MESSAGES/bison-runtime.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/bison-gnulib.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/bison.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/bison.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/yacc.1.gz
|
@ -1 +0,0 @@
|
||||
c28f119f405a2304ff0a7ccdcc629713 bison-3.8.2.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for bison
|
||||
|
||||
name=bison
|
||||
version=3.8.2
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1 +0,0 @@
|
||||
67e051268d0c475ea773822f7500d0e5 bzip2-1.0.8.tar.gz
|
@ -1,40 +0,0 @@
|
||||
# Pkgfile for bzip2
|
||||
|
||||
name=bzip2
|
||||
version=1.0.8
|
||||
release=1
|
||||
source=(https://www.sourceware.org/pub/$name/$name-$version.tar.gz)
|
||||
|
||||
bootstrap_build() {
|
||||
make -f Makefile-libbz2_so
|
||||
make clean
|
||||
make
|
||||
make PREFIX=$TOOLS install
|
||||
cp -v bzip2-shared $TOOLS/bin/bzip2
|
||||
cp -v libbz2.so* $TOOLS/lib
|
||||
ln -sv libbz2.so.1.0 $TOOLS/lib/libbz2.so
|
||||
}
|
||||
|
||||
pkg_build() {
|
||||
sed -i 's@\(ln -s -f \)$(PREFIX)/bin/@\1@' Makefile
|
||||
sed -i "s@(PREFIX)/man@(PREFIX)/share/man@g" Makefile
|
||||
|
||||
[ "${CFLAGS}" ] && sed -i "s|-O2|${CFLAGS}|g" Makefile
|
||||
[ "${CFLAGS}" ] && sed -i "s|-O2|${CFLAGS}|g" Makefile-libbz2_so
|
||||
|
||||
make -f Makefile-libbz2_so
|
||||
mkdir -p $PKG/usr/lib
|
||||
install libbz2.so.$version $PKG/usr/lib
|
||||
ln -s libbz2.so.$version $PKG/usr/lib/libbz2.so
|
||||
ln -s libbz2.so.$version $PKG/usr/lib/libbz2.so.1.0
|
||||
|
||||
make clean
|
||||
make
|
||||
make PREFIX=$PKG/usr install
|
||||
|
||||
cp -v bzip2-shared $PKG/usr/bin/bzip2
|
||||
ln -sf bzip2 $PKG/usr/bin/bzcat
|
||||
ln -sf bzip2 $PKG/usr/bin/bunzip2
|
||||
|
||||
install -Dm 0644 bzlib.h $PKG/usr/include/bzlib.h
|
||||
}
|
@ -1 +0,0 @@
|
||||
bb81e925b5a061c5cbc5788ad7ca66c1 cacert-2023-05-30.pem
|
@ -1,17 +0,0 @@
|
||||
# Pkgfile for ca-certificates
|
||||
|
||||
name=ca-certificates
|
||||
version=20230530
|
||||
release=1
|
||||
source=(https://curl.se/ca/cacert-2023-05-30.pem)
|
||||
|
||||
bootstrap_build() {
|
||||
install -Dm644 $SRC/cacert-2023-05-30.pem $TOOLS/etc/ssl/cert.pem
|
||||
}
|
||||
|
||||
pkg_build() {
|
||||
install -Dm644 $SRC/cacert-2023-05-30.pem $PKG/etc/ssl/cert.pem
|
||||
install -d $PKG/etc/ssl/certs
|
||||
ln -s /etc/ssl/cert.pem $PKG/etc/ssl/certs/ca-certificates.crt
|
||||
ln -s /etc/ssl/cert.pem $PKG/etc/ssl/ca-bundle.crt
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/checkmk
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/check.h
|
||||
-rw-r--r-- root/root usr/include/check_stdint.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libcheck.a
|
||||
-rwxr-xr-x root/root usr/lib/libcheck.la
|
||||
lrwxrwxrwx root/root usr/lib/libcheck.so -> libcheck.so.0.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libcheck.so.0 -> libcheck.so.0.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libcheck.so.0.0.0
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/check.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/aclocal/
|
||||
-rw-r--r-- root/root usr/share/aclocal/check.m4
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/check/
|
||||
-rw-r--r-- root/root usr/share/doc/check/COPYING.LESSER
|
||||
-rw-r--r-- root/root usr/share/doc/check/ChangeLog
|
||||
-rw-r--r-- root/root usr/share/doc/check/NEWS
|
||||
-rw-r--r-- root/root usr/share/doc/check/README
|
||||
drwxr-xr-x root/root usr/share/doc/check/example/
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/Makefile.am
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/README
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/configure.ac
|
||||
drwxr-xr-x root/root usr/share/doc/check/example/src/
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/Makefile.am
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/main.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.1.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.1.h
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.2.h
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.3.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.4.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.5.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.6.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/src/money.h
|
||||
drwxr-xr-x root/root usr/share/doc/check/example/tests/
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/Makefile.am
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/check_money.1.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/check_money.2.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/check_money.3.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/check_money.6.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/check_money.7.c
|
||||
-rw-r--r-- root/root usr/share/doc/check/example/tests/check_money.c
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/check.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/checkmk.1.gz
|
@ -1 +0,0 @@
|
||||
50fcafcecde5a380415b12e9c574e0b2 check-0.15.2.tar.gz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for check
|
||||
|
||||
name=check
|
||||
version=0.15.2
|
||||
release=1
|
||||
source=(https://github.com/lib$name/$name/releases/download/$version/$name-$version.tar.gz)
|
@ -1,442 +0,0 @@
|
||||
drwxr-xr-x root/root bin/
|
||||
-rwxr-xr-x root/root bin/cat
|
||||
-rwxr-xr-x root/root bin/chgrp
|
||||
-rwxr-xr-x root/root bin/chmod
|
||||
-rwxr-xr-x root/root bin/chown
|
||||
-rwxr-xr-x root/root bin/cp
|
||||
-rwxr-xr-x root/root bin/date
|
||||
-rwxr-xr-x root/root bin/dd
|
||||
-rwxr-xr-x root/root bin/df
|
||||
-rwxr-xr-x root/root bin/echo
|
||||
-rwxr-xr-x root/root bin/false
|
||||
-rwxr-xr-x root/root bin/ln
|
||||
-rwxr-xr-x root/root bin/ls
|
||||
-rwxr-xr-x root/root bin/mkdir
|
||||
-rwxr-xr-x root/root bin/mknod
|
||||
-rwxr-xr-x root/root bin/mv
|
||||
-rwxr-xr-x root/root bin/pwd
|
||||
-rwxr-xr-x root/root bin/rm
|
||||
-rwxr-xr-x root/root bin/rmdir
|
||||
-rwxr-xr-x root/root bin/stty
|
||||
-rwxr-xr-x root/root bin/sync
|
||||
-rwxr-xr-x root/root bin/true
|
||||
-rwxr-xr-x root/root bin/uname
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/[
|
||||
-rwxr-xr-x root/root usr/bin/b2sum
|
||||
-rwxr-xr-x root/root usr/bin/base32
|
||||
-rwxr-xr-x root/root usr/bin/base64
|
||||
-rwxr-xr-x root/root usr/bin/basename
|
||||
-rwxr-xr-x root/root usr/bin/basenc
|
||||
-rwxr-xr-x root/root usr/bin/chcon
|
||||
-rwxr-xr-x root/root usr/bin/cksum
|
||||
-rwxr-xr-x root/root usr/bin/comm
|
||||
-rwxr-xr-x root/root usr/bin/csplit
|
||||
-rwxr-xr-x root/root usr/bin/cut
|
||||
-rwxr-xr-x root/root usr/bin/dir
|
||||
-rwxr-xr-x root/root usr/bin/dircolors
|
||||
-rwxr-xr-x root/root usr/bin/dirname
|
||||
-rwxr-xr-x root/root usr/bin/du
|
||||
-rwxr-xr-x root/root usr/bin/env
|
||||
-rwxr-xr-x root/root usr/bin/expand
|
||||
-rwxr-xr-x root/root usr/bin/expr
|
||||
-rwxr-xr-x root/root usr/bin/factor
|
||||
-rwxr-xr-x root/root usr/bin/fmt
|
||||
-rwxr-xr-x root/root usr/bin/fold
|
||||
-rwxr-xr-x root/root usr/bin/groups
|
||||
-rwxr-xr-x root/root usr/bin/head
|
||||
-rwxr-xr-x root/root usr/bin/hostid
|
||||
-rwxr-xr-x root/root usr/bin/id
|
||||
-rwxr-xr-x root/root usr/bin/install
|
||||
-rwxr-xr-x root/root usr/bin/join
|
||||
-rwxr-xr-x root/root usr/bin/link
|
||||
-rwxr-xr-x root/root usr/bin/logname
|
||||
-rwxr-xr-x root/root usr/bin/md5sum
|
||||
-rwxr-xr-x root/root usr/bin/mkfifo
|
||||
-rwxr-xr-x root/root usr/bin/mktemp
|
||||
-rwxr-xr-x root/root usr/bin/nice
|
||||
-rwxr-xr-x root/root usr/bin/nl
|
||||
-rwxr-xr-x root/root usr/bin/nohup
|
||||
-rwxr-xr-x root/root usr/bin/nproc
|
||||
-rwxr-xr-x root/root usr/bin/numfmt
|
||||
-rwxr-xr-x root/root usr/bin/od
|
||||
-rwxr-xr-x root/root usr/bin/paste
|
||||
-rwxr-xr-x root/root usr/bin/pathchk
|
||||
-rwxr-xr-x root/root usr/bin/pinky
|
||||
-rwxr-xr-x root/root usr/bin/pr
|
||||
-rwxr-xr-x root/root usr/bin/printenv
|
||||
-rwxr-xr-x root/root usr/bin/printf
|
||||
-rwxr-xr-x root/root usr/bin/ptx
|
||||
-rwxr-xr-x root/root usr/bin/readlink
|
||||
-rwxr-xr-x root/root usr/bin/realpath
|
||||
-rwxr-xr-x root/root usr/bin/runcon
|
||||
-rwxr-xr-x root/root usr/bin/seq
|
||||
-rwxr-xr-x root/root usr/bin/sha1sum
|
||||
-rwxr-xr-x root/root usr/bin/sha224sum
|
||||
-rwxr-xr-x root/root usr/bin/sha256sum
|
||||
-rwxr-xr-x root/root usr/bin/sha384sum
|
||||
-rwxr-xr-x root/root usr/bin/sha512sum
|
||||
-rwxr-xr-x root/root usr/bin/shred
|
||||
-rwxr-xr-x root/root usr/bin/shuf
|
||||
-rwxr-xr-x root/root usr/bin/sleep
|
||||
-rwxr-xr-x root/root usr/bin/sort
|
||||
-rwxr-xr-x root/root usr/bin/split
|
||||
-rwxr-xr-x root/root usr/bin/stat
|
||||
-rwxr-xr-x root/root usr/bin/stdbuf
|
||||
-rwxr-xr-x root/root usr/bin/sum
|
||||
-rwxr-xr-x root/root usr/bin/tac
|
||||
-rwxr-xr-x root/root usr/bin/tail
|
||||
-rwxr-xr-x root/root usr/bin/tee
|
||||
-rwxr-xr-x root/root usr/bin/test
|
||||
-rwxr-xr-x root/root usr/bin/timeout
|
||||
-rwxr-xr-x root/root usr/bin/touch
|
||||
-rwxr-xr-x root/root usr/bin/tr
|
||||
-rwxr-xr-x root/root usr/bin/truncate
|
||||
-rwxr-xr-x root/root usr/bin/tsort
|
||||
-rwxr-xr-x root/root usr/bin/tty
|
||||
-rwxr-xr-x root/root usr/bin/unexpand
|
||||
-rwxr-xr-x root/root usr/bin/uniq
|
||||
-rwxr-xr-x root/root usr/bin/unlink
|
||||
-rwxr-xr-x root/root usr/bin/users
|
||||
-rwxr-xr-x root/root usr/bin/vdir
|
||||
-rwxr-xr-x root/root usr/bin/wc
|
||||
-rwxr-xr-x root/root usr/bin/who
|
||||
-rwxr-xr-x root/root usr/bin/whoami
|
||||
-rwxr-xr-x root/root usr/bin/yes
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/coreutils/
|
||||
-rwxr-xr-x root/root usr/lib/coreutils/libstdbuf.so
|
||||
drwxr-xr-x root/root usr/sbin/
|
||||
-rwxr-xr-x root/root usr/sbin/chroot
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/coreutils.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/af/
|
||||
drwxr-xr-x root/root usr/share/locale/af/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/af/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/af/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/af/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/be/
|
||||
drwxr-xr-x root/root usr/share/locale/be/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/be/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/be/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/be/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/bg/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ca/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/cs/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/da/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/de/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/el/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/eo/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/es/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/et/
|
||||
drwxr-xr-x root/root usr/share/locale/et/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/et/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/et/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eu/
|
||||
drwxr-xr-x root/root usr/share/locale/eu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eu/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eu/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/eu/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/fi/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/fr/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ga/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/gl/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/hr/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/hu/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ia/
|
||||
drwxr-xr-x root/root usr/share/locale/ia/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ia/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ia/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ia/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/id/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/it/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ja/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ka/
|
||||
drwxr-xr-x root/root usr/share/locale/ka/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ka/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ka/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ka/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/kk/
|
||||
drwxr-xr-x root/root usr/share/locale/kk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/kk/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/kk/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/kk/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ko/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lg/
|
||||
drwxr-xr-x root/root usr/share/locale/lg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lg/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lg/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/lg/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lt/
|
||||
drwxr-xr-x root/root usr/share/locale/lt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lt/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lt/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/lt/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ms/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/nb/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/nl/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/pl/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/pt/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/pt_BR/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ro/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/ru/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sk/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/sk/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sl/
|
||||
drwxr-xr-x root/root usr/share/locale/sl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sl/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sl/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/sl/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/sr/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/sv/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/tr/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/uk/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/vi/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/zh_CN/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_TIME/
|
||||
lrwxrwxrwx root/root usr/share/locale/zh_TW/LC_TIME/coreutils.mo -> ../LC_MESSAGES/coreutils.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/b2sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/base32.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/base64.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/basename.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/basenc.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/cat.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/chcon.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/chgrp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/chmod.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/chown.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/cksum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/comm.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/cp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/csplit.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/cut.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/date.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/dd.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/df.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/dir.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/dircolors.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/dirname.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/du.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/echo.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/env.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/expand.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/expr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/factor.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/false.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/fmt.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/fold.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/groups.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/head.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/hostid.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/id.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/install.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/join.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/link.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ln.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/logname.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ls.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/md5sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mkdir.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mkfifo.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mknod.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mktemp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mv.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/nice.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/nl.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/nohup.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/nproc.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/numfmt.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/od.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/paste.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pathchk.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pinky.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/printenv.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/printf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ptx.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pwd.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/readlink.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/realpath.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/rm.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/rmdir.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/runcon.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/seq.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sha1sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sha224sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sha256sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sha384sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sha512sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/shred.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/shuf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sleep.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sort.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/split.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/stat.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/stdbuf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/stty.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sum.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sync.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tac.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tail.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tee.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/test.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/timeout.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/touch.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/true.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/truncate.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tsort.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tty.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/uname.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/unexpand.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/uniq.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/unlink.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/users.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/vdir.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/wc.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/who.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/whoami.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/yes.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man8/
|
||||
-rw-r--r-- root/root usr/share/man/man8/chroot.8.gz
|
@ -1 +0,0 @@
|
||||
040b4b7acaf89499834bfc79609af29f coreutils-9.3.tar.xz
|
@ -1,27 +0,0 @@
|
||||
# Pkgfile for coreutils
|
||||
|
||||
name=coreutils
|
||||
version=9.3
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
||||
export FORCE_UNSAFE_CONFIGURE=1
|
||||
build_opt="--enable-no-install-program=kill,uptime"
|
||||
|
||||
bootstrap_build() {
|
||||
FORCE_UNSAFE_CONFIGURE=1 ./configure --prefix=$TOOLS --enable-install-program=hostname
|
||||
make
|
||||
make install
|
||||
}
|
||||
|
||||
post_build() {
|
||||
mkdir -p $PKG/bin
|
||||
for i in cat chgrp chmod chown cp date dd df echo \
|
||||
false ln ls mkdir mknod mv pwd rm rmdir stty sync true uname; do
|
||||
mv $PKG/usr/bin/$i $PKG/bin
|
||||
done
|
||||
mkdir -p $PKG/usr/sbin
|
||||
mv $PKG/usr/bin/chroot $PKG/usr/sbin
|
||||
mkdir -p $PKG/usr/share/man/man8/
|
||||
mv -v $PKG/usr/share/man/man1/chroot.1 $PKG/usr/share/man/man8/chroot.8
|
||||
sed -i s/\"1\"/\"8\"/1 $PKG/usr/share/man/man8/chroot.8
|
||||
}
|
@ -1,519 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/curl
|
||||
-rwxr-xr-x root/root usr/bin/curl-config
|
||||
drwxr-xr-x root/root usr/include/
|
||||
drwxr-xr-x root/root usr/include/curl/
|
||||
-rw-r--r-- root/root usr/include/curl/curl.h
|
||||
-rw-r--r-- root/root usr/include/curl/curlver.h
|
||||
-rw-r--r-- root/root usr/include/curl/easy.h
|
||||
-rw-r--r-- root/root usr/include/curl/header.h
|
||||
-rw-r--r-- root/root usr/include/curl/mprintf.h
|
||||
-rw-r--r-- root/root usr/include/curl/multi.h
|
||||
-rw-r--r-- root/root usr/include/curl/options.h
|
||||
-rw-r--r-- root/root usr/include/curl/stdcheaders.h
|
||||
-rw-r--r-- root/root usr/include/curl/system.h
|
||||
-rw-r--r-- root/root usr/include/curl/typecheck-gcc.h
|
||||
-rw-r--r-- root/root usr/include/curl/urlapi.h
|
||||
-rw-r--r-- root/root usr/include/curl/websockets.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libcurl.a
|
||||
-rwxr-xr-x root/root usr/lib/libcurl.la
|
||||
lrwxrwxrwx root/root usr/lib/libcurl.so -> libcurl.so.4.8.0
|
||||
lrwxrwxrwx root/root usr/lib/libcurl.so.4 -> libcurl.so.4.8.0
|
||||
-rwxr-xr-x root/root usr/lib/libcurl.so.4.8.0
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libcurl.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/aclocal/
|
||||
-rw-r--r-- root/root usr/share/aclocal/libcurl.m4
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/curl-config.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/curl.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_ACTIVESOCKET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_APPCONNECT_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_APPCONNECT_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CAINFO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CAPATH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CERTINFO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONDITION_UNMET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONNECT_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONNECT_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_CONTENT_TYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_COOKIELIST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_EFFECTIVE_METHOD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_EFFECTIVE_URL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_FILETIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_FILETIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_FTP_ENTRY_PATH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_HEADER_SIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_HTTPAUTH_AVAIL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_HTTP_CONNECTCODE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_HTTP_VERSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_LASTSOCKET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_LOCAL_IP.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_LOCAL_PORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_NAMELOOKUP_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_NAMELOOKUP_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_NUM_CONNECTS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_OS_ERRNO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PRETRANSFER_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PRETRANSFER_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PRIMARY_IP.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PRIMARY_PORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PRIVATE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PROTOCOL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PROXYAUTH_AVAIL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PROXY_ERROR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_PROXY_SSL_VERIFYRESULT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_COUNT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_URL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REFERER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REQUEST_SIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RESPONSE_CODE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RETRY_AFTER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RTSP_CLIENT_CSEQ.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RTSP_CSEQ_RECV.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RTSP_SERVER_CSEQ.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RTSP_SESSION_ID.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SCHEME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SIZE_DOWNLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SIZE_DOWNLOAD_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SIZE_UPLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SIZE_UPLOAD_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SPEED_DOWNLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SPEED_DOWNLOAD_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SPEED_UPLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SPEED_UPLOAD_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SSL_ENGINES.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_SSL_VERIFYRESULT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_STARTTRANSFER_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_STARTTRANSFER_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_TLS_SESSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_TLS_SSL_PTR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_TOTAL_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_TOTAL_TIME_T.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_MAXCONNECTS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_MAX_CONCURRENT_STREAMS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_PIPELINING.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_PIPELINING_SERVER_BL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_PIPELINING_SITE_BL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_PUSHDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_PUSHFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_SOCKETDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_SOCKETFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_TIMERDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLMOPT_TIMERFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ABSTRACT_UNIX_SOCKET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ACCEPT_ENCODING.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ADDRESS_SCOPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ALTSVC.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ALTSVC_CTRL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_APPEND.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_AUTOREFERER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_AWS_SIGV4.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_BUFFERSIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CAINFO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CAINFO_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CAPATH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CA_CACHE_TIMEOUT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CERTINFO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CHUNK_BGN_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CHUNK_DATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CHUNK_END_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CLOSESOCKETDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CLOSESOCKETFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONNECTTIMEOUT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONNECT_ONLY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONNECT_TO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_COOKIE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_COOKIEFILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_COOKIEJAR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_COOKIELIST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_COOKIESESSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_COPYPOSTFIELDS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CRLF.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CRLFILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CURLU.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_CUSTOMREQUEST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DEBUGDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DEBUGFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DEFAULT_PROTOCOL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DIRLISTONLY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DISALLOW_USERNAME_IN_URL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_CACHE_TIMEOUT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_INTERFACE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_LOCAL_IP4.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_LOCAL_IP6.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_SERVERS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_SHUFFLE_ADDRESSES.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_SSL_VERIFYHOST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_SSL_VERIFYPEER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_SSL_VERIFYSTATUS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_URL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_EGDSOCKET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ERRORBUFFER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_EXPECT_100_TIMEOUT_MS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FAILONERROR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FILETIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FNMATCH_DATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FNMATCH_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FOLLOWLOCATION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FORBID_REUSE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FRESH_CONNECT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTPPORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTPSSLAUTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_ACCOUNT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_ALTERNATIVE_TO_USER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_CREATE_MISSING_DIRS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_FILEMETHOD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_SKIP_PASV_IP.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_SSL_CCC.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_USE_EPRT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_USE_EPSV.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_FTP_USE_PRET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_GSSAPI_DELEGATION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HAPROXYPROTOCOL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HAPROXY_CLIENT_IP.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HEADER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HEADERDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HEADERFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HEADEROPT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HSTS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HSTSREADDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HSTSREADFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HSTSWRITEDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HSTSWRITEFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HSTS_CTRL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTP09_ALLOWED.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTP200ALIASES.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTPAUTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTPGET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTPHEADER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTPPOST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTPPROXYTUNNEL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTP_CONTENT_DECODING.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_HTTP_VERSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_IGNORE_CONTENT_LENGTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_INFILESIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_INFILESIZE_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_INTERFACE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_INTERLEAVEDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_INTERLEAVEFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_IOCTLDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_IOCTLFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_IPRESOLVE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ISSUERCERT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ISSUERCERT_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_KEEP_SENDING_ON_ERROR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_KEYPASSWD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_KRBLEVEL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_LOCALPORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_LOCALPORTRANGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_LOGIN_OPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_LOW_SPEED_LIMIT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_LOW_SPEED_TIME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAIL_AUTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAIL_FROM.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAIL_RCPT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAIL_RCPT_ALLOWFAILS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAXAGE_CONN.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAXCONNECTS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAXFILESIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAXFILESIZE_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAXLIFETIME_CONN.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAXREDIRS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MIMEPOST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_MIME_OPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NETRC.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NETRC_FILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NEW_FILE_PERMS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NOBODY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NOPROGRESS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NOPROXY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_NOSIGNAL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_OPENSOCKETDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_OPENSOCKETFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PASSWORD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PATH_AS_IS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PINNEDPUBLICKEY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PIPEWAIT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_POST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_POSTFIELDS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_POSTFIELDSIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_POSTFIELDSIZE_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_POSTQUOTE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_POSTREDIR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PREQUOTE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PREREQDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PREREQFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PRE_PROXY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PRIVATE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROGRESSDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROGRESSFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROTOCOLS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROTOCOLS_STR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYAUTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYHEADER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYPASSWORD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYPORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYTYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYUSERNAME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXYUSERPWD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_CAINFO.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_CAINFO_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_CAPATH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_CRLFILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_ISSUERCERT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_ISSUERCERT_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_KEYPASSWD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_PINNEDPUBLICKEY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SERVICE_NAME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLCERT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLCERTTYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLCERT_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLKEY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLKEYTYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLKEY_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSLVERSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSL_CIPHER_LIST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSL_OPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSL_VERIFYHOST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_SSL_VERIFYPEER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_TLS13_CIPHERS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_TLSAUTH_PASSWORD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_TLSAUTH_TYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_TLSAUTH_USERNAME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PROXY_TRANSFER_MODE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_PUT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_QUOTE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RANDOM_FILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RANGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_READDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_READFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_REDIR_PROTOCOLS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_REDIR_PROTOCOLS_STR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_REFERER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_REQUEST_TARGET.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RESOLVE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RESOLVER_START_DATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RESOLVER_START_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RESUME_FROM.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RESUME_FROM_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RTSP_CLIENT_CSEQ.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RTSP_REQUEST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RTSP_SERVER_CSEQ.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RTSP_SESSION_ID.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RTSP_STREAM_URI.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_RTSP_TRANSPORT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SASL_AUTHZID.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SASL_IR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SEEKDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SEEKFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SERVER_RESPONSE_TIMEOUT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SERVICE_NAME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SHARE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SOCKOPTDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SOCKOPTFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SOCKS5_AUTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_NEC.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_SERVICE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_AUTH_TYPES.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_COMPRESSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_KEYDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_KEYFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_KNOWNHOSTS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_PRIVATE_KEYFILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSH_PUBLIC_KEYFILE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLCERT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLCERTTYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLCERT_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLENGINE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLENGINE_DEFAULT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLKEY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLKEYTYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLKEY_BLOB.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSLVERSION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_CIPHER_LIST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_CTX_DATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_CTX_FUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_EC_CURVES.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_ENABLE_ALPN.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_ENABLE_NPN.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_FALSESTART.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_OPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_SESSIONID_CACHE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_VERIFYHOST.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_VERIFYPEER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SSL_VERIFYSTATUS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_STDERR.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_STREAM_DEPENDS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_STREAM_DEPENDS_E.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_STREAM_WEIGHT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_SUPPRESS_CONNECT_HEADERS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TCP_FASTOPEN.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TCP_KEEPALIVE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TCP_KEEPIDLE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TCP_KEEPINTVL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TCP_NODELAY.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TELNETOPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TFTP_BLKSIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TFTP_NO_OPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TIMECONDITION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TIMEOUT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TIMEOUT_MS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TIMEVALUE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TIMEVALUE_LARGE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TLS13_CIPHERS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TLSAUTH_PASSWORD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TLSAUTH_TYPE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TLSAUTH_USERNAME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TRAILERDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TRAILERFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TRANSFERTEXT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_TRANSFER_ENCODING.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_UNIX_SOCKET_PATH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_UNRESTRICTED_AUTH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_UPKEEP_INTERVAL_MS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_UPLOAD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_UPLOAD_BUFFERSIZE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_URL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_USERAGENT.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_USERNAME.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_USERPWD.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_USE_SSL.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_VERBOSE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_WILDCARDMATCH.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_WRITEDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_WRITEFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_WS_OPTIONS.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_XFERINFODATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_XFERINFOFUNCTION.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_XOAUTH2_BEARER.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLSHOPT_LOCKFUNC.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLSHOPT_SHARE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLSHOPT_UNLOCKFUNC.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLSHOPT_UNSHARE.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/CURLSHOPT_USERDATA.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_cleanup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_duphandle.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_escape.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_getinfo.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_header.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_init.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_nextheader.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_option_by_id.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_option_by_name.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_option_next.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_pause.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_perform.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_recv.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_reset.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_send.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_setopt.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_strerror.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_unescape.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_easy_upkeep.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_escape.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_formadd.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_formfree.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_formget.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_free.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_getdate.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_getenv.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_global_cleanup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_global_init.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_global_init_mem.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_global_sslset.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_addpart.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_data.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_data_cb.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_encoder.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_filedata.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_filename.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_free.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_headers.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_init.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_name.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_subparts.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mime_type.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_mprintf.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_add_handle.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_assign.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_cleanup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_fdset.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_info_read.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_init.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_perform.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_poll.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_remove_handle.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_setopt.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_socket.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_socket_action.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_socket_all.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_strerror.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_timeout.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_wait.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_multi_wakeup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_pushheader_byname.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_pushheader_bynum.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_share_cleanup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_share_init.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_share_setopt.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_share_strerror.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_slist_append.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_slist_free_all.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_strequal.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_strnequal.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_unescape.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_url.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_url_cleanup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_url_dup.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_url_get.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_url_set.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_url_strerror.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_version.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_version_info.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_ws_meta.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_ws_recv.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/curl_ws_send.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-easy.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-env.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-errors.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-multi.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-security.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-share.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-symbols.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-thread.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-tutorial.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-url.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl-ws.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/libcurl.3.gz
|
@ -1 +0,0 @@
|
||||
556576a795bdd2c7d10de6886480065f curl-8.2.1.tar.xz
|
@ -1,21 +0,0 @@
|
||||
# Pkgfile for curl
|
||||
|
||||
name=curl
|
||||
version=8.2.1
|
||||
release=1
|
||||
source=(https://$name.se/download/$name-$version.tar.xz)
|
||||
build_opt="
|
||||
--with-openssl
|
||||
--enable-threaded-resolver
|
||||
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
|
||||
--without-brotli
|
||||
--without-libidn2
|
||||
--without-libpsl
|
||||
--without-librtmp
|
||||
--without-nghttp2"
|
||||
|
||||
bootstrap_opt="
|
||||
--disable-static \
|
||||
--enable-threaded-resolver \
|
||||
--with-openssl \
|
||||
--with-ca-bundle=$TOOLS/etc/ssl/cert.pem"
|
@ -1 +0,0 @@
|
||||
57222b768b84003ea4b801e5d5e0e52b dash-0.5.12.tar.gz
|
@ -1,11 +0,0 @@
|
||||
# Pkgfile for dash
|
||||
|
||||
name=dash
|
||||
version=0.5.12
|
||||
release=1
|
||||
source=(http://gondor.apana.org.au/~herbert/$name/files/$name-$version.tar.gz)
|
||||
build_opt="--bindir=/bin"
|
||||
|
||||
post_build() {
|
||||
ln -sv dash $PKG/bin/sh
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/cmp
|
||||
-rwxr-xr-x root/root usr/bin/diff
|
||||
-rwxr-xr-x root/root usr/bin/diff3
|
||||
-rwxr-xr-x root/root usr/bin/sdiff
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/diffutils.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/he/
|
||||
drwxr-xr-x root/root usr/share/locale/he/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/he/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ka/
|
||||
drwxr-xr-x root/root usr/share/locale/ka/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ka/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lv/
|
||||
drwxr-xr-x root/root usr/share/locale/lv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lv/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/diffutils.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/cmp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/diff.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/diff3.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/sdiff.1.gz
|
@ -1 +0,0 @@
|
||||
2745c50f6f4e395e7b7d52f902d075bf diffutils-3.10.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for diffutils
|
||||
|
||||
name=diffutils
|
||||
version=3.10
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1,199 +0,0 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
-rw-r--r-- root/root etc/e2scrub.conf
|
||||
-rw-r--r-- root/root etc/mke2fs.conf
|
||||
drwxr-xr-x root/root lib/
|
||||
drwxr-xr-x root/root lib/udev/
|
||||
drwxr-xr-x root/root lib/udev/rules.d/
|
||||
-rw-r--r-- root/root lib/udev/rules.d/96-e2scrub.rules
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/chattr
|
||||
-rwxr-xr-x root/root usr/bin/compile_et
|
||||
-rwxr-xr-x root/root usr/bin/lsattr
|
||||
-rwxr-xr-x root/root usr/bin/mk_cmds
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/com_err.h
|
||||
drwxr-xr-x root/root usr/include/e2p/
|
||||
-rw-r--r-- root/root usr/include/e2p/e2p.h
|
||||
drwxr-xr-x root/root usr/include/et/
|
||||
-rw-r--r-- root/root usr/include/et/com_err.h
|
||||
drwxr-xr-x root/root usr/include/ext2fs/
|
||||
-rw-r--r-- root/root usr/include/ext2fs/bitops.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext2_err.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext2_ext_attr.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext2_fs.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext2_io.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext2_types.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext2fs.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/ext3_extents.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/hashmap.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/qcow2.h
|
||||
-rw-r--r-- root/root usr/include/ext2fs/tdb.h
|
||||
drwxr-xr-x root/root usr/include/ss/
|
||||
-rw-r--r-- root/root usr/include/ss/ss.h
|
||||
-rw-r--r-- root/root usr/include/ss/ss_err.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rwxr-xr-x root/root usr/lib/e2initrd_helper
|
||||
-r--r--r-- root/root usr/lib/libcom_err.a
|
||||
lrwxrwxrwx root/root usr/lib/libcom_err.so -> libcom_err.so.2
|
||||
lrwxrwxrwx root/root usr/lib/libcom_err.so.2 -> libcom_err.so.2.1
|
||||
-rwxr-xr-x root/root usr/lib/libcom_err.so.2.1
|
||||
-r--r--r-- root/root usr/lib/libe2p.a
|
||||
lrwxrwxrwx root/root usr/lib/libe2p.so -> libe2p.so.2
|
||||
lrwxrwxrwx root/root usr/lib/libe2p.so.2 -> libe2p.so.2.3
|
||||
-rwxr-xr-x root/root usr/lib/libe2p.so.2.3
|
||||
-r--r--r-- root/root usr/lib/libext2fs.a
|
||||
lrwxrwxrwx root/root usr/lib/libext2fs.so -> libext2fs.so.2
|
||||
lrwxrwxrwx root/root usr/lib/libext2fs.so.2 -> libext2fs.so.2.4
|
||||
-rwxr-xr-x root/root usr/lib/libext2fs.so.2.4
|
||||
-r--r--r-- root/root usr/lib/libss.a
|
||||
lrwxrwxrwx root/root usr/lib/libss.so -> libss.so.2
|
||||
lrwxrwxrwx root/root usr/lib/libss.so.2 -> libss.so.2.0
|
||||
-rwxr-xr-x root/root usr/lib/libss.so.2.0
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/com_err.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/e2p.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/ext2fs.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/ss.pc
|
||||
drwxr-xr-x root/root usr/sbin/
|
||||
-rwxr-xr-x root/root usr/sbin/badblocks
|
||||
-rwxr-xr-x root/root usr/sbin/debugfs
|
||||
-rwxr-xr-x root/root usr/sbin/dumpe2fs
|
||||
-rwxr-xr-x root/root usr/sbin/e2freefrag
|
||||
-rwxr-xr-x root/root usr/sbin/e2fsck
|
||||
-rwxr-xr-x root/root usr/sbin/e2image
|
||||
-rwxr-xr-x root/root usr/sbin/e2label
|
||||
-rwxr-xr-x root/root usr/sbin/e2mmpstatus
|
||||
-rwxr-xr-x root/root usr/sbin/e2scrub
|
||||
-rwxr-xr-x root/root usr/sbin/e2scrub_all
|
||||
-rwxr-xr-x root/root usr/sbin/e2undo
|
||||
-rwxr-xr-x root/root usr/sbin/e4crypt
|
||||
-rwxr-xr-x root/root usr/sbin/e4defrag
|
||||
-rwxr-xr-x root/root usr/sbin/filefrag
|
||||
-rwxr-xr-x root/root usr/sbin/fsck.ext2
|
||||
-rwxr-xr-x root/root usr/sbin/fsck.ext3
|
||||
-rwxr-xr-x root/root usr/sbin/fsck.ext4
|
||||
-rwxr-xr-x root/root usr/sbin/logsave
|
||||
-rwxr-xr-x root/root usr/sbin/mke2fs
|
||||
-rwxr-xr-x root/root usr/sbin/mkfs.ext2
|
||||
-rwxr-xr-x root/root usr/sbin/mkfs.ext3
|
||||
-rwxr-xr-x root/root usr/sbin/mkfs.ext4
|
||||
-rwxr-xr-x root/root usr/sbin/mklost+found
|
||||
-rwxr-xr-x root/root usr/sbin/resize2fs
|
||||
-rwxr-xr-x root/root usr/sbin/tune2fs
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/et/
|
||||
-rw-r--r-- root/root usr/share/et/et_c.awk
|
||||
-rw-r--r-- root/root usr/share/et/et_h.awk
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/libext2fs.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fur/
|
||||
drwxr-xr-x root/root usr/share/locale/fur/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fur/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/e2fsprogs.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/chattr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/compile_et.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/lsattr.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mk_cmds.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/com_err.3.gz
|
||||
drwxr-xr-x root/root usr/share/man/man5/
|
||||
-rw-r--r-- root/root usr/share/man/man5/e2fsck.conf.5.gz
|
||||
-rw-r--r-- root/root usr/share/man/man5/ext2.5
|
||||
-rw-r--r-- root/root usr/share/man/man5/ext3.5
|
||||
-rw-r--r-- root/root usr/share/man/man5/ext4.5
|
||||
-rw-r--r-- root/root usr/share/man/man5/mke2fs.conf.5.gz
|
||||
drwxr-xr-x root/root usr/share/man/man8/
|
||||
-rw-r--r-- root/root usr/share/man/man8/badblocks.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/debugfs.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/dumpe2fs.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2freefrag.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2fsck.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2image.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2label.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2mmpstatus.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2scrub.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2scrub_all.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e2undo.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e4crypt.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/e4defrag.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/filefrag.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/fsck.ext2.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/fsck.ext3.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/fsck.ext4.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/logsave.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/mke2fs.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/mkfs.ext2.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/mkfs.ext3.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/mkfs.ext4.8
|
||||
-rw-r--r-- root/root usr/share/man/man8/mklost+found.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/resize2fs.8.gz
|
||||
-rw-r--r-- root/root usr/share/man/man8/tune2fs.8.gz
|
||||
drwxr-xr-x root/root usr/share/ss/
|
||||
-rw-r--r-- root/root usr/share/ss/ct_c.awk
|
||||
-rw-r--r-- root/root usr/share/ss/ct_c.sed
|
@ -1 +0,0 @@
|
||||
6b4f18a33873623041857b4963641ee9 e2fsprogs-1.47.0.tar.gz
|
@ -1,14 +0,0 @@
|
||||
# Pkgfile for e2fsprogs
|
||||
|
||||
name=e2fsprogs
|
||||
version=1.47.0
|
||||
release=1
|
||||
source=(https://downloads.sourceforge.net/project/$name/$name/v$version/$name-$version.tar.gz)
|
||||
build_opt="
|
||||
--enable-elf-shlibs
|
||||
--disable-libblkid
|
||||
--disable-libuuid
|
||||
--disable-uuidd
|
||||
--disable-fsck
|
||||
--disable-fuse2fs
|
||||
"
|
@ -1,105 +0,0 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
drwxr-xr-x root/root etc/debuginfod/
|
||||
drwxr-xr-x root/root etc/profile.d/
|
||||
-rw-r--r-- root/root etc/profile.d/debuginfod.csh
|
||||
-rw-r--r-- root/root etc/profile.d/debuginfod.sh
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/debuginfod-find
|
||||
-rwxr-xr-x root/root usr/bin/eu-addr2line
|
||||
-rwxr-xr-x root/root usr/bin/eu-ar
|
||||
-rwxr-xr-x root/root usr/bin/eu-elfclassify
|
||||
-rwxr-xr-x root/root usr/bin/eu-elfcmp
|
||||
-rwxr-xr-x root/root usr/bin/eu-elfcompress
|
||||
-rwxr-xr-x root/root usr/bin/eu-elflint
|
||||
-rwxr-xr-x root/root usr/bin/eu-findtextrel
|
||||
-rwxr-xr-x root/root usr/bin/eu-make-debug-archive
|
||||
-rwxr-xr-x root/root usr/bin/eu-nm
|
||||
-rwxr-xr-x root/root usr/bin/eu-objdump
|
||||
-rwxr-xr-x root/root usr/bin/eu-ranlib
|
||||
-rwxr-xr-x root/root usr/bin/eu-readelf
|
||||
-rwxr-xr-x root/root usr/bin/eu-size
|
||||
-rwxr-xr-x root/root usr/bin/eu-stack
|
||||
-rwxr-xr-x root/root usr/bin/eu-strings
|
||||
-rwxr-xr-x root/root usr/bin/eu-strip
|
||||
-rwxr-xr-x root/root usr/bin/eu-unstrip
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/dwarf.h
|
||||
drwxr-xr-x root/root usr/include/elfutils/
|
||||
-rw-r--r-- root/root usr/include/elfutils/debuginfod.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/elf-knowledge.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/known-dwarf.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/libasm.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/libdw.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/libdwelf.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/libdwfl.h
|
||||
-rw-r--r-- root/root usr/include/elfutils/version.h
|
||||
-rw-r--r-- root/root usr/include/gelf.h
|
||||
-rw-r--r-- root/root usr/include/libelf.h
|
||||
-rw-r--r-- root/root usr/include/nlist.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rwxr-xr-x root/root usr/lib/libasm-0.189.so
|
||||
-rw-r--r-- root/root usr/lib/libasm.a
|
||||
lrwxrwxrwx root/root usr/lib/libasm.so -> libasm.so.1
|
||||
lrwxrwxrwx root/root usr/lib/libasm.so.1 -> libasm-0.189.so
|
||||
-rwxr-xr-x root/root usr/lib/libdebuginfod-0.189.so
|
||||
lrwxrwxrwx root/root usr/lib/libdebuginfod.so -> libdebuginfod-0.189.so
|
||||
lrwxrwxrwx root/root usr/lib/libdebuginfod.so.1 -> libdebuginfod-0.189.so
|
||||
-rwxr-xr-x root/root usr/lib/libdw-0.189.so
|
||||
-rw-r--r-- root/root usr/lib/libdw.a
|
||||
lrwxrwxrwx root/root usr/lib/libdw.so -> libdw.so.1
|
||||
lrwxrwxrwx root/root usr/lib/libdw.so.1 -> libdw-0.189.so
|
||||
-rwxr-xr-x root/root usr/lib/libelf-0.189.so
|
||||
-rw-r--r-- root/root usr/lib/libelf.a
|
||||
lrwxrwxrwx root/root usr/lib/libelf.so -> libelf.so.1
|
||||
lrwxrwxrwx root/root usr/lib/libelf.so.1 -> libelf-0.189.so
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libdebuginfod.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libdw.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libelf.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@boldquot/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@quot/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/elfutils.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/debuginfod-find.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/eu-elfclassify.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/eu-readelf.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_add_http_header.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_begin.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_end.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_find_debuginfo.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_find_executable.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_find_section.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_find_source.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_get_url.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_get_user_data.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_set_progressfn.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/debuginfod_set_user_data.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/elf_begin.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/elf_clone.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/elf_getdata.3.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/elf_update.3.gz
|
||||
drwxr-xr-x root/root usr/share/man/man7/
|
||||
-rw-r--r-- root/root usr/share/man/man7/debuginfod-client-config.7.gz
|
@ -1 +0,0 @@
|
||||
5cfaa711a90cb670406cd495aeaa6030 elfutils-0.189.tar.bz2
|
@ -1,7 +0,0 @@
|
||||
# Pkgfile for elfutils
|
||||
|
||||
name=elfutils
|
||||
version=0.189
|
||||
release=1
|
||||
source=(https://sourceware.org/ftp/$name/$version/$name-$version.tar.bz2)
|
||||
build_opt="--disable-debuginfod --enable-libdebuginfod=dummy"
|
@ -1,89 +0,0 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
drwxr-xr-x root/root etc/udev/
|
||||
drwxr-xr-x root/root etc/udev/hwdb.d/
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-OUI.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-acpi-vendor.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-bluetooth-vendor-product.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-dmi-id.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-net-ifname.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-pci-classes.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-pci-vendor-model.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-sdio-classes.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-sdio-vendor-model.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-usb-classes.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-usb-vendor-model.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/20-vmbus-class.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-autosuspend-fingerprint-reader.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-autosuspend.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-evdev.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-input-id.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-keyboard.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-seat.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/60-sensor.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-analyzers.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-av-production.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-cameras.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-joystick.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-mouse.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-pda.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-pointingstick.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/70-touchpad.hwdb
|
||||
-rw-r--r-- root/root etc/udev/hwdb.d/80-ieee1394-unit-function.hwdb
|
||||
drwxr-xr-x root/root etc/udev/rules.d/
|
||||
-rw-r--r-- root/root etc/udev/udev.conf
|
||||
drwxr-xr-x root/root lib/
|
||||
lrwxrwxrwx root/root lib/libudev.so.1 -> libudev.so.1.6.3
|
||||
-rwxr-xr-x root/root lib/libudev.so.1.6.3
|
||||
drwxr-xr-x root/root lib/udev/
|
||||
-rwxr-xr-x root/root lib/udev/ata_id
|
||||
-rwxr-xr-x root/root lib/udev/cdrom_id
|
||||
-rwxr-xr-x root/root lib/udev/collect
|
||||
-rwxr-xr-x root/root lib/udev/dmi_memory_id
|
||||
-rwxr-xr-x root/root lib/udev/fido_id
|
||||
-rwxr-xr-x root/root lib/udev/mtd_probe
|
||||
drwxr-xr-x root/root lib/udev/rules.d/
|
||||
-rw-r--r-- root/root lib/udev/rules.d/50-udev-default.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-autosuspend.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-block.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-cdrom_id.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-drm.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-evdev.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-fido-id.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-input-id.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-persistent-alsa.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-persistent-input.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-persistent-storage-tape.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-persistent-storage.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-persistent-v4l.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-sensor.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/60-serial.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/64-btrfs.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/70-camera.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/70-joystick.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/70-memory.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/70-mouse.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/70-touchpad.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/75-net-description.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/75-probe_mtd.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/78-sound-card.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/80-drivers.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/80-net-name-slot.rules
|
||||
-rw-r--r-- root/root lib/udev/rules.d/81-net-dhcp.rules
|
||||
-rwxr-xr-x root/root lib/udev/scsi_id
|
||||
-rwxr-xr-x root/root lib/udev/v4l_id
|
||||
drwxr-xr-x root/root sbin/
|
||||
-rwxr-xr-x root/root sbin/udevadm
|
||||
-rwxr-xr-x root/root sbin/udevd
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/libudev.h
|
||||
-rw-r--r-- root/root usr/include/udev.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libudev.a
|
||||
-rwxr-xr-x root/root usr/lib/libudev.la
|
||||
lrwxrwxrwx root/root usr/lib/libudev.so -> ../../lib/libudev.so.1.6.3
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libudev.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/pkgconfig/
|
||||
-rw-r--r-- root/root usr/share/pkgconfig/udev.pc
|
@ -1 +0,0 @@
|
||||
6f1559ca7c27013ff68816e2732498a3 eudev-3.2.12.tar.gz
|
@ -1,11 +0,0 @@
|
||||
# Pkgfile for eudev
|
||||
|
||||
name=eudev
|
||||
version=3.2.12
|
||||
release=1
|
||||
source=(https://github.com/$name-project/$name/releases/download/v$version/$name-$version.tar.gz)
|
||||
build_opt="--sbindir=/sbin
|
||||
--bindir=/sbin
|
||||
--with-rootprefix=
|
||||
--with-rootlibdir=/lib
|
||||
--libexecdir=/lib"
|
@ -1,26 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/xmlwf
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/expat.h
|
||||
-rw-r--r-- root/root usr/include/expat_config.h
|
||||
-rw-r--r-- root/root usr/include/expat_external.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/cmake/
|
||||
drwxr-xr-x root/root usr/lib/cmake/expat-2.5.0/
|
||||
-rw-r--r-- root/root usr/lib/cmake/expat-2.5.0/expat-config-version.cmake
|
||||
-rw-r--r-- root/root usr/lib/cmake/expat-2.5.0/expat-config.cmake
|
||||
-rw-r--r-- root/root usr/lib/cmake/expat-2.5.0/expat-noconfig.cmake
|
||||
-rw-r--r-- root/root usr/lib/cmake/expat-2.5.0/expat.cmake
|
||||
-rw-r--r-- root/root usr/lib/libexpat.a
|
||||
-rwxr-xr-x root/root usr/lib/libexpat.la
|
||||
lrwxrwxrwx root/root usr/lib/libexpat.so -> libexpat.so.1.8.10
|
||||
lrwxrwxrwx root/root usr/lib/libexpat.so.1 -> libexpat.so.1.8.10
|
||||
-rwxr-xr-x root/root usr/lib/libexpat.so.1.8.10
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/expat.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/expat/
|
||||
-rw-r--r-- root/root usr/share/doc/expat/AUTHORS
|
||||
-rw-r--r-- root/root usr/share/doc/expat/changelog
|
@ -1 +0,0 @@
|
||||
ac6677b6d1b95d209ab697ce8b688704 expat-2.5.0.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for expat
|
||||
|
||||
name=expat
|
||||
version=2.5.0
|
||||
release=1
|
||||
source=(https://prdownloads.sourceforge.net/$name/$name-$version.tar.xz)
|
@ -1,23 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/file
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/magic.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rwxr-xr-x root/root usr/lib/libmagic.la
|
||||
lrwxrwxrwx root/root usr/lib/libmagic.so -> libmagic.so.1.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libmagic.so.1 -> libmagic.so.1.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libmagic.so.1.0.0
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/libmagic.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/file.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/libmagic.3.gz
|
||||
drwxr-xr-x root/root usr/share/man/man4/
|
||||
-rw-r--r-- root/root usr/share/man/man4/magic.4.gz
|
||||
drwxr-xr-x root/root usr/share/man/man5/
|
||||
drwxr-xr-x root/root usr/share/misc/
|
||||
-rw-r--r-- root/root usr/share/misc/magic.mgc
|
@ -1 +0,0 @@
|
||||
26b2a96d4e3a8938827a1e572afd527a file-5.45.tar.gz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for file
|
||||
|
||||
name=file
|
||||
version=5.45
|
||||
release=1
|
||||
source=(https://astron.com/pub/$name/$name-$version.tar.gz)
|
@ -1,142 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/find
|
||||
-rwxr-xr-x root/root usr/bin/locate
|
||||
-rwxr-xr-x root/root usr/bin/updatedb
|
||||
-rwxr-xr-x root/root usr/bin/xargs
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rwxr-xr-x root/root usr/lib/frcode
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/find-maint.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/find.info-1.gz
|
||||
-rw-r--r-- root/root usr/share/info/find.info-2.gz
|
||||
-rw-r--r-- root/root usr/share/info/find.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/be/
|
||||
drwxr-xr-x root/root usr/share/locale/be/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/be/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/et/
|
||||
drwxr-xr-x root/root usr/share/locale/et/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lg/
|
||||
drwxr-xr-x root/root usr/share/locale/lg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lg/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lt/
|
||||
drwxr-xr-x root/root usr/share/locale/lt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lt/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sk/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sl/
|
||||
drwxr-xr-x root/root usr/share/locale/sl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sl/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/findutils.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/find.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/locate.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/updatedb.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/xargs.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man5/
|
||||
-rw-r--r-- root/root usr/share/man/man5/locatedb.5.gz
|
||||
drwxr-xr-x root/root var/
|
@ -1 +0,0 @@
|
||||
4a4a547e888a944b2f3af31d789a1137 findutils-4.9.0.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for findutils
|
||||
|
||||
name=findutils
|
||||
version=4.9.0
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1,99 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/flex
|
||||
lrwxrwxrwx root/root usr/bin/flex++ -> flex
|
||||
lrwxrwxrwx root/root usr/bin/lex -> flex
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/FlexLexer.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libfl.a
|
||||
-rwxr-xr-x root/root usr/lib/libfl.la
|
||||
lrwxrwxrwx root/root usr/lib/libfl.so -> libfl.so.2.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libfl.so.2 -> libfl.so.2.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libfl.so.2.0.0
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/flex/
|
||||
-rw-r--r-- root/root usr/share/doc/flex/AUTHORS
|
||||
-rw-r--r-- root/root usr/share/doc/flex/COPYING
|
||||
-rw-r--r-- root/root usr/share/doc/flex/NEWS
|
||||
-rw-r--r-- root/root usr/share/doc/flex/ONEWS
|
||||
-rw-r--r-- root/root usr/share/doc/flex/README.md
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/flex.info-1.gz
|
||||
-rw-r--r-- root/root usr/share/info/flex.info-2.gz
|
||||
-rw-r--r-- root/root usr/share/info/flex.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@boldquot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@boldquot/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/
|
||||
drwxr-xr-x root/root usr/share/locale/en@quot/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/en@quot/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/flex.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/flex.1.gz
|
@ -1 +0,0 @@
|
||||
2882e3179748cc9f9c23ec593d6adc8d flex-2.6.4.tar.gz
|
@ -1,10 +0,0 @@
|
||||
# Pkgfile for flex
|
||||
|
||||
name=flex
|
||||
version=2.6.4
|
||||
release=1
|
||||
source=(https://github.com/westes/$name/releases/download/v$version/$name-$version.tar.gz)
|
||||
|
||||
post_build() {
|
||||
ln -s flex $PKG/usr/bin/lex
|
||||
}
|
@ -1,153 +0,0 @@
|
||||
drwxr-xr-x root/root etc/
|
||||
drwxr-xr-x root/root etc/profile.d/
|
||||
-rw-r--r-- root/root etc/profile.d/gawk.csh
|
||||
-rw-r--r-- root/root etc/profile.d/gawk.sh
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
lrwxrwxrwx root/root usr/bin/awk -> gawk
|
||||
-rwxr-xr-x root/root usr/bin/gawk
|
||||
-rwxr-xr-x root/root usr/bin/gawk-5.2.2
|
||||
-rwxr-xr-x root/root usr/bin/gawkbug
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/gawkapi.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/awk/
|
||||
-rwxr-xr-x root/root usr/lib/awk/grcat
|
||||
-rwxr-xr-x root/root usr/lib/awk/pwcat
|
||||
drwxr-xr-x root/root usr/lib/gawk/
|
||||
-rwxr-xr-x root/root usr/lib/gawk/filefuncs.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/fnmatch.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/fork.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/inplace.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/intdiv.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/ordchr.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/readdir.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/readfile.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/revoutput.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/revtwoway.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/rwarray.so
|
||||
-rwxr-xr-x root/root usr/lib/gawk/time.so
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/awk/
|
||||
-rw-r--r-- root/root usr/share/awk/assert.awk
|
||||
-rw-r--r-- root/root usr/share/awk/bits2str.awk
|
||||
-rw-r--r-- root/root usr/share/awk/cliff_rand.awk
|
||||
-rw-r--r-- root/root usr/share/awk/ctime.awk
|
||||
-rw-r--r-- root/root usr/share/awk/ftrans.awk
|
||||
-rw-r--r-- root/root usr/share/awk/getopt.awk
|
||||
-rw-r--r-- root/root usr/share/awk/gettime.awk
|
||||
-rw-r--r-- root/root usr/share/awk/group.awk
|
||||
-rw-r--r-- root/root usr/share/awk/have_mpfr.awk
|
||||
-rw-r--r-- root/root usr/share/awk/inplace.awk
|
||||
-rw-r--r-- root/root usr/share/awk/intdiv0.awk
|
||||
-rw-r--r-- root/root usr/share/awk/isnumeric.awk
|
||||
-rw-r--r-- root/root usr/share/awk/join.awk
|
||||
-rw-r--r-- root/root usr/share/awk/libintl.awk
|
||||
-rw-r--r-- root/root usr/share/awk/noassign.awk
|
||||
-rw-r--r-- root/root usr/share/awk/ns_passwd.awk
|
||||
-rw-r--r-- root/root usr/share/awk/ord.awk
|
||||
-rw-r--r-- root/root usr/share/awk/passwd.awk
|
||||
-rw-r--r-- root/root usr/share/awk/processarray.awk
|
||||
-rw-r--r-- root/root usr/share/awk/quicksort.awk
|
||||
-rw-r--r-- root/root usr/share/awk/readable.awk
|
||||
-rw-r--r-- root/root usr/share/awk/readfile.awk
|
||||
-rw-r--r-- root/root usr/share/awk/rewind.awk
|
||||
-rw-r--r-- root/root usr/share/awk/round.awk
|
||||
-rw-r--r-- root/root usr/share/awk/shellquote.awk
|
||||
-rw-r--r-- root/root usr/share/awk/strtonum.awk
|
||||
-rw-r--r-- root/root usr/share/awk/walkarray.awk
|
||||
-rw-r--r-- root/root usr/share/awk/zerofile.awk
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/gawk.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_api-figure1.png.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_api-figure2.png.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_api-figure3.png.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_array-elements.png.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_general-program.png.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_process-flow.png.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawk_statist.jpg.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawkinet.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/gawkworkflow.info.gz
|
||||
-rw-r--r-- root/root usr/share/info/pm-gawk.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ms/
|
||||
drwxr-xr-x root/root usr/share/locale/ms/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ms/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/gawk.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/gawk.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gawkbug.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pm-gawk.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/filefuncs.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/fnmatch.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/fork.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/inplace.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/ordchr.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/readdir.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/readfile.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/revoutput.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/revtwoway.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/rwarray.3am.gz
|
||||
-rw-r--r-- root/root usr/share/man/man3/time.3am.gz
|
@ -1 +0,0 @@
|
||||
d63b4de2c722cbd9b8cc8e6f14d78a1e gawk-5.2.2.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for gawk
|
||||
|
||||
name=gawk
|
||||
version=5.2.2
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
1864
core/gcc/.footprint
1864
core/gcc/.footprint
File diff suppressed because it is too large
Load Diff
@ -1,3 +0,0 @@
|
||||
3d333df77302ed89e06a4a8539943b7d c89
|
||||
da96f545b863e57c6ab2598c1ea9a740 c99
|
||||
43e4de77f2218c83ca675257ea1af9ef gcc-13.1.0.tar.xz
|
177
core/gcc/Pkgfile
177
core/gcc/Pkgfile
@ -1,177 +0,0 @@
|
||||
# Pkgfile for gcc
|
||||
|
||||
name=gcc
|
||||
version=13.1.0
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/gcc/gcc-$version/gcc-$version.tar.xz
|
||||
c89
|
||||
c99)
|
||||
|
||||
bootstrap_build() {
|
||||
if [ "$tcpkg" = gcc-pass1 ]; then
|
||||
for file in gcc/config/linux.h gcc/config/i386/linux.h gcc/config/i386/linux64.h
|
||||
do
|
||||
cp -uv $file $file.orig
|
||||
sed -e "s@/lib\(64\)\?\(32\)\?/ld@$TOOLS&@g" \
|
||||
-e "s@/usr@$TOOLS@g" $file.orig > $file
|
||||
echo "#undef STANDARD_STARTFILE_PREFIX_1" >> $file
|
||||
echo "#undef STANDARD_STARTFILE_PREFIX_2" >> $file
|
||||
echo "#define STANDARD_STARTFILE_PREFIX_1 \"$TOOLS/lib/\"" >> $file
|
||||
echo "#define STANDARD_STARTFILE_PREFIX_2 \"\"" >> $file
|
||||
touch $file.orig
|
||||
done
|
||||
|
||||
sed -i -e 's@/lib/ld-linux.so.2@/lib32/ld-linux.so.2@g' gcc/config/i386/linux64.h
|
||||
sed -i -e '/MULTILIB_OSDIRNAMES/d' gcc/config/i386/t-linux64
|
||||
echo "MULTILIB_OSDIRNAMES = m64=../lib m32=../lib32 mx32=../libx32" >> gcc/config/i386/t-linux64
|
||||
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
../configure \
|
||||
--with-gmp=$TOOLS \
|
||||
--with-mpc=$TOOLS \
|
||||
--with-mpfr=$TOOLS \
|
||||
--target=$LFS_TGT \
|
||||
--prefix=$TOOLS \
|
||||
--with-glibc-version=2.11 \
|
||||
--with-sysroot=$LFS \
|
||||
--with-newlib \
|
||||
--without-headers \
|
||||
--with-local-prefix=$TOOLS \
|
||||
--with-native-system-header-dir=$TOOLS/include \
|
||||
--disable-nls \
|
||||
--disable-shared \
|
||||
--disable-decimal-float \
|
||||
--disable-threads \
|
||||
--disable-libatomic \
|
||||
--disable-libgomp \
|
||||
--disable-libmpx \
|
||||
--disable-libquadmath \
|
||||
--disable-libssp \
|
||||
--disable-libvtv \
|
||||
--disable-libstdcxx \
|
||||
--enable-languages=c,c++ \
|
||||
--with-multilib-list=m32,m64
|
||||
make
|
||||
make install
|
||||
elif [ "$tcpkg" = gcc-pass2 ]; then
|
||||
mkdir -v build32
|
||||
cd build32
|
||||
|
||||
../libstdc++-v3/configure \
|
||||
--host=i686-lfs-linux-gnu \
|
||||
--prefix=$TOOLS \
|
||||
--libdir=$TOOLS/lib32 \
|
||||
--disable-multilib \
|
||||
--disable-nls \
|
||||
--disable-libstdcxx-threads \
|
||||
--disable-libstdcxx-pch \
|
||||
--with-gxx-include-dir=$TOOLS/$LFS_TGT/include/c++/$version \
|
||||
CC="$LFS_TGT-gcc -m32" \
|
||||
CXX="$LFS_TGT-g++ -m32"
|
||||
make
|
||||
make install
|
||||
cd -
|
||||
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
../libstdc++-v3/configure \
|
||||
--host=$LFS_TGT \
|
||||
--prefix=$TOOLS \
|
||||
--disable-multilib \
|
||||
--disable-nls \
|
||||
--disable-libstdcxx-threads \
|
||||
--disable-libstdcxx-pch \
|
||||
--with-gxx-include-dir=$TOOLS/$LFS_TGT/include/c++/$version
|
||||
make
|
||||
make install
|
||||
elif [ "$tcpkg" = gcc-pass3 ]; then
|
||||
cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
|
||||
`dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include-fixed/limits.h
|
||||
|
||||
for file in gcc/config/linux.h gcc/config/i386/linux.h gcc/config/i386/linux64.h
|
||||
do
|
||||
cp -uv $file $file.orig
|
||||
sed -e "s@/lib\(64\)\?\(32\)\?/ld@$TOOLS&@g" \
|
||||
-e "s@/usr@$TOOLS@g" $file.orig > $file
|
||||
echo "#undef STANDARD_STARTFILE_PREFIX_1" >> $file
|
||||
echo "#undef STANDARD_STARTFILE_PREFIX_2" >> $file
|
||||
echo "#define STANDARD_STARTFILE_PREFIX_1 \"$TOOLS/lib/\"" >> $file
|
||||
echo "#define STANDARD_STARTFILE_PREFIX_2 \"\"" >> $file
|
||||
touch $file.orig
|
||||
done
|
||||
|
||||
sed -i -e 's@/lib/ld-linux.so.2@/lib32/ld-linux.so.2@g' gcc/config/i386/linux64.h
|
||||
sed -i -e '/MULTILIB_OSDIRNAMES/d' gcc/config/i386/t-linux64
|
||||
echo "MULTILIB_OSDIRNAMES = m64=../lib m32=../lib32 mx32=../libx32" >> gcc/config/i386/t-linux64
|
||||
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
CC=$LFS_TGT-gcc \
|
||||
CXX=$LFS_TGT-g++ \
|
||||
AR=$LFS_TGT-ar \
|
||||
RANLIB=$LFS_TGT-ranlib \
|
||||
../configure \
|
||||
--with-gmp=$TOOLS \
|
||||
--with-mpc=$TOOLS \
|
||||
--with-mpfr=$TOOLS \
|
||||
--prefix=$TOOLS \
|
||||
--with-local-prefix=$TOOLS \
|
||||
--with-native-system-header-dir=$TOOLS/include \
|
||||
--enable-languages=c,c++ \
|
||||
--disable-libstdcxx-pch \
|
||||
--disable-bootstrap \
|
||||
--disable-libgomp \
|
||||
--with-multilib-list=m32,m64
|
||||
make
|
||||
make install
|
||||
ln -sv gcc $TOOLS/bin/cc
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_build() {
|
||||
# /lib is 64bit libraries directory
|
||||
sed -e '/m64=/s/lib64/lib/' \
|
||||
-i.orig gcc/config/i386/t-linux64
|
||||
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
SED=sed \
|
||||
../configure \
|
||||
--prefix=/usr \
|
||||
--libexecdir=/usr/lib \
|
||||
--enable-languages=c,c++,objc,obj-c++,lto \
|
||||
--enable-lto \
|
||||
--disable-bootstrap \
|
||||
--disable-libmpx \
|
||||
--with-system-zlib \
|
||||
--with-pkgversion="Linux From Scratch" \
|
||||
--disable-fixincludes \
|
||||
--enable-threads=posix \
|
||||
--enable-__cxa_atexit \
|
||||
--enable-default-pie \
|
||||
--enable-default-ssp \
|
||||
--enable-multilib
|
||||
make
|
||||
make DESTDIR=$PKG -j1 install
|
||||
|
||||
mkdir $PKG/lib
|
||||
ln -sv ../usr/bin/cpp $PKG/lib/cpp
|
||||
ln -sv gcc $PKG/usr/bin/cc
|
||||
|
||||
install -v -dm755 $PKG/usr/lib/bfd-plugins
|
||||
ln -sfv ../../lib/gcc/$(gcc -dumpmachine)/$version/liblto_plugin.so \
|
||||
$PKG/usr/lib/bfd-plugins/
|
||||
|
||||
mkdir -pv $PKG/usr/share/gdb/auto-load/usr/lib
|
||||
mv -v $PKG/usr/lib/*gdb.py $PKG/usr/share/gdb/auto-load/usr/lib
|
||||
|
||||
install -Dm755 $SRC/c89 $PKG/usr/bin/c89
|
||||
install -Dm755 $SRC/c99 $PKG/usr/bin/c99
|
||||
|
||||
rm -r $PKG/usr/share/$name-$version
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/gdbm_dump
|
||||
-rwxr-xr-x root/root usr/bin/gdbm_load
|
||||
-rwxr-xr-x root/root usr/bin/gdbmtool
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/dbm.h
|
||||
-rw-r--r-- root/root usr/include/gdbm.h
|
||||
-rw-r--r-- root/root usr/include/ndbm.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libgdbm.a
|
||||
-rwxr-xr-x root/root usr/lib/libgdbm.la
|
||||
lrwxrwxrwx root/root usr/lib/libgdbm.so -> libgdbm.so.6.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libgdbm.so.6 -> libgdbm.so.6.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libgdbm.so.6.0.0
|
||||
-rw-r--r-- root/root usr/lib/libgdbm_compat.a
|
||||
-rwxr-xr-x root/root usr/lib/libgdbm_compat.la
|
||||
lrwxrwxrwx root/root usr/lib/libgdbm_compat.so -> libgdbm_compat.so.4.0.0
|
||||
lrwxrwxrwx root/root usr/lib/libgdbm_compat.so.4 -> libgdbm_compat.so.4.0.0
|
||||
-rwxr-xr-x root/root usr/lib/libgdbm_compat.so.4.0.0
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/gdbm.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/gdbm.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/gdbm_dump.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gdbm_load.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gdbmtool.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man3/
|
||||
-rw-r--r-- root/root usr/share/man/man3/gdbm.3.gz
|
@ -1 +0,0 @@
|
||||
8551961e36bf8c70b7500d255d3658ec gdbm-1.23.tar.gz
|
@ -1,7 +0,0 @@
|
||||
# Pkgfile for gdbm
|
||||
|
||||
name=gdbm
|
||||
version=1.23
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
||||
build_opt="--enable-libgdbm-compat"
|
File diff suppressed because it is too large
Load Diff
@ -1,2 +0,0 @@
|
||||
594315917bd3936258f9fb981967e224 gettext-0.22-disable-libtextstyle.patch
|
||||
db2f3daf34fd5b85ab1a56f9033e42d1 gettext-0.22.tar.xz
|
@ -1,23 +0,0 @@
|
||||
# Pkgfile for gettext
|
||||
|
||||
name=gettext
|
||||
version=0.22
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz
|
||||
gettext-0.22-disable-libtextstyle.patch)
|
||||
build_opt="
|
||||
--with-included-glib
|
||||
--with-included-libcroco
|
||||
--with-included-libunistring
|
||||
--with-included-libxml
|
||||
--without-included-gettext
|
||||
"
|
||||
|
||||
bootstrap_build() {
|
||||
./configure --disable-shared
|
||||
make -j1
|
||||
cp -v gettext-tools/src/msgfmt \
|
||||
gettext-tools/src/msgmerge \
|
||||
gettext-tools/src/xgettext \
|
||||
$TOOLS/bin
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +0,0 @@
|
||||
cabf312a0adc98de9d52a411b2c14baa genlocales
|
||||
e89cf3dcb64939d29f04b4ceead5cc4e glibc-2.37.tar.xz
|
||||
f87bc003e02b07545914e38ffd7eede4 ld.so.conf
|
||||
f02419b094ba90195ca922b34a86b0af nsswitch.conf
|
||||
4a3e4243338481bb5e70b74281347ae8 reenable_DT_HASH.patch
|
@ -1,118 +0,0 @@
|
||||
# Pkgfile for glibc
|
||||
|
||||
name=glibc
|
||||
version=2.37
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz
|
||||
genlocales
|
||||
ld.so.conf
|
||||
nsswitch.conf
|
||||
reenable_DT_HASH.patch)
|
||||
|
||||
bootstrap_build() {
|
||||
mkdir -v build32
|
||||
cd build32
|
||||
|
||||
echo slibdir=$TOOLS/lib32 > configparms
|
||||
../configure \
|
||||
--prefix=$TOOLS \
|
||||
--host=$LFS_TGT32 \
|
||||
--build=$(../scripts/config.guess) \
|
||||
--libdir=$TOOLS/lib32 \
|
||||
--enable-kernel=3.2 \
|
||||
--with-headers=$TOOLS/include \
|
||||
CC="$LFS_TGT-gcc -m32" \
|
||||
CXX="$LFS_TGT-g++ -m32"
|
||||
make
|
||||
make install
|
||||
cd -
|
||||
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
../configure \
|
||||
--prefix=$TOOLS \
|
||||
--host=$LFS_TGT \
|
||||
--build=$(../scripts/config.guess) \
|
||||
--enable-kernel=3.2 \
|
||||
--with-headers=$TOOLS/include
|
||||
make
|
||||
make install
|
||||
}
|
||||
|
||||
pkg_build() {
|
||||
_configure_flag="
|
||||
--prefix=/usr \
|
||||
--with-headers=/usr/include \
|
||||
--disable-profile \
|
||||
--disable-werror \
|
||||
--enable-kernel=3.2 \
|
||||
--enable-stack-protector=strong \
|
||||
--enable-multi-arch \
|
||||
libc_cv_include_x86_isa_level=no"
|
||||
ln -sv lib $PKG/lib64
|
||||
|
||||
# 64bit
|
||||
mkdir -v build
|
||||
cd build
|
||||
|
||||
../configure \
|
||||
--libexecdir=/usr/lib \
|
||||
libc_cv_slibdir=/lib \
|
||||
${_configure_flag}
|
||||
make
|
||||
sed '/test-installation/s@$(PERL)@echo not running@' -i ../Makefile
|
||||
make install_root=$PKG install
|
||||
|
||||
install -d $PKG/var/cache/nscd
|
||||
install -d $PKG/usr/lib/locale
|
||||
install -d $PKG/etc/ld.so.conf.d
|
||||
|
||||
install -m644 ../nscd/nscd.conf $PKG/etc
|
||||
install -m644 $SRC/ld.so.conf $PKG/etc
|
||||
install -m644 $SRC/nsswitch.conf $PKG/etc
|
||||
|
||||
# supported locales
|
||||
sed -e '1,3d' -e 's|/| |g' -e 's|\\| |g' -e 's|^|#|g' \
|
||||
$SRC/glibc-$version/localedata/SUPPORTED >> $PKG/etc/locales
|
||||
|
||||
# locales generator
|
||||
install -Dm755 $SRC/genlocales $PKG/usr/bin/genlocales
|
||||
|
||||
LC_ALL=C ./elf/ld.so --library-path . $PKG/usr/bin/localedef \
|
||||
--force --quiet \
|
||||
--inputfile=$SRC/$name-$version/localedata/locales/C \
|
||||
--charmap=$SRC/$name-$version/localedata/charmaps/UTF-8 \
|
||||
$PKG/usr/lib/locale/C.UTF-8 || true
|
||||
|
||||
sed -i '/#C\.UTF-8 /d' $PKG/etc/locales
|
||||
|
||||
# shipped with tzdata
|
||||
rm $PKG/usr/bin/zdump
|
||||
rm $PKG/usr/sbin/zic
|
||||
rm $PKG/usr/bin/tzselect
|
||||
|
||||
# 32bit
|
||||
mkdir -v ../build32
|
||||
cd ../build32
|
||||
export CC="gcc -m32 -mstackrealign"
|
||||
export CXX="g++ -m32 -mstackrealign"
|
||||
export CFLAGS="$CFLAGS -Wno-error=parentheses"
|
||||
../configure \
|
||||
--libdir=/usr/lib32 \
|
||||
--libexecdir=/usr/lib32 \
|
||||
libc_cv_slibdir=/usr/lib32 \
|
||||
i686-pc-linux-gnu \
|
||||
${_configure_flag}
|
||||
make
|
||||
make install_root=$PWD/DESTDIR install
|
||||
install -dm755 $PKG/usr/lib32
|
||||
install -dm755 $PKG/usr/include/gnu/
|
||||
cp -Rv DESTDIR/usr/lib32/* $PKG/usr/lib32/
|
||||
install -m644 DESTDIR/usr/include/gnu/lib-names-32.h \
|
||||
DESTDIR/usr/include/gnu/stubs-32.h \
|
||||
$PKG/usr/include/gnu/
|
||||
ln -sv ../usr/lib32/ld-linux.so.2 $PKG/lib/ld-linux.so.2
|
||||
ln -sv ../lib/locale $PKG/usr/lib32/locale
|
||||
echo "/usr/lib32" > $PKG/etc/ld.so.conf.d/lib32.conf
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/include/
|
||||
-rw-r--r-- root/root usr/include/gmp.h
|
||||
-rw-r--r-- root/root usr/include/gmpxx.h
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
-rw-r--r-- root/root usr/lib/libgmp.a
|
||||
-rwxr-xr-x root/root usr/lib/libgmp.la
|
||||
lrwxrwxrwx root/root usr/lib/libgmp.so -> libgmp.so.10.4.1
|
||||
lrwxrwxrwx root/root usr/lib/libgmp.so.10 -> libgmp.so.10.4.1
|
||||
-rwxr-xr-x root/root usr/lib/libgmp.so.10.4.1
|
||||
-rw-r--r-- root/root usr/lib/libgmpxx.a
|
||||
-rwxr-xr-x root/root usr/lib/libgmpxx.la
|
||||
lrwxrwxrwx root/root usr/lib/libgmpxx.so -> libgmpxx.so.4.6.1
|
||||
lrwxrwxrwx root/root usr/lib/libgmpxx.so.4 -> libgmpxx.so.4.6.1
|
||||
-rwxr-xr-x root/root usr/lib/libgmpxx.so.4.6.1
|
||||
drwxr-xr-x root/root usr/lib/pkgconfig/
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/gmp.pc
|
||||
-rw-r--r-- root/root usr/lib/pkgconfig/gmpxx.pc
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/gmp.info-1.gz
|
||||
-rw-r--r-- root/root usr/share/info/gmp.info-2.gz
|
||||
-rw-r--r-- root/root usr/share/info/gmp.info.gz
|
@ -1 +0,0 @@
|
||||
0b82665c4a92fd2ade7440c13fcaa42b gmp-6.2.1.tar.xz
|
@ -1,8 +0,0 @@
|
||||
# Pkgfile for gmp
|
||||
|
||||
name=gmp
|
||||
version=6.2.1
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
||||
build_opt="--enable-cxx"
|
||||
bootstrap_opt="$build_opt"
|
@ -1 +0,0 @@
|
||||
9e251c0a618ad0824b51117d5d9db87e gperf-3.1.tar.gz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for gperf
|
||||
|
||||
name=gperf
|
||||
version=3.1
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
@ -1,148 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/egrep
|
||||
-rwxr-xr-x root/root usr/bin/fgrep
|
||||
-rwxr-xr-x root/root usr/bin/grep
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/grep.info.gz
|
||||
drwxr-xr-x root/root usr/share/locale/
|
||||
drwxr-xr-x root/root usr/share/locale/af/
|
||||
drwxr-xr-x root/root usr/share/locale/af/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/af/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/be/
|
||||
drwxr-xr-x root/root usr/share/locale/be/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/be/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/bg/
|
||||
drwxr-xr-x root/root usr/share/locale/bg/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/bg/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ca/
|
||||
drwxr-xr-x root/root usr/share/locale/ca/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ca/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/cs/
|
||||
drwxr-xr-x root/root usr/share/locale/cs/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/cs/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/da/
|
||||
drwxr-xr-x root/root usr/share/locale/da/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/da/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/de/
|
||||
drwxr-xr-x root/root usr/share/locale/de/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/de/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/el/
|
||||
drwxr-xr-x root/root usr/share/locale/el/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/el/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eo/
|
||||
drwxr-xr-x root/root usr/share/locale/eo/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eo/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/es/
|
||||
drwxr-xr-x root/root usr/share/locale/es/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/es/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/et/
|
||||
drwxr-xr-x root/root usr/share/locale/et/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/et/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/eu/
|
||||
drwxr-xr-x root/root usr/share/locale/eu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/eu/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fi/
|
||||
drwxr-xr-x root/root usr/share/locale/fi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fi/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/fr/
|
||||
drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ga/
|
||||
drwxr-xr-x root/root usr/share/locale/ga/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ga/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/gl/
|
||||
drwxr-xr-x root/root usr/share/locale/gl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/gl/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/he/
|
||||
drwxr-xr-x root/root usr/share/locale/he/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/he/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hr/
|
||||
drwxr-xr-x root/root usr/share/locale/hr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hr/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/hu/
|
||||
drwxr-xr-x root/root usr/share/locale/hu/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/hu/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/id/
|
||||
drwxr-xr-x root/root usr/share/locale/id/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/id/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/it/
|
||||
drwxr-xr-x root/root usr/share/locale/it/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/it/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ja/
|
||||
drwxr-xr-x root/root usr/share/locale/ja/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ja/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ka/
|
||||
drwxr-xr-x root/root usr/share/locale/ka/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ka/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ko/
|
||||
drwxr-xr-x root/root usr/share/locale/ko/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ko/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ky/
|
||||
drwxr-xr-x root/root usr/share/locale/ky/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ky/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/lt/
|
||||
drwxr-xr-x root/root usr/share/locale/lt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/lt/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nb/
|
||||
drwxr-xr-x root/root usr/share/locale/nb/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nb/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/nl/
|
||||
drwxr-xr-x root/root usr/share/locale/nl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/nl/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pa/
|
||||
drwxr-xr-x root/root usr/share/locale/pa/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pa/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pl/
|
||||
drwxr-xr-x root/root usr/share/locale/pl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pl/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt/
|
||||
drwxr-xr-x root/root usr/share/locale/pt/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/
|
||||
drwxr-xr-x root/root usr/share/locale/pt_BR/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/pt_BR/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ro/
|
||||
drwxr-xr-x root/root usr/share/locale/ro/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ro/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ru/
|
||||
drwxr-xr-x root/root usr/share/locale/ru/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ru/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sk/
|
||||
drwxr-xr-x root/root usr/share/locale/sk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sk/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sl/
|
||||
drwxr-xr-x root/root usr/share/locale/sl/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sl/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sr/
|
||||
drwxr-xr-x root/root usr/share/locale/sr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sr/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/sv/
|
||||
drwxr-xr-x root/root usr/share/locale/sv/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/sv/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/ta/
|
||||
drwxr-xr-x root/root usr/share/locale/ta/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/ta/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/th/
|
||||
drwxr-xr-x root/root usr/share/locale/th/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/th/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/tr/
|
||||
drwxr-xr-x root/root usr/share/locale/tr/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/tr/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/uk/
|
||||
drwxr-xr-x root/root usr/share/locale/uk/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/uk/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/vi/
|
||||
drwxr-xr-x root/root usr/share/locale/vi/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/vi/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_CN/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_CN/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/
|
||||
drwxr-xr-x root/root usr/share/locale/zh_TW/LC_MESSAGES/
|
||||
-rw-r--r-- root/root usr/share/locale/zh_TW/LC_MESSAGES/grep.mo
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/grep.1.gz
|
@ -1 +0,0 @@
|
||||
7c9bbd74492131245f7cdb291fa142c0 grep-3.11.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for grep
|
||||
|
||||
name=grep
|
||||
version=3.11
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1,645 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/addftinfo
|
||||
-rwxr-xr-x root/root usr/bin/afmtodit
|
||||
-rwxr-xr-x root/root usr/bin/chem
|
||||
-rwxr-xr-x root/root usr/bin/eqn
|
||||
-rwxr-xr-x root/root usr/bin/eqn2graph
|
||||
-rwxr-xr-x root/root usr/bin/gdiffmk
|
||||
-rwxr-xr-x root/root usr/bin/glilypond
|
||||
-rwxr-xr-x root/root usr/bin/gperl
|
||||
-rwxr-xr-x root/root usr/bin/gpinyin
|
||||
-rwxr-xr-x root/root usr/bin/grap2graph
|
||||
-rwxr-xr-x root/root usr/bin/grn
|
||||
-rwxr-xr-x root/root usr/bin/grodvi
|
||||
-rwxr-xr-x root/root usr/bin/groff
|
||||
-rwxr-xr-x root/root usr/bin/grog
|
||||
-rwxr-xr-x root/root usr/bin/grolbp
|
||||
-rwxr-xr-x root/root usr/bin/grolj4
|
||||
-rwxr-xr-x root/root usr/bin/gropdf
|
||||
-rwxr-xr-x root/root usr/bin/grops
|
||||
-rwxr-xr-x root/root usr/bin/grotty
|
||||
-rwxr-xr-x root/root usr/bin/hpftodit
|
||||
-rwxr-xr-x root/root usr/bin/indxbib
|
||||
-rwxr-xr-x root/root usr/bin/lkbib
|
||||
-rwxr-xr-x root/root usr/bin/lookbib
|
||||
-rwxr-xr-x root/root usr/bin/mmroff
|
||||
-rwxr-xr-x root/root usr/bin/neqn
|
||||
-rwxr-xr-x root/root usr/bin/nroff
|
||||
-rwxr-xr-x root/root usr/bin/pdfmom
|
||||
-rwxr-xr-x root/root usr/bin/pdfroff
|
||||
-rwxr-xr-x root/root usr/bin/pfbtops
|
||||
-rwxr-xr-x root/root usr/bin/pic
|
||||
-rwxr-xr-x root/root usr/bin/pic2graph
|
||||
-rwxr-xr-x root/root usr/bin/post-grohtml
|
||||
-rwxr-xr-x root/root usr/bin/pre-grohtml
|
||||
-rwxr-xr-x root/root usr/bin/preconv
|
||||
-rwxr-xr-x root/root usr/bin/refer
|
||||
-rwxr-xr-x root/root usr/bin/soelim
|
||||
-rwxr-xr-x root/root usr/bin/tbl
|
||||
-rwxr-xr-x root/root usr/bin/tfmtodit
|
||||
-rwxr-xr-x root/root usr/bin/troff
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/groff/
|
||||
drwxr-xr-x root/root usr/lib/groff/site-tmac/
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/doc/
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/examples/
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/examples/chem/
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/examples/chem/122/
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/README
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch2a_ethyl.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch2b_benzene.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch2c_benzene_right.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4a_stick.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4b_methyl_acetate.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4c_colon.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4d_HCl.H2O.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4e_CaSO4.2H2O.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4f_C.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4g_BP.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4h_methacrylate.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4i_cyclo.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4j_ring4.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4k_ring3.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4l_vertex.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4m_double.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4n_triple.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4o_aromatic.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4p_cholestanol.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4q_rings.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4r_spiro.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4s_heteroatoms.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4t_polycyclic.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4u_nicotine.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4v_histidine.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4w_lsd.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4x_anisole.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4y_reserpine.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4z1_eqn_glutamic.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch4z2_text.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch5a_size.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch6a_pic.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/ch6b_dna.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAa_polymer.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAb_vinyl_chloro.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAc_morphine.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAd_chlorophyll.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAe_chair.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAf_arrow.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAg_circle.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAh_brackets.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chAi_poly_vinyl_chloride.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chBa_jump.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chBb_bonds.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/122/chBc_rings.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/README
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/atp.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/cholesterin.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/ethamivan.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/lsd.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/morphine.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/penicillin.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/chem/reserpine.chem
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/gnu.eps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/grnexmpl.g
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/grnexmpl.me
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/grnexmpl.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/groff.css
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/examples/hdtbl/
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/chess_board.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/chess_board.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/col_rowspan_colors.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/col_rowspan_colors.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_boxes.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_boxes.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_nested_tables.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_nested_tables.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_table_cells.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_table_cells.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_transitions.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/color_transitions.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/common.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/fonts_n.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/fonts_n.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/fonts_x.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/fonts_x.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/gnu.eps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/mixed_pickles.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/mixed_pickles.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/rainbow.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/rainbow.roff
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/short_reference.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/hdtbl/short_reference.roff
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/examples/mm/
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mm/letter.mm
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/examples/mom/
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/README-fr.txt
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/README.txt
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/copyright-chapter.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/copyright-default.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/elvis_syntax
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/elvis_syntax.new
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/letter.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/mom-pdf.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/mom.vim
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/mon_premier_doc.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/penguin.pdf
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/penguin.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/sample_docs.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/slide-demo.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/mom/typesetting.mom
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/webpage.ms
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/examples/webpage.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/groff-man-pages.utf8.txt
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/groff.txt
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/html/
|
||||
drwxr-xr-x root/root usr/share/doc/groff-1.23.0/html/mom/
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/appendices.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/color.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/cover.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/definitions.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/docelement.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/docprocessing.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/goodies.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/graphical.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/headfootpage.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/images.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/inlines.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/intro.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/letters.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/macrolist.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/rectoverso.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/refer.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/reserved.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/stylesheet.css
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/tables-of-contents.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/toc.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/typesetting.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/using.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/html/mom/version-2.html
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/me-revisions
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/meintro.me
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/meintro.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/meintro_fr.me
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/meintro_fr.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/meref.me
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/meref.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/ms.ms
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/ms.ps
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/msboxes.ms
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/pic.ms
|
||||
-rw-r--r-- root/root usr/share/doc/groff-1.23.0/pic.ps
|
||||
drwxr-xr-x root/root usr/share/groff/
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/eign
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devascii/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devascii/B
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devascii/BI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devascii/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devascii/I
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devascii/R
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devcp1047/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devcp1047/B
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devcp1047/BI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devcp1047/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devcp1047/I
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devcp1047/R
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devdvi/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/CW
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/CWEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/CWI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/CWIEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/CWITC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/CWTC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/EX
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HBEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HBIEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HBITC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HBTC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HIEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HITC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HREC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/HRTC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/MI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/S
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/SA
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/SB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/SC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TBEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TBIEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TBITC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TBTC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TIEC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TITC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TREC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/TRTC
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devdvi/generate/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/CompileFonts
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/Makefile
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/ec.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/msam.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/msbm.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/tc.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/texb.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/texex.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/texi.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/texmi.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/texr.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/texsy.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/textex.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devdvi/generate/textt.map
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devhtml/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/B
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/BI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/CB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/CBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/CI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/CR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/I
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/R
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devhtml/S
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devlatin1/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlatin1/B
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlatin1/BI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlatin1/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlatin1/I
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlatin1/R
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devlbp/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/CB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/CI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/CR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/EB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/EI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/ER
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HNB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HNBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HNI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HNR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/HR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/TB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/TBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/TI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlbp/TR
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devlj4/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/AB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/ABI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/AI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/ALBB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/ALBR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/AOB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/AOI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/AOR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/AR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/CB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/CBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/CI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/CLARENDON
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/CORONET
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/CR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/GB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/GBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/GI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/GR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/LGB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/LGI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/LGR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/MARIGOLD
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/OB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/OBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/OI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/OR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/S
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/SYMBOL
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TNRB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TNRBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TNRI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TNRR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/TR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UCB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UCBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UCI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UCR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/UR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/WINGDINGS
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devlj4/generate/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/generate/Makefile
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/generate/special.awk
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/generate/special.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/generate/symbol.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/generate/text.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devlj4/generate/wingdings.map
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devpdf/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/CB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/CBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/CI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/CR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/EURO
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/Foundry
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/HB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/HBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/HI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/HR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/S
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/TB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/TBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/TI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/TR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/ZD
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/download
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devpdf/enc/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/enc/text.enc
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devpdf/map/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/map/dingbats.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/map/symbol.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/map/symbolchars
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devpdf/map/text.map
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devps/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/AB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/ABI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/AI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/AR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/BMB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/BMBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/BMI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/BMR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/CB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/CBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/CI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/CR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/EURO
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HNB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HNBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HNI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HNR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/HR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/NB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/NBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/NI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/NR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/PB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/PBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/PI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/PR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/S
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/SS
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/TB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/TBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/TI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/TR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/ZCMI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/ZD
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/ZDR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/download
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/freeeuro.afm
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/freeeuro.pfa
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devps/generate/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/Makefile
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/afmname
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/dingbats-reversed.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/dingbats.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/slanted-symbol.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/symbol.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/symbol.sed
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/symbolchars
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/generate/text.map
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/prologue
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/symbolsl.afm
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/symbolsl.pfa
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/text.enc
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/zapfdr.afm
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devps/zapfdr.pfa
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/font/devutf8/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devutf8/B
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devutf8/BI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devutf8/DESC
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devutf8/I
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/font/devutf8/R
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/oldfont/
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/oldfont/devps/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/CB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/CBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/CI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/CR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HNB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HNBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HNI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HNR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/HR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/NB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/NBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/NI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/NR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/PB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/PBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/PI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/PR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/S
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/SS
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/TB
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/TBI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/TI
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/TR
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/symbol.afm
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/symbolsl.afm
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/zapfdr.afm
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/oldfont/devps/zapfdr.ps
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/pic/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/pic/chem.pic
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/tmac/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/62bit.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/X.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/Xps.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/an-ext.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/an.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/andoc.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/composite.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/cp1047.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/cs.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/de.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/den.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/devtag.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/doc-old.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/doc.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/dvi.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/e.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/ec.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/en.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/eqnrc
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/europs.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/fallbacks.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/fr.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hdmisc.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hdtbl.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/html-end.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/html.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.cs
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.den
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.det
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.en
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.fr
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.it
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphen.sv
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphenex.cs
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/hyphenex.en
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/it.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/ja.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/latin1.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/latin2.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/latin5.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/latin9.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/lbp.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/lj4.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/m.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/man.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mandoc.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mdoc.tmac
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/tmac/mdoc/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mdoc/doc-common
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mdoc/doc-ditroff
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mdoc/doc-nroff
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mdoc/doc-syms
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/me.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mm.tmac
|
||||
drwxr-xr-x root/root usr/share/groff/1.23.0/tmac/mm/
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mm/0.MT
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mm/4.MT
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mm/5.MT
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mm/ms.cov
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mm/se_ms.cov
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mmse.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mom.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/ms.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/mse.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/om.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/papersize.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/pdf.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/pdfmark.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/pdfpic.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/pic.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/ps.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/psatk.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/psold.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/pspic.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/ptx.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/refer-me.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/refer-mm.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/refer-ms.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/refer.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/rfc1345.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/s.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/sanitize.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/sboxes.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/spdf.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/sv.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/trace.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/trans.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/troffrc
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/troffrc-end
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/tty-char.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/tty.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/www.tmac
|
||||
-rw-r--r-- root/root usr/share/groff/1.23.0/tmac/zh.tmac
|
||||
lrwxrwxrwx root/root usr/share/groff/current -> 1.23.0
|
||||
drwxr-xr-x root/root usr/share/groff/site-font/
|
||||
drwxr-xr-x root/root usr/share/groff/site-tmac/
|
||||
-rw-r--r-- root/root usr/share/groff/site-tmac/man.local
|
||||
-rw-r--r-- root/root usr/share/groff/site-tmac/mdoc.local
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/groff.info-1.gz
|
||||
-rw-r--r-- root/root usr/share/info/groff.info-2.gz
|
||||
-rw-r--r-- root/root usr/share/info/groff.info-3.gz
|
||||
-rw-r--r-- root/root usr/share/info/groff.info.gz
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/addftinfo.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/afmtodit.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/chem.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/eqn.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/eqn2graph.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gdiffmk.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/glilypond.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gperl.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gpinyin.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grap2graph.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grn.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grodvi.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/groff.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grog.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grohtml.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grolbp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grolj4.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gropdf.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grops.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/grotty.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/hpftodit.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/indxbib.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/lkbib.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/lookbib.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/mmroff.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/neqn.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/nroff.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pdfmom.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pdfroff.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pfbtops.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pic.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/pic2graph.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/preconv.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/refer.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/soelim.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tbl.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tfmtodit.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/troff.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man5/
|
||||
-rw-r--r-- root/root usr/share/man/man5/groff_font.5.gz
|
||||
-rw-r--r-- root/root usr/share/man/man5/groff_out.5.gz
|
||||
-rw-r--r-- root/root usr/share/man/man5/groff_tmac.5.gz
|
||||
drwxr-xr-x root/root usr/share/man/man7/
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_char.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_diff.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_hdtbl.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_man.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_man_style.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_mdoc.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_me.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_mm.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_mmse.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_mom.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_ms.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_rfc1345.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_trace.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/groff_www.7.gz
|
||||
-rw-r--r-- root/root usr/share/man/man7/roff.7.gz
|
@ -1 +0,0 @@
|
||||
5e4f40315a22bb8a158748e7d5094c7d groff-1.23.0.tar.gz
|
@ -1,8 +0,0 @@
|
||||
# Pkgfile for groff
|
||||
|
||||
name=groff
|
||||
version=1.23.0
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
||||
export PAGE=A4
|
||||
build_opt="--without-x"
|
@ -1,33 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/gunzip
|
||||
-rwxr-xr-x root/root usr/bin/gzexe
|
||||
-rwxr-xr-x root/root usr/bin/gzip
|
||||
-rwxr-xr-x root/root usr/bin/uncompress
|
||||
-rwxr-xr-x root/root usr/bin/zcat
|
||||
-rwxr-xr-x root/root usr/bin/zcmp
|
||||
-rwxr-xr-x root/root usr/bin/zdiff
|
||||
-rwxr-xr-x root/root usr/bin/zegrep
|
||||
-rwxr-xr-x root/root usr/bin/zfgrep
|
||||
-rwxr-xr-x root/root usr/bin/zforce
|
||||
-rwxr-xr-x root/root usr/bin/zgrep
|
||||
-rwxr-xr-x root/root usr/bin/zless
|
||||
-rwxr-xr-x root/root usr/bin/zmore
|
||||
-rwxr-xr-x root/root usr/bin/znew
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/gzip.info.gz
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/gunzip.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gzexe.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/gzip.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zcat.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zcmp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zdiff.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zforce.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zgrep.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zless.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/zmore.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/znew.1.gz
|
@ -1 +0,0 @@
|
||||
9608e4ac5f061b2a6479dc44e917a5db gzip-1.12.tar.xz
|
@ -1,6 +0,0 @@
|
||||
# Pkgfile for gzip
|
||||
|
||||
name=gzip
|
||||
version=1.12
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
@ -1,2 +0,0 @@
|
||||
52450e55f8a036f6ca44d2f55e20b3de protocols
|
||||
d690a37c415891b9e264dab7638aa514 services
|
@ -1,12 +0,0 @@
|
||||
# Pkgfile for iana-etc
|
||||
|
||||
name=iana-etc
|
||||
version=20230913
|
||||
release=1
|
||||
source=(services protocols)
|
||||
|
||||
pkg_build() {
|
||||
install -d -m 755 $PKG/etc
|
||||
install -m 644 services $PKG/etc
|
||||
install -m 644 protocols $PKG/etc
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/dnsdomainname
|
||||
-rwxr-xr-x root/root usr/bin/ftp
|
||||
-rwxr-xr-x root/root usr/bin/hostname
|
||||
-rwxr-xr-x root/root usr/bin/ifconfig
|
||||
-rwsr-xr-x root/root usr/bin/ping
|
||||
-rwsr-xr-x root/root usr/bin/ping6
|
||||
-rwxr-xr-x root/root usr/bin/talk
|
||||
-rwxr-xr-x root/root usr/bin/telnet
|
||||
-rwxr-xr-x root/root usr/bin/tftp
|
||||
-rwsr-xr-x root/root usr/bin/traceroute
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/share/
|
||||
drwxr-xr-x root/root usr/share/info/
|
||||
-rw-r--r-- root/root usr/share/info/dir
|
||||
-rw-r--r-- root/root usr/share/info/inetutils.info.gz
|
||||
drwxr-xr-x root/root usr/share/man/
|
||||
drwxr-xr-x root/root usr/share/man/man1/
|
||||
-rw-r--r-- root/root usr/share/man/man1/dnsdomainname.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ftp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/hostname.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ifconfig.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ping.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/ping6.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/talk.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/telnet.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/tftp.1.gz
|
||||
-rw-r--r-- root/root usr/share/man/man1/traceroute.1.gz
|
||||
drwxr-xr-x root/root usr/share/man/man8/
|
@ -1 +0,0 @@
|
||||
319d65bb5a6f1847c4810651f3b4ba74 inetutils-2.4.tar.xz
|
@ -1,15 +0,0 @@
|
||||
# Pkgfile for inetutils
|
||||
|
||||
name=inetutils
|
||||
version=2.4
|
||||
release=1
|
||||
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
||||
build_opt="
|
||||
--disable-logger
|
||||
--disable-whois
|
||||
--disable-rcp
|
||||
--disable-rexec
|
||||
--disable-rlogin
|
||||
--disable-rsh
|
||||
--disable-servers
|
||||
"
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user