Bump to autoconf-archive 2021.02.19 72/279772/2
authorDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 30 Sep 2021 03:33:50 +0000 (12:33 +0900)
committerŁukasz Stelmach <l.stelmach@samsung.com>
Wed, 17 Aug 2022 10:51:12 +0000 (12:51 +0200)
Change-Id: I08a612ff131a3cfd9cc924e5265083b5c6bba236
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
packaging/autoconf-archive.manifest [new file with mode: 0644]
packaging/autoconf-archive.spec [new file with mode: 0644]

diff --git a/packaging/autoconf-archive.manifest b/packaging/autoconf-archive.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/autoconf-archive.spec b/packaging/autoconf-archive.spec
new file mode 100644 (file)
index 0000000..d9dba48
--- /dev/null
@@ -0,0 +1,51 @@
+Name:           autoconf-archive
+Version:        2021.02.19
+Release:        0
+Summary:        A Collection of macros for GNU autoconf
+License:        GPL-3.0+ WITH Autoconf-exception-3.0
+Group:          Development/Tools/Building
+Url:            https://savannah.gnu.org/projects/autoconf-archive
+Source0:        https://ftp.gnu.org/pub/gnu/autoconf-archive/%{name}-%{version}.tar.xz
+Source1001:     %{name}.manifest
+
+Requires(post): info
+Requires(pre):  info
+BuildArch:      noarch
+
+%description
+The GNU Autoconf Archive is a collection of more than 450 macros for `GNU
+Autoconf <http://www.gnu.org/software/autoconf>`_ that have been contributed as
+free software by friendly supporters of the cause from all over the Internet.
+Every single one of those macros can be re-used without imposing any
+restrictions whatsoever on the licensing of the generated `configure` script. In
+particular, it is possible to use all those macros in `configure` scripts that
+are meant for non-free software. This policy is unusual for a Free Software
+Foundation project. The FSF firmly believes that software ought to be free, and
+software licenses like the GPL are specifically designed to ensure that
+derivative work based on free software must be free as well. In case of
+Autoconf, however, an exception has been made, because Autoconf is at such a
+pivotal position in the software development tool chain that the benefits from
+having this tool available as widely as possible outweigh the disadvantage that
+some authors may choose to use it, too, for proprietary software.
+
+%prep
+%setup -q
+cp %{SOURCE1001} .
+
+%build
+%configure
+make %{?_smp_mflags}
+
+%install
+%make_install
+rm -rf %{buildroot}/%{_datadir}/%{name}/
+
+%remove_docs
+
+%files
+%manifest %{name}.manifest
+%license COPYING*
+%dir %{_datadir}/aclocal
+%{_datadir}/aclocal/*.m4
+
+%changelog