2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

rsync: drop package

This commit is contained in:
Dylan Araps 2021-08-11 07:31:00 +00:00
parent f35432f705
commit 9898c8b43c
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
6 changed files with 0 additions and 64 deletions

View File

@ -1,19 +0,0 @@
#!/bin/sh -e
# Swap to awk script instead of perl script
# for building rsync. See files/mkproto.awk.
sed 's/perl/awk -f/;s/mkproto.pl/mkproto.awk/' Makefile.in > _
mv -f _ Makefile.in
export CFLAGS="-static $CFLAGS"
./configure \
--prefix=/usr \
--with-included-popt \
--disable-xxhash \
--disable-zstd \
--disable-lz4 \
--without-included-zlib
make
make install

View File

@ -1,2 +0,0 @@
becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e
301240aecba5b8fbda8310c841ef61e3c1f312a55378f6079f8d65ae1bd811f2

View File

@ -1 +0,0 @@
zlib make

View File

@ -1,39 +0,0 @@
#!/usr/bin/awk -f
BEGIN {
while ((getline i < "proto.h") > 0) old_protos = old_protos ? old_protos "\n" i : i
protos = "/* This file is automatically generated with \"make proto\". DO NOT EDIT */\n"
}
inheader {
protos = protos "\n" ((inheader = /\)[ \t]*$/ ? 0 : 1) ? $0 : $0 ";")
next
}
/^FN_(LOCAL|GLOBAL)_[^(]+\([^,()]+/ {
local = /^FN_LOCAL/
gsub(/^FN_(LOC|GLOB)AL_|,.*$/, "")
sub(/^BOOL\(/, "BOOL ")
sub(/^CHAR\(/, "char ")
sub(/^INTEGER\(/, "int ")
sub(/^STRING\(/, "char *")
protos = protos "\n" $0 (local ? "(int module_id);" : "(void);")
next
}
/^static|^extern|;/||!/^[A-Za-z][A-Za-z0-9_]* / { next }
/\(.*\)[ \t]*$/ {
protos = protos "\n" $0 ";"
next
}
/\(/ {
inheader = 1
protos = protos "\n" $0
}
END {
if (old_protos != protos) print protos > "proto.h"
print "" > "proto.h-tstamp"
}

View File

@ -1,2 +0,0 @@
https://download.samba.org/pub/rsync/src/rsync-VERSION.tar.gz
files/mkproto.awk

View File

@ -1 +0,0 @@
3.2.3 1