[rtems-crossrpms commit] New.
Ralf Corsepius
ralf at rtems.org
Tue Apr 24 16:54:04 UTC 2012
Module: rtems-crossrpms
Branch: master
Commit: e8dc8ef05081a377d8850f955e47ab5a64ad7d6c
Changeset: http://git.rtems.org/rtems-crossrpms/commit/?id=e8dc8ef05081a377d8850f955e47ab5a64ad7d6c
Author: Ralf Corsépius <ralf.corsepius at rtems.org>
Date: Mon Apr 23 23:51:57 2012 +0200
New.
---
mingw32/x86_64/mingw-gmp.add | 81 +++++++++++++++++++
mingw32/x86_64/mingw-mpc.add | 85 ++++++++++++++++++++
mingw32/x86_64/mingw-mpfr.add | 83 +++++++++++++++++++
.../x86_64/x86_64-w64-mingw32-binutils-helper.spec | 25 ++++++
.../x86_64-w64-mingw32-binutils-helper.spec.in | 25 ++++++
.../x86_64/x86_64-w64-mingw32-curses-helper.spec | 26 ++++++
.../x86_64-w64-mingw32-curses-helper.spec.in | 26 ++++++
.../x86_64/x86_64-w64-mingw32-expat-helper.spec | 26 ++++++
.../x86_64/x86_64-w64-mingw32-expat-helper.spec.in | 26 ++++++
mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec | 25 ++++++
.../x86_64/x86_64-w64-mingw32-gcc-helper.spec.in | 25 ++++++
mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec | 26 ++++++
.../x86_64/x86_64-w64-mingw32-gmp-helper.spec.in | 26 ++++++
mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec | 25 ++++++
.../x86_64/x86_64-w64-mingw32-libs-helper.spec.in | 25 ++++++
mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec | 26 ++++++
.../x86_64/x86_64-w64-mingw32-mpc-helper.spec.in | 26 ++++++
mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec | 26 ++++++
.../x86_64/x86_64-w64-mingw32-mpfr-helper.spec.in | 26 ++++++
.../x86_64/x86_64-w64-mingw32-readline-helper.spec | 26 ++++++
.../x86_64-w64-mingw32-readline-helper.spec.in | 26 ++++++
.../x86_64/x86_64-w64-mingw32-termcap-helper.spec | 26 ++++++
.../x86_64-w64-mingw32-termcap-helper.spec.in | 26 ++++++
.../x86_64/x86_64-w64-mingw32-w32api-helper.spec | 25 ++++++
.../x86_64-w64-mingw32-w32api-helper.spec.in | 25 ++++++
mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec | 26 ++++++
.../x86_64/x86_64-w64-mingw32-zlib-helper.spec.in | 26 ++++++
27 files changed, 865 insertions(+), 0 deletions(-)
diff --git a/mingw32/x86_64/mingw-gmp.add b/mingw32/x86_64/mingw-gmp.add
new file mode 100644
index 0000000..40ae1ae
--- /dev/null
+++ b/mingw32/x86_64/mingw-gmp.add
@@ -0,0 +1,81 @@
+#
+# Please send bugfixes or comments to
+# http://www.rtems.org/bugzilla
+#
+
+%?mingw_package_header
+
+%define gmp_version @GMP_VERS@
+%define gmp_rpmvers %{expand:%(echo @GMP_VERS@ | tr - _)}
+
+Name: mingw-gmp
+Release: @GMP_RPMREL@%{?dist}
+License: GPL
+Group: Development/Tools
+
+BuildArch: noarch
+
+Version: %gmp_rpmvers
+Summary: MinGW gmp Libraries
+
+Source0: ftp://ftp.gnu.org/gnu/gmp/gmp-%{gmp_version}.tar.xz
+
+BuildRequires: mingw32-filesystem
+BuildRequires: mingw32-gcc
+BuildRequires: mingw32-binutils
+
+%if 0%{fedora} > 16
+BuildRequires: mingw64-filesystem >= 95
+BuildRequires: mingw64-gcc
+BuildRequires: mingw64-binutils
+%else
+# Cludge to work around /usr/lib/rpm/brp-strip-static-archive corrupting *.a's
+%global __strip %{_mingw32_strip}
+# F16 uses _mingw32_sysroot, fedora > 16 uses mingw32_sysroot
+%global mingw32_sysroot %{_mingw32_sysroot}
+%endif
+
+BuildRequires: m4
+
+%description
+%{summary}
+
+%package -n mingw32-gmp
+Summary: MinGW32 gmp libraries
+
+%description -n mingw32-gmp
+%{summary}
+
+%if %{?mingw_build_win64}0
+%package -n mingw64-gmp
+Summary: MinGW64 gmp libraries
+
+%description -n mingw64-gmp
+%{summary}
+%endif
+
+%?mingw_debug_package
+
+%prep
+%setup -q -n gmp-%{gmp_version}
+
+%build
+%{?mingw_build_win64:%mingw_configure}%{!?mingw_build_win64:%_mingw32_configure} --enable-static --disable-shared
+
+%{?mingw_build_win64:%mingw_make}%{!?mingw_build_win64:%_mingw32_make}
+
+%install
+%{?mingw_build_win64:%mingw_make_install}%{!?mingw_build_win64:make install} DESTDIR=$RPM_BUILD_ROOT
+
+
+%files -n mingw32-gmp
+%defattr(-,root,root,-)
+%{mingw32_sysroot}/mingw
+%exclude %{mingw32_sysroot}/mingw/share/info/dir
+
+%if %{?mingw_build_win64}0
+%files -n mingw64-gmp
+%defattr(-,root,root,-)
+%{mingw64_sysroot}/mingw
+%exclude %{mingw64_sysroot}/mingw/share/info/dir
+%endif
diff --git a/mingw32/x86_64/mingw-mpc.add b/mingw32/x86_64/mingw-mpc.add
new file mode 100644
index 0000000..98b0f7e
--- /dev/null
+++ b/mingw32/x86_64/mingw-mpc.add
@@ -0,0 +1,85 @@
+#
+# Please send bugfixes or comments to
+# http://www.rtems.org/bugzilla
+#
+
+%?mingw_package_header
+
+%define mpc_version @MPC_VERS@
+%define mpc_rpmvers %{expand:%(echo @MPC_VERS@ | tr - _)}
+
+Name: mingw-mpc
+Release: @MPC_RPMREL@%{?dist}
+License: GPL
+Group: Development/Tools
+
+BuildArch: noarch
+
+Version: %mpc_rpmvers
+Summary: MinGW mpc Libraries
+
+Source0: http://www.multiprecision.org/mpc/download/mpc-%{mpc_version}.tar.gz
+
+BuildRequires: mingw32-filesystem
+BuildRequires: mingw32-gcc
+BuildRequires: mingw32-binutils
+BuildRequires: mingw32-gmp
+BuildRequires: mingw32-mpfr
+
+%if 0%{fedora} > 16
+BuildRequires: mingw64-filesystem >= 95
+BuildRequires: mingw64-gcc
+BuildRequires: mingw64-binutils
+BuildRequires: mingw64-gmp
+BuildRequires: mingw64-mpfr
+%else
+# Cludge to work around /usr/lib/rpm/brp-strip-static-archive corrupting *.a's
+%global __strip %{_mingw32_strip}
+# F16 uses _mingw32_sysroot, fedora > 16 uses mingw32_sysroot
+%global mingw32_sysroot %{_mingw32_sysroot}
+%endif
+
+BuildRequires: m4
+
+%description
+%{summary}
+
+%package -n mingw32-mpc
+Summary: MinGW32 mpc libraries
+
+%description -n mingw32-mpc
+%{summary}
+
+%if %{?mingw_build_win64}0
+%package -n mingw64-mpc
+Summary: MinGW64 mpc libraries
+
+%description -n mingw64-mpc
+%{summary}
+%endif
+
+%?mingw_debug_package
+
+%prep
+%setup -q -n mpc-%{mpc_version}
+
+%build
+%{?mingw_build_win64:%mingw_configure}%{!?mingw_build_win64:%_mingw32_configure} --enable-static --disable-shared
+
+%{?mingw_build_win64:%mingw_make}%{!?mingw_build_win64:%_mingw32_make}
+
+%install
+%{?mingw_build_win64:%mingw_make_install}%{!?mingw_build_win64:make install} DESTDIR=$RPM_BUILD_ROOT
+
+
+%files -n mingw32-mpc
+%defattr(-,root,root,-)
+%{mingw32_sysroot}/mingw
+%exclude %{mingw32_sysroot}/mingw/share/info/dir
+
+%if %{?mingw_build_win64}0
+%files -n mingw64-mpc
+%defattr(-,root,root,-)
+%{mingw64_sysroot}/mingw
+%exclude %{mingw64_sysroot}/mingw/share/info/dir
+%endif
diff --git a/mingw32/x86_64/mingw-mpfr.add b/mingw32/x86_64/mingw-mpfr.add
new file mode 100644
index 0000000..5059ac3
--- /dev/null
+++ b/mingw32/x86_64/mingw-mpfr.add
@@ -0,0 +1,83 @@
+#
+# Please send bugfixes or comments to
+# http://www.rtems.org/bugzilla
+#
+
+%?mingw_package_header
+
+%define mpfr_version @MPFR_VERS@
+%define mpfr_rpmvers %{expand:%(echo @MPFR_VERS@ | tr - _)}
+
+Name: mingw-mpfr
+Release: @MPFR_RPMREL@%{?dist}
+License: GPL
+Group: Development/Tools
+
+BuildArch: noarch
+
+Version: %mpfr_rpmvers
+Summary: MinGW mpfr Libraries
+
+Source0: http://www.mpfr.org/mpfr-%{mpfr_version}/mpfr-%{mpfr_version}.tar.xz
+
+BuildRequires: mingw32-filesystem
+BuildRequires: mingw32-gcc
+BuildRequires: mingw32-binutils
+BuildRequires: mingw32-gmp
+
+%if 0%{fedora} > 16
+BuildRequires: mingw64-filesystem >= 95
+BuildRequires: mingw64-gcc
+BuildRequires: mingw64-binutils
+BuildRequires: mingw64-gmp
+%else
+# Cludge to work around /usr/lib/rpm/brp-strip-static-archive corrupting *.a's
+%global __strip %{_mingw32_strip}
+# F16 uses _mingw32_sysroot, fedora > 16 uses mingw32_sysroot
+%global mingw32_sysroot %{_mingw32_sysroot}
+%endif
+
+BuildRequires: m4
+
+%description
+%{summary}
+
+%package -n mingw32-mpfr
+Summary: MinGW32 mpfr libraries
+
+%description -n mingw32-mpfr
+%{summary}
+
+%if %{?mingw_build_win64}0
+%package -n mingw64-mpfr
+Summary: MinGW64 mpfr libraries
+
+%description -n mingw64-mpfr
+%{summary}
+%endif
+
+%?mingw_debug_package
+
+%prep
+%setup -q -n mpfr-%{mpfr_version}
+
+%build
+%{?mingw_build_win64:%mingw_configure}%{!?mingw_build_win64:%_mingw32_configure} --enable-static --disable-shared
+
+%{?mingw_build_win64:%mingw_make}%{!?mingw_build_win64:%_mingw32_make}
+
+%install
+%{?mingw_build_win64:%mingw_make_install}%{!?mingw_build_win64:make install} DESTDIR=$RPM_BUILD_ROOT
+
+
+%files -n mingw32-mpfr
+%defattr(-,root,root,-)
+%{mingw32_sysroot}/mingw
+%exclude %{mingw32_sysroot}/mingw/share/info/dir
+
+%if %{?mingw_build_win64}0
+%files -n mingw64-mpfr
+%defattr(-,root,root,-)
+%{mingw64_sysroot}/mingw
+%exclude %{mingw64_sysroot}/mingw/share/info/dir
+%endif
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-binutils-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-binutils-helper.spec
new file mode 100644
index 0000000..89817cf
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-binutils-helper.spec
@@ -0,0 +1,25 @@
+Name: x86_64-w64-mingw32-binutils-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS binutils helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-binutils
+Requires: mingw32-binutils
+Provides: x86_64-w64-mingw32-binutils
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-binutils-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-binutils-helper.spec.in
new file mode 100644
index 0000000..a0e96f7
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-binutils-helper.spec.in
@@ -0,0 +1,25 @@
+Name: @rpmprefix@@tool_target at -binutils-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS binutils helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-binutils
+Requires: mingw32-binutils
+Provides: @rpmprefix@@tool_target at -binutils
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-curses-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-curses-helper.spec
new file mode 100644
index 0000000..11a1c64
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-curses-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-curses-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 curses libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-pdcurses
+Requires: mingw32-pdcurses
+Provides: x86_64-w64-mingw32-ncurses
+Provides: x86_64-w64-mingw32-ncurses-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-curses-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-curses-helper.spec.in
new file mode 100644
index 0000000..3c9c047
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-curses-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -curses-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 curses libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-pdcurses
+Requires: mingw32-pdcurses
+Provides: @rpmprefix@@tool_target at -ncurses
+Provides: @rpmprefix@@tool_target at -ncurses-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-expat-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-expat-helper.spec
new file mode 100644
index 0000000..ee79797
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-expat-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-expat-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 expat libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-expat
+Requires: mingw32-expat
+Provides: x86_64-w64-mingw32-expat
+Provides: x86_64-w64-mingw32-expat-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-expat-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-expat-helper.spec.in
new file mode 100644
index 0000000..56da446
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-expat-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -expat-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 expat libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-expat
+Requires: mingw32-expat
+Provides: @rpmprefix@@tool_target at -expat
+Provides: @rpmprefix@@tool_target at -expat-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec
new file mode 100644
index 0000000..4d110b3
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec
@@ -0,0 +1,25 @@
+Name: x86_64-w64-mingw32-gcc-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS gcc helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-gcc
+Requires: mingw32-gcc
+Provides: x86_64-w64-mingw32-gcc
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec.in
new file mode 100644
index 0000000..e6308b2
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-gcc-helper.spec.in
@@ -0,0 +1,25 @@
+Name: @rpmprefix@@tool_target at -gcc-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS gcc helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-gcc
+Requires: mingw32-gcc
+Provides: @rpmprefix@@tool_target at -gcc
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec
new file mode 100644
index 0000000..8b0f59d
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-gmp-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 gmp libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-gmp
+Requires: mingw32-gmp
+Provides: x86_64-w64-mingw32-gmp
+Provides: x86_64-w64-mingw32-gmp-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec.in
new file mode 100644
index 0000000..f126b98
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-gmp-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -gmp-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 gmp libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-gmp
+Requires: mingw32-gmp
+Provides: @rpmprefix@@tool_target at -gmp
+Provides: @rpmprefix@@tool_target at -gmp-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec
new file mode 100644
index 0000000..02c9aee
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec
@@ -0,0 +1,25 @@
+Name: x86_64-w64-mingw32-libs-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 runtime libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-runtime
+Requires: mingw32-runtime
+Provides: x86_64-w64-mingw32-libs
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec.in
new file mode 100644
index 0000000..e540131
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-libs-helper.spec.in
@@ -0,0 +1,25 @@
+Name: @rpmprefix@@tool_target at -libs-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 runtime libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-runtime
+Requires: mingw32-runtime
+Provides: @rpmprefix@@tool_target at -libs
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec
new file mode 100644
index 0000000..da79692
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-mpc-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 mpc libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-mpc
+Requires: mingw32-mpc
+Provides: x86_64-w64-mingw32-mpc
+Provides: x86_64-w64-mingw32-mpc-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec.in
new file mode 100644
index 0000000..b6ec35e
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-mpc-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -mpc-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 mpc libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-mpc
+Requires: mingw32-mpc
+Provides: @rpmprefix@@tool_target at -mpc
+Provides: @rpmprefix@@tool_target at -mpc-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec
new file mode 100644
index 0000000..ead0c3c
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-mpfr-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 mpfr libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-mpfr
+Requires: mingw32-mpfr
+Provides: x86_64-w64-mingw32-mpfr
+Provides: x86_64-w64-mingw32-mpfr-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec.in
new file mode 100644
index 0000000..8180f79
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-mpfr-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -mpfr-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 mpfr libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-mpfr
+Requires: mingw32-mpfr
+Provides: @rpmprefix@@tool_target at -mpfr
+Provides: @rpmprefix@@tool_target at -mpfr-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-readline-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-readline-helper.spec
new file mode 100644
index 0000000..03983cd
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-readline-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-readline-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 readline libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-readline
+Requires: mingw32-readline
+Provides: x86_64-w64-mingw32-readline
+Provides: x86_64-w64-mingw32-readline-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-readline-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-readline-helper.spec.in
new file mode 100644
index 0000000..b72d0d3
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-readline-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -readline-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 readline libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-readline
+Requires: mingw32-readline
+Provides: @rpmprefix@@tool_target at -readline
+Provides: @rpmprefix@@tool_target at -readline-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-termcap-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-termcap-helper.spec
new file mode 100644
index 0000000..ae27396
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-termcap-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-termcap-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 termcap libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-termcap
+Requires: mingw32-termcap
+Provides: x86_64-w64-mingw32-termcap
+Provides: x86_64-w64-mingw32-termcap-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-termcap-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-termcap-helper.spec.in
new file mode 100644
index 0000000..b1d3d07
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-termcap-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -termcap-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 termcap libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-termcap
+Requires: mingw32-termcap
+Provides: @rpmprefix@@tool_target at -termcap
+Provides: @rpmprefix@@tool_target at -termcap-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-w32api-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-w32api-helper.spec
new file mode 100644
index 0000000..5c0f4dc
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-w32api-helper.spec
@@ -0,0 +1,25 @@
+Name: x86_64-w64-mingw32-w32api-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 runtime libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-w32api
+Requires: mingw32-w32api
+Provides: x86_64-w64-mingw32-w32api
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-w32api-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-w32api-helper.spec.in
new file mode 100644
index 0000000..0a8e448
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-w32api-helper.spec.in
@@ -0,0 +1,25 @@
+Name: @rpmprefix@@tool_target at -w32api-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 runtime libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-w32api
+Requires: mingw32-w32api
+Provides: @rpmprefix@@tool_target at -w32api
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec b/mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec
new file mode 100644
index 0000000..5c10f4c
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec
@@ -0,0 +1,26 @@
+Name: x86_64-w64-mingw32-zlib-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 zlib libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-zlib
+Requires: mingw32-zlib
+Provides: x86_64-w64-mingw32-zlib
+Provides: x86_64-w64-mingw32-zlib-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
diff --git a/mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec.in b/mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec.in
new file mode 100644
index 0000000..21a6e79
--- /dev/null
+++ b/mingw32/x86_64/x86_64-w64-mingw32-zlib-helper.spec.in
@@ -0,0 +1,26 @@
+Name: @rpmprefix@@tool_target at -zlib-helper
+Version: 0.20120422.0
+Release: 1%{?dist}
+Summary: RTEMS mingw32 zlib libs helper
+
+Group: Development
+License: GPLv3+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+BuildRequires: mingw32-zlib
+Requires: mingw32-zlib
+Provides: @rpmprefix@@tool_target at -zlib
+Provides: @rpmprefix@@tool_target at -zlib-devel
+
+%description
+%{summary}
+
+%prep
+%setup -q -c -T -n %{name}-%{version}
+
+%build
+
+%files
+
+%changelog
More information about the vc
mailing list