Bump to automake 1.16.4 08/264808/1 accepted/tizen_7.0_base accepted/tizen_7.0_base_hotfix accepted/tizen_7.0_base_tool accepted/tizen_7.0_base_tool_hotfix sandbox/backup/automake-1.16.4-20211231 sandbox/backup/automake_1.16.4_20221227 sandbox/dh0128.kwak/automake-1.16.4-20210930 tizen_7.0_base tizen_7.0_base_hotfix accepted/tizen/7.0/base/20230714.002831 accepted/tizen/7.0/base/hotfix/20230714.003646 accepted/tizen/7.0/base/tool/20221028.110321 accepted/tizen/7.0/base/tool/hotfix/20221115.084750 accepted/tizen/base/tool/20211230.002027 accepted/tizen/base/tool/20220302.073914 submit/tizen/20211215.020422 submit/tizen_7.0_base/20221028.194701 submit/tizen_7.0_base_hotfix/20221115.160301 submit/tizen_base/20211110.001028 submit/tizen_base/20211116.072843 submit/tizen_base/20211215.213907 submit/tizen_base/20211223.014011 submit/tizen_base/20211229.230721 submit/tizen_base/20220103.002755 submit/tizen_base/20220103.024512 submit/tizen_base/20220114.003233 submit/tizen_base/20220118.010448 submit/tizen_base/20220119.024330 submit/tizen_base/20220125.215211 submit/tizen_base/20220206.232026 submit/tizen_base/20220218.024400 submit/tizen_base/20220224.013306 submit/tizen_base/20220224.235902 submit/tizen_base/20220225.000918 submit/tizen_base/20220302.012827 submit/tizen_base/20220302.020656 submit/tizen_base/20220302.072438 submit/tizen_base/20230125.060925 tizen_7.0_m2_release
authorDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 30 Sep 2021 06:21:35 +0000 (15:21 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 30 Sep 2021 06:27:44 +0000 (15:27 +0900)
Change-Id: I393d16dba653bf281c743901e5efe52b66f4dd78
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
packaging/automake-rpmlintrc [new file with mode: 0644]
packaging/automake.manifest [new file with mode: 0644]
packaging/automake.spec [new file with mode: 0644]

diff --git a/packaging/automake-rpmlintrc b/packaging/automake-rpmlintrc
new file mode 100644 (file)
index 0000000..53e59b8
--- /dev/null
@@ -0,0 +1,4 @@
+# This line is mandatory to access the configuration functions
+from Config import *
+
+addFilter("automake.* devel-file-in-non-devel-package")
diff --git a/packaging/automake.manifest b/packaging/automake.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/automake.spec b/packaging/automake.spec
new file mode 100644 (file)
index 0000000..8a78a2d
--- /dev/null
@@ -0,0 +1,62 @@
+Name:           automake
+BuildRequires:  autoconf >= 2.69
+BuildRequires:  bison
+BuildRequires:  gcc-c++
+BuildRequires:  makeinfo
+BuildRequires:  xz
+Requires:       autoconf >= 2.69
+Version:        1.16.4
+Release:        0
+Summary:        A Program for Automatically Generating GNU-Style Makefile.in Files
+License:        GPL-2.0+
+Group:          Development/Tools/Building
+Url:            http://www.gnu.org/software/automake
+#X-Vc-Url:      git://git.savannah.gnu.org/automake.git
+Source:         automake-%{version}.tar.xz
+Source1:        automake-rpmlintrc
+Source1001:    automake.manifest
+BuildArch:      noarch
+
+%description
+Automake is a tool for automatically generating "Makefile.in" files
+from "Makefile.am" files.  "Makefile.am" is a series of "make" macro
+definitions (with rules occasionally thrown in).  The generated
+"Makefile.in" files are compatible with the GNU Makefile standards.
+
+%prep
+%setup -q -n automake-%{version}
+cp %{SOURCE1001} .
+
+%build
+sh bootstrap
+%configure --docdir=%{_docdir}/%{name}
+make %{!?asan:%{?_smp_mflags}}
+
+%install
+make install DESTDIR=%{buildroot}
+mkdir -p %{buildroot}/etc %{buildroot}/usr/share/aclocal
+echo /usr/local/share/aclocal >%{buildroot}/etc/aclocal_dirlist
+ln -s ../../../etc/aclocal_dirlist %{buildroot}/usr/share/aclocal/dirlist
+mkdir -p %{buildroot}%{_mandir}/man1
+install -m644 COPYING %{buildroot}%{_docdir}/%{name}
+# info's dir file is not auto ignored on some systems
+rm -rf %{buildroot}%{_infodir}/dir
+
+%post
+%install_info --info-dir=%{_infodir} %{_infodir}/automake.info.gz
+
+%postun
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz
+
+
+%files
+%manifest %{name}.manifest
+%license COPYING
+%defattr(-,root,root)
+%doc %{_docdir}/%{name}
+%{_bindir}/*
+%doc %{_infodir}/*.gz
+%doc %{_mandir}/man1/*
+%{_datadir}/aclocal*
+%{_datadir}/automake-*
+%config /etc/aclocal_dirlist