From a48adb9f5797ebffd06c7ad1306230d7b52ebab6 Mon Sep 17 00:00:00 2001 From: Alexandr Savca Date: Thu, 11 Jul 2024 09:42:57 +0300 Subject: [PATCH] automake: don't remove required files, relbump --- automake/.footprint | 4 ++++ automake/Pkgfile | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/automake/.footprint b/automake/.footprint index 66d5640..cfd1c83 100644 --- a/automake/.footprint +++ b/automake/.footprint @@ -41,6 +41,7 @@ drwxr-xr-x root/root usr/share/aclocal-1.16/internal/ -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 @@ -64,6 +65,8 @@ drwxr-xr-x root/root usr/share/automake-1.16/Automake/ -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 @@ -116,6 +119,7 @@ drwxr-xr-x root/root usr/share/automake-1.16/am/ -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/man/ drwxr-xr-x root/root usr/share/man/man1/ diff --git a/automake/Pkgfile b/automake/Pkgfile index 630fe91..67effae 100644 --- a/automake/Pkgfile +++ b/automake/Pkgfile @@ -4,7 +4,7 @@ name=automake version=1.16.5 -release=1 +release=2 source=https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz build() { @@ -18,6 +18,8 @@ build() { # remove junk cd $PKG/usr/share; rm -r info doc - cd $PKG/usr/share/automake-*; rm texinfo.tex COPYING INSTALL - cd $PKG/usr/share/aclocal; rm README + + # don't remove these files, they're required by autoconf/automake + #cd $PKG/usr/share/automake-*; rm texinfo.tex COPYING INSTALL + #cd $PKG/usr/share/aclocal; rm README }