diff --git a/ghc-rpm-macros-1.7.4.tar.xz b/ghc-rpm-macros-1.7.4.tar.xz deleted file mode 100644 index fef3037..0000000 --- a/ghc-rpm-macros-1.7.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0dbe15b4c54c13eec30aed84b82d2e93ea312d7949e8382c8189db68e57ee19 -size 25844 diff --git a/ghc-rpm-macros-1.9.90.tar.xz b/ghc-rpm-macros-1.9.90.tar.xz new file mode 100644 index 0000000..e787c5f --- /dev/null +++ b/ghc-rpm-macros-1.9.90.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11b99299138dba57016436fcfaf9ff4a109bbe410bbe90e961be92738c57f36 +size 17200 diff --git a/ghc-rpm-macros.changes b/ghc-rpm-macros.changes index 56f778a..bae20ce 100644 --- a/ghc-rpm-macros.changes +++ b/ghc-rpm-macros.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Fri Dec 20 07:44:37 UTC 2019 - Ondřej Súkup + +- update to 1.9.90 + * backport upstream changes + * workaround for packages without Setup.hs file + - drop no-selfbootstrap-check.patch + ------------------------------------------------------------------- Wed Jul 18 14:26:39 UTC 2018 - psimons@suse.com diff --git a/ghc-rpm-macros.spec b/ghc-rpm-macros.spec index 7d6c623..0c2fb1c 100644 --- a/ghc-rpm-macros.spec +++ b/ghc-rpm-macros.spec @@ -19,7 +19,7 @@ %global macros_dir %{_sysconfdir}/rpm %global without_hscolour 1 Name: ghc-rpm-macros -Version: 1.7.4 +Version: 1.9.90 Release: 0 Summary: RPM Macros for building packages for GHC License: GPL-3.0-or-later @@ -27,10 +27,8 @@ Group: Development/Libraries/Other Url: https://fedoraproject.org/wiki/Haskell_SIG # source gets updated with osc service dr Source0: %{name}-%{version}.tar.xz -Patch: no-selfbootstrap-check.patch BuildRequires: xz Requires: rpm -BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %if %{undefined without_hscolour} Requires: hscolour @@ -60,7 +58,6 @@ Macros used when generating source Haskell rpm packages. %prep %setup -q -%patch -p1 %build echo no build stage needed @@ -76,9 +73,7 @@ install -p -D -m 0755 cabal-tweak-flag %{buildroot}/%{_bindir}/cabal-tweak-flag install -p -D -m 0755 ghc-pkg-wrapper %{buildroot}/%{_prefix}/lib/rpm/ghc-pkg-wrapper install -p -D -m 0644 ghc.attr %{buildroot}/%{_prefix}/lib/rpm/fileattrs/ghc.attr install -p -D -m 0755 ghc-dirs.sh %{buildroot}/%{_prefix}/lib/rpm/ghc-dirs.sh -%if 0%{?suse_version} <= 1320 -install -d -D -m 0755 %{buildroot}%{_datadir}/licenses -%endif +install -p -D -m 0644 Setup.hs %{buildroot}/%{_datadir}/%{name}/Setup.hs %files %doc AUTHORS @@ -92,11 +87,8 @@ install -d -D -m 0755 %{buildroot}%{_datadir}/licenses %{_prefix}/lib/rpm/ghc-pkg-wrapper %{_prefix}/lib/rpm/fileattrs/ghc.attr %{_prefix}/lib/rpm/ghc-dirs.sh -# With 1.7.4 of ghc-rpm-macros license files are installed here -# but rpm does not own this directory on older openSUSE. -%if 0%{?suse_version} <= 1320 -%dir %{_datadir}/licenses -%endif +%dir %{_datadir}/%{name} +%{_datadir}/%{name}/Setup.hs %files extra %config %{macros_dir}/macros.ghc-extra diff --git a/no-selfbootstrap-check.patch b/no-selfbootstrap-check.patch deleted file mode 100644 index f97d967..0000000 --- a/no-selfbootstrap-check.patch +++ /dev/null @@ -1,30 +0,0 @@ -Index: ghc-rpm-macros-1.7.4/macros.ghc -=================================================================== ---- ghc-rpm-macros-1.7.4.orig/macros.ghc -+++ ghc-rpm-macros-1.7.4/macros.ghc -@@ -9,25 +9,11 @@ LANG=en_US.utf8\ - # compiler version - %ghc_version %{!?ghc_version_override:%(ghc --numeric-version)}%{?ghc_version_override} - --# check ghc version was rebuilt against self --%ghc_check_bootstrap\ --if [ ! "$(ghc --info | grep \\"Booter\\ version\\",\\"%{ghc_version}\\")" ]; then\ -- echo "Warning: this ghc build is not self-bootstrapped."\ --%if %{undefined ghc_bootstrapping}\ -- echo "The ghc package should be rebuilt against its current version before\ --proceeding, to avoid dependency ABI breakage from a future ghc rebuild."\ -- echo "To override set ghc_bootstrapping."\ -- echo "Aborting."\ -- exit 1\ --%endif\ --fi -- - # no _pkgdocdir in openSUSE - %_pkgdocdir %{_docdir}/%{name} - - # configure - %cabal_configure\ --%ghc_check_bootstrap\ - %global _hardened_ldflags %{nil}\ - %cabal --version\ - %cabal configure --prefix=%{_prefix} --libdir=%{_libdir} --docdir=%{_ghcdocdir} --libsubdir='$compiler/$pkgkey' --datasubdir='$pkgid' --ghc %{!?ghc_without_dynamic:--enable-executable-dynamic} %{?with_tests:--enable-tests} --ghc-options="${CFLAGS:+$(echo ' '$CFLAGS | sed -e 's/ / -optc/g')} ${LDFLAGS:+$(echo ' '$LDFLAGS | sed -e 's/ / -optl/g')}" %{?cabal_configure_options} $cabal_configure_extra_options