Bump to 2022.09.03 sandbox/autoconf-archive_2022.09.03 submit/tizen_base/20230105.031305
authorTizenOpenSource <tizenopensrc@samsung.com>
Tue, 27 Dec 2022 02:20:03 +0000 (11:20 +0900)
committerTizenOpenSource <tizenopensrc@samsung.com>
Tue, 27 Dec 2022 02:20:03 +0000 (11:20 +0900)
Signed-off-by: TizenOpenSource <tizenopensrc@samsung.com>
.gitignore [deleted file]
doc/.gitignore [deleted file]
packaging/autoconf-archive.manifest [new file with mode: 0644]
packaging/autoconf-archive.spec [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
deleted file mode 100644 (file)
index 76c2f04..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-# all generated files reside in here
-/stage/*
-
-# byte-compiled version of the python module
-/__pycache__/*
-/macro.pyc
-
-# the html tree is maintained in a separate, CVS-based repository
-/html/*
-
-# gnulib creates backup files with a ~ suffix all over the place
-*~
-
-# files generated by Autoconf, Automake, and Gnulib
-/AUTHORS
-/ChangeLog
-/GNUmakefile
-/INSTALL
-/Makefile
-/Makefile.in
-/README
-/aclocal.m4
-/autoconf-archive-*.*.*.tar.*
-/autoconf-archive-*.*.*/*
-/autom4te.cache/*
-/build-aux/*
-/config.log
-/config.status
-/configure
-/gnulib
-/maint.mk
diff --git a/doc/.gitignore b/doc/.gitignore
deleted file mode 100644 (file)
index 61b82b4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# ignore generated files
-
-/Makefile
-/Makefile.in
-/all-macros.texi
-/autoconf-archive.aux
-/autoconf-archive.cp
-/autoconf-archive.fn
-/autoconf-archive.info
-/autoconf-archive.info-?
-/autoconf-archive.ky
-/autoconf-archive.log
-/autoconf-archive.pg
-/autoconf-archive.toc
-/autoconf-archive.tp
-/autoconf-archive.vr
-/ax_*.texi
-/fdl-1.3.texi
-/gendocs_template
-/gendocs_template_min
-/manual/*
-/stamp-vti
-/version.texi
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..c853fd2
--- /dev/null
@@ -0,0 +1,52 @@
+Name:           autoconf-archive
+Version:        2022.09.03
+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
+autoreconf -fi
+%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