Skip to content

Commit

Permalink
talloc: initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
pitill0 committed Oct 16, 2024
1 parent cda8b73 commit 86d9031
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
23 changes: 23 additions & 0 deletions talloc/.footprint
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/pytalloc.h
-rw-r--r-- root/root usr/include/talloc.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libpytalloc-util.cpython-310-arm-linux-gnueabihf.so -> libpytalloc-util.cpython-310-arm-linux-gnueabihf.so.2.4.2
lrwxrwxrwx root/root usr/lib/libpytalloc-util.cpython-310-arm-linux-gnueabihf.so.2 -> libpytalloc-util.cpython-310-arm-linux-gnueabihf.so.2.4.2
-rwxr-xr-x root/root usr/lib/libpytalloc-util.cpython-310-arm-linux-gnueabihf.so.2.4.2
-rwxr-xr-x root/root usr/lib/libtalloc-compat1-2.4.2.so
lrwxrwxrwx root/root usr/lib/libtalloc.so -> libtalloc.so.2.4.2
lrwxrwxrwx root/root usr/lib/libtalloc.so.1 -> libtalloc-compat1-2.4.2.so
lrwxrwxrwx root/root usr/lib/libtalloc.so.2 -> libtalloc.so.2.4.2
-rwxr-xr-x root/root usr/lib/libtalloc.so.2.4.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/pytalloc-util.cpython-310-arm-linux-gnueabihf.pc
-rw-r--r-- root/root usr/lib/pkgconfig/talloc.pc
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
-rwxr-xr-x root/root usr/lib/python3.10/site-packages/talloc.cpython-310-arm-linux-gnueabihf.so
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/talloc.3.gz
6 changes: 6 additions & 0 deletions talloc/.signature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
untrusted comment: verify with /etc/ports/opt-arm.pub
RWQh9Dk2FlLauMHzgEtaCiVZNmDsysvrb78AoYGyaNnixxgGku51vY9rYfK6P8zHFDJmZceLqpS1d3/Ybze9nHiDXVdGJLYFNA0=
SHA256 (Pkgfile) = a9303ac7333e37dc1bf3872e9090b035b37163d563f28b8edf5a85786526c973
SHA256 (.footprint) = c050e82a0d7ede998714b12d3100f764ba295ae7573b44d7863953adf87385d6
SHA256 (talloc-2.4.2.tar.gz) = 85ecf9e465e20f98f9950a52e9a411e14320bc555fa257d87697b7e7a9b1d8a6
SHA256 (talloc-man-pages.tar.xz) = ccaa229413cb28235c9e0bf819119c171730e4782fa176ff87605bdb88a7925a
26 changes: 26 additions & 0 deletions talloc/Pkgfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Description: Hierarchical, reference counted memory pool system with destructors
# URL: https://talloc.samba.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Arch Maintainer: CRUX-ARM System Team. devel at crux-arm dot nu
# Depends on: python3

name=talloc
version=2.4.2
release=1
source=(https://samba.org/ftp/$name/$name-$version.tar.gz
$name-man-pages.tar.xz)

build() {
cd $name-$version

./configure \
--prefix=/usr \
--bundled-libraries=NONE \
--enable-talloc-compat1

make -j1
make DESTDIR=$PKG install

install -d $PKG/usr/share/man/man3
install -m 0644 $SRC/talloc.3 $PKG/usr/share/man/man3
}
Binary file added talloc/talloc-man-pages.tar.xz
Binary file not shown.

0 comments on commit 86d9031

Please sign in to comment.