From 454a99ed255fe45054d0a8e980ac341c05024dc9 Mon Sep 17 00:00:00 2001 From: "Tom \"spot\" Callaway" Date: Wed, 29 Jun 2011 10:16:07 -0400 Subject: [PATCH 01/35] initial import --- .gitignore | 1 + mono-reflection-build.patch | 20 ++++++++ mono-reflection-make-git-snapshot.sh | 35 +++++++++++++ mono-reflection.pc | 8 +++ mono-reflection.spec | 73 ++++++++++++++++++++++++++++ sources | 1 + 6 files changed, 138 insertions(+) create mode 100644 mono-reflection-build.patch create mode 100755 mono-reflection-make-git-snapshot.sh create mode 100644 mono-reflection.pc create mode 100644 mono-reflection.spec diff --git a/.gitignore b/.gitignore index e69de29..a710747 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/mono-reflection-20110613git304d1d.tar.bz2 diff --git a/mono-reflection-build.patch b/mono-reflection-build.patch new file mode 100644 index 0000000..cad2c7b --- /dev/null +++ b/mono-reflection-build.patch @@ -0,0 +1,20 @@ +diff -up mono-reflection-201105123git04d1df/Makefile.build mono-reflection-201105123git04d1df/Makefile +--- mono-reflection-201105123git04d1df/Makefile.build 2011-05-12 16:16:13.291241832 -0400 ++++ mono-reflection-201105123git04d1df/Makefile 2011-05-12 16:16:07.841309263 -0400 +@@ -0,0 +1,16 @@ ++MCS = mcs ++KEY_FILE = Mono.Reflection.snk ++MCS_FLAGS = -keyfile:$(KEY_FILE) ++BUILD.DIR = bin ++ ++all: init ++ $(MCS) $(MCS_FLAGS) @Mono.Reflection.sources /target:library /out:$(BUILD.DIR)/Mono.Reflection.dll ++ ++init: ++ mkdir -p $(BUILD.DIR) ++ find Mono.Reflection -name "*.cs" > Mono.Reflection.sources ++ ++clean: ++ rm -fr $(BUILD.DIR) ++ ++rebuild: clean all diff --git a/mono-reflection-make-git-snapshot.sh b/mono-reflection-make-git-snapshot.sh new file mode 100755 index 0000000..8e82d44 --- /dev/null +++ b/mono-reflection-make-git-snapshot.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +# Usage: ./mono-reflection-make-git-snapshot.sh [COMMIT] [DATE] +# +# to make a snapshot of the given tag/branch. Defaults to HEAD. +# Point env var REF to a local banshee repo to reduce clone time. + +if [ -z $2 ]; then + DATE=`date +%Y%m%d` +else + DATE=$2 +fi + +export DIRNAME="mono-reflection-${DATE}" + +echo REF ${REF:+--reference $REF} +echo DIRNAME ${DIRNAME} +echo HEAD ${1:-HEAD} + +rm -rf ${DIRNAME} + +git clone ${REF:+--reference $REF} \ + https://github.com/jbevain/mono.reflection.git ${DIRNAME} + +GITREV=`GIT_DIR=$DIRNAME/.git git rev-parse HEAD| cut -c1-6` + +FILENAME=${DIRNAME}git${GITREV} + +GIT_DIR=${DIRNAME}/.git git archive --format=tar --prefix=${DIRNAME}/ ${1:-HEAD} \ + | bzip2 > ${FILENAME}.tar.bz2 + +rm -rf ${DIRNAME} + +echo Generated ${FILENAME}.tar.bz2 + diff --git a/mono-reflection.pc b/mono-reflection.pc new file mode 100644 index 0000000..d3f129e --- /dev/null +++ b/mono-reflection.pc @@ -0,0 +1,8 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=@libdir@ + +Name: mono-reflection +Description: mono-reflection - Helper Library for Mono Reflection support +Version: 0.1 +Libs: -r:${libdir}/mono/Mono.Reflection/Mono.Reflection.dll diff --git a/mono-reflection.spec b/mono-reflection.spec new file mode 100644 index 0000000..b5f2e5d --- /dev/null +++ b/mono-reflection.spec @@ -0,0 +1,73 @@ +%global debug_package %{nil} +%global gitrev 304d1d +%global gitdate 20110613 + +Name: mono-reflection +Version: 0.1 +Release: 0.2.%{gitdate}git%{gitrev}%{?dist} +Summary: Helper library for Mono Reflection support +URL: https://github.com/jbevain/mono.reflection +License: MIT +Group: System Environment/Libraries +# No source tarball, source from git: +# git clone https://github.com/jbevain/mono.reflection.git +# Use ./mono-reflection-make-git-snapshot.sh script to reproduce +Source0: mono-reflection-%{gitdate}git%{gitrev}.tar.bz2 +Source1: mono-reflection.pc +Source2: mono-reflection-make-git-snapshot.sh +Patch0: mono-reflection-build.patch +BuildRequires: mono-devel + +# Mono only available on these: +ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x + +%description +Helper library for Mono Reflection support. + +%package devel +Summary: Development files for Mono.Reflection library +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: pkgconfig + +%description devel +Development files for Mono.Reflection library. + +%prep +%setup -q -n mono-reflection-%{gitdate} +%patch0 -p1 +chmod -x README +sed -i 's/\r//' README + +# Delete bundled DLL +rm -rf Test/target.dll + +%build +# Use the mono system key instead of generating our own here. +cp -a /etc/pki/mono/mono.snk Mono.Reflection.snk +make LIBDIR=%{_libdir} + +%install +mkdir -p %{buildroot}%{_libdir}/pkgconfig +cp -p %{SOURCE1} %{buildroot}%{_libdir}/pkgconfig +sed -i -e 's!@libdir@!%{_libdir}!' $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/mono-reflection.pc +mkdir -p %{buildroot}%{_libdir}/mono/gac/ +gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot}%{_libdir} + +%files +%doc README +%{_libdir}/mono/gac/Mono.Reflection/ +%{_libdir}/mono/Mono.Reflection/ + +%files devel +%{_libdir}/pkgconfig/mono-reflection.pc + +%changelog +* Mon Jun 13 2011 Tom Callaway - 0.1-0.2.20110613git304d1d +- add script to generate tarball +- correct git revision +- add fully versioned Requires for base package in subpackage +- delete prebuilt DLL during prep + +* Thu May 12 2011 Tom Callaway - 0.1-0.1.201105123git04d1df +- Initial package creation diff --git a/sources b/sources index e69de29..f245a5d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +03a957c77d90d6c737c3a60400f84b25 mono-reflection-20110613git304d1d.tar.bz2 From 184a292c3265b7aee4c7fcc4bd0cf49a3e675c3b Mon Sep 17 00:00:00 2001 From: Christian Krause Date: Sun, 13 Nov 2011 12:03:33 +0100 Subject: [PATCH 02/35] Change paths for mono assemblies according to updated packaging guidelines (http://fedoraproject.org/wiki/Packaging:Mono) --- mono-reflection.pc | 2 +- mono-reflection.spec | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/mono-reflection.pc b/mono-reflection.pc index d3f129e..423586b 100644 --- a/mono-reflection.pc +++ b/mono-reflection.pc @@ -1,6 +1,6 @@ prefix=/usr exec_prefix=${prefix} -libdir=@libdir@ +libdir=${prefix}/lib Name: mono-reflection Description: mono-reflection - Helper Library for Mono Reflection support diff --git a/mono-reflection.spec b/mono-reflection.spec index b5f2e5d..836ee32 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.2.%{gitdate}git%{gitrev}%{?dist} +Release: 0.3.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -51,18 +51,22 @@ make LIBDIR=%{_libdir} mkdir -p %{buildroot}%{_libdir}/pkgconfig cp -p %{SOURCE1} %{buildroot}%{_libdir}/pkgconfig sed -i -e 's!@libdir@!%{_libdir}!' $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/mono-reflection.pc -mkdir -p %{buildroot}%{_libdir}/mono/gac/ -gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot}%{_libdir} +mkdir -p %{buildroot}%{_prefix}/lib/mono/gac/ +gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot}%{_prefix}/lib %files %doc README -%{_libdir}/mono/gac/Mono.Reflection/ -%{_libdir}/mono/Mono.Reflection/ +%{_prefix}/lib/mono/gac/Mono.Reflection/ +%{_prefix}/lib/mono/Mono.Reflection/ %files devel %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Sun Nov 13 2011 Christian Krause - 0.1-0.3.20110613git304d1d +- Change paths for mono assemblies according to updated packaging + guidelines (http://fedoraproject.org/wiki/Packaging:Mono) + * Mon Jun 13 2011 Tom Callaway - 0.1-0.2.20110613git304d1d - add script to generate tarball - correct git revision From 4dcb2f000c08bddaf19beeabc3c8afea55c346a2 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 04:24:44 -0600 Subject: [PATCH 03/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 836ee32..8747824 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.3.%{gitdate}git%{gitrev}%{?dist} +Release: 0.4.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.1-0.4.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Sun Nov 13 2011 Christian Krause - 0.1-0.3.20110613git304d1d - Change paths for mono assemblies according to updated packaging guidelines (http://fedoraproject.org/wiki/Packaging:Mono) From 1853a154c210bce5ac2d8ce2ea14eaa873305d4a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 21:43:56 -0500 Subject: [PATCH 04/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 8747824..e4026d8 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.4.%{gitdate}git%{gitrev}%{?dist} +Release: 0.5.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Fri Jul 20 2012 Fedora Release Engineering - 0.1-0.5.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 0.1-0.4.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From e3c3088999fee7b62a52441c51e08c93f5b48212 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 01:28:04 -0600 Subject: [PATCH 05/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index e4026d8..6c0b371 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.5.%{gitdate}git%{gitrev}%{?dist} +Release: 0.6.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.1-0.6.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Fri Jul 20 2012 Fedora Release Engineering - 0.1-0.5.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From e8669afa401137500ab3330096855df62f75aa73 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 06:44:10 -0500 Subject: [PATCH 06/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 6c0b371..4618a4f 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.6.%{gitdate}git%{gitrev}%{?dist} +Release: 0.7.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.1-0.7.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 0.1-0.6.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 95fe32974edf0d4634a55236c738d07fa5554255 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 05:59:47 -0500 Subject: [PATCH 07/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 4618a4f..1592bd9 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.7.%{gitdate}git%{gitrev}%{?dist} +Release: 0.8.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.1-0.8.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 0.1-0.7.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 897ffce806330368ef5100d0e73e5c838efa8b1b Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 10:12:32 +0000 Subject: [PATCH 08/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 1592bd9..d48490c 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.8.%{gitdate}git%{gitrev}%{?dist} +Release: 0.9.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.1-0.9.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.1-0.8.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 98f7fbba1b1f076a9c8ba4a7f11f098faff9c5b1 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 May 2015 22:31:40 +0100 Subject: [PATCH 09/35] Rebuild (mono4) --- mono-reflection.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index d48490c..af966ed 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.9.%{gitdate}git%{gitrev}%{?dist} +Release: 0.10.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -19,7 +19,7 @@ Patch0: mono-reflection-build.patch BuildRequires: mono-devel # Mono only available on these: -ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x +ExclusiveArch: %mono_arches %description Helper library for Mono Reflection support. @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Mon May 18 2015 Peter Robinson 0.1-0.10.20110613git304d1d +- Rebuild (mono4) + * Sun Aug 17 2014 Fedora Release Engineering - 0.1-0.9.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From e36f4805429ce464bfc7f4311eff0dff4c377e8a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 20:59:05 +0000 Subject: [PATCH 10/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index af966ed..0506029 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.10.%{gitdate}git%{gitrev}%{?dist} +Release: 0.11.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.1-0.11.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon May 18 2015 Peter Robinson 0.1-0.10.20110613git304d1d - Rebuild (mono4) From d862026cbbbaddefabab80c5885ffb308b05f200 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 08:40:52 +0000 Subject: [PATCH 11/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 0506029..f0cf9ea 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.11.%{gitdate}git%{gitrev}%{?dist} +Release: 0.12.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.1-0.12.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 0.1-0.11.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 5aaff337b7edb74fc94266097a0c11ed953d698c Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 13 Oct 2016 15:48:54 +0100 Subject: [PATCH 12/35] - mono rebuild for aarch64 support --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index f0cf9ea..dc156a0 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.12.%{gitdate}git%{gitrev}%{?dist} +Release: 0.13.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Oct 13 2016 Fedora Release Engineering - 0.1-0.13.20110613git304d1d +- mono rebuild for aarch64 support + * Thu Feb 04 2016 Fedora Release Engineering - 0.1-0.12.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From ea76ebd668106b8d4300f600d16c3ee6cf7f85ee Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 21:39:28 +0000 Subject: [PATCH 13/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index dc156a0..d186f87 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.13.%{gitdate}git%{gitrev}%{?dist} +Release: 0.14.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.1-0.14.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Oct 13 2016 Fedora Release Engineering - 0.1-0.13.20110613git304d1d - mono rebuild for aarch64 support From 25dab4625adfdcb74a4cc0f0530e75746699f60b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 22:12:25 +0000 Subject: [PATCH 14/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index d186f87..6ce9a21 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.14.%{gitdate}git%{gitrev}%{?dist} +Release: 0.15.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.1-0.15.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 0.1-0.14.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 321c60c5fda8dd4aadeeb257de6f290124a43a55 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 03:32:28 +0000 Subject: [PATCH 15/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 6ce9a21..e2c280c 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.15.%{gitdate}git%{gitrev}%{?dist} +Release: 0.16.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.1-0.16.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.1-0.15.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 52b3bbb8a4959e01ff701f42420e000eda463d34 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 8 Feb 2018 03:10:09 +0000 Subject: [PATCH 16/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index e2c280c..e4d3b58 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.16.%{gitdate}git%{gitrev}%{?dist} +Release: 0.17.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Feb 08 2018 Fedora Release Engineering - 0.1-0.17.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.1-0.16.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From fffef5589990a4d849ab14a970deab2f1e7b976f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 10:59:02 +0000 Subject: [PATCH 17/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index e4d3b58..43bcde8 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.17.%{gitdate}git%{gitrev}%{?dist} +Release: 0.18.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -63,6 +63,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.1-0.18.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu Feb 08 2018 Fedora Release Engineering - 0.1-0.17.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From c766c322a152e3d31b379bbb713c2d2b1a7b82ff Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:55 +0100 Subject: [PATCH 18/35] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- mono-reflection.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 43bcde8..880ba08 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -8,7 +8,6 @@ Release: 0.18.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT -Group: System Environment/Libraries # No source tarball, source from git: # git clone https://github.com/jbevain/mono.reflection.git # Use ./mono-reflection-make-git-snapshot.sh script to reproduce @@ -26,7 +25,6 @@ Helper library for Mono Reflection support. %package devel Summary: Development files for Mono.Reflection library -Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig From 771b13de75f79f98465773ee2ac841801989500d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 11:24:46 +0000 Subject: [PATCH 19/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 880ba08..b714008 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.18.%{gitdate}git%{gitrev}%{?dist} +Release: 0.19.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -61,6 +61,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.1-0.19.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.1-0.18.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 123bb23aa2cd828b4c20bb4d69972e6dd55c4d94 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 17:38:33 +0000 Subject: [PATCH 20/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index b714008..777cf01 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.19.%{gitdate}git%{gitrev}%{?dist} +Release: 0.20.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -61,6 +61,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.1-0.20.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 0.1-0.19.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 9dacf052127c57d192ecee701a73fc9bee0fd5ce Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 13:58:45 +0000 Subject: [PATCH 21/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 777cf01..32bff85 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.20.%{gitdate}git%{gitrev}%{?dist} +Release: 0.21.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -61,6 +61,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.1-0.21.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 0.1-0.20.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 58a3460bc8f2217c4b625ab147b05e26a4a3c771 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 08:23:26 +0000 Subject: [PATCH 22/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 32bff85..9738d71 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.21.%{gitdate}git%{gitrev}%{?dist} +Release: 0.22.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -61,6 +61,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.1-0.22.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 0.1-0.21.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 8d785fa4036caf047e1be26289e3e2ac11e7d781 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Thu, 7 Jan 2021 01:57:50 +0000 Subject: [PATCH 23/35] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- mono-reflection.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/mono-reflection.spec b/mono-reflection.spec index 9738d71..a6e84ef 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -15,6 +15,7 @@ Source0: mono-reflection-%{gitdate}git%{gitrev}.tar.bz2 Source1: mono-reflection.pc Source2: mono-reflection-make-git-snapshot.sh Patch0: mono-reflection-build.patch +BuildRequires: make BuildRequires: mono-devel # Mono only available on these: From dc8186f7f64ed80062fd1f6eb41e8cd19520be28 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 20:46:15 +0000 Subject: [PATCH 24/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index a6e84ef..d1398a7 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.22.%{gitdate}git%{gitrev}%{?dist} +Release: 0.23.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.1-0.23.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 0.1-0.22.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 75711b5d5c221c11cb8c68c4c30214d5c8f75cb8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 15:19:46 +0000 Subject: [PATCH 25/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index d1398a7..77cd562 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.23.%{gitdate}git%{gitrev}%{?dist} +Release: 0.24.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.1-0.24.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.1-0.23.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 9e8082e85cb0cea098bd15bf12a538e2ae65fb3b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 20:22:11 +0000 Subject: [PATCH 26/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 77cd562..b9ef789 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.24.%{gitdate}git%{gitrev}%{?dist} +Release: 0.25.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.1-0.25.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.1-0.24.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 06b8e4e4b455c47c34291423bb4161ee0d392735 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 23:41:15 +0000 Subject: [PATCH 27/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index b9ef789..bed7613 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.25.%{gitdate}git%{gitrev}%{?dist} +Release: 0.26.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.1-0.26.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jan 20 2022 Fedora Release Engineering - 0.1-0.25.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 1320e8bb049156ee6f12b798ee267eb2106b11cb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 20:40:31 +0000 Subject: [PATCH 28/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index bed7613..8921862 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.26.%{gitdate}git%{gitrev}%{?dist} +Release: 0.27.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 0.1-0.27.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Thu Jul 21 2022 Fedora Release Engineering - 0.1-0.26.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 3c7a4adf5bc064087d062f2777242dd18aa33fc9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 15:44:49 +0000 Subject: [PATCH 29/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 8921862..b0b19e8 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.27.%{gitdate}git%{gitrev}%{?dist} +Release: 0.28.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 0.1-0.28.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jan 19 2023 Fedora Release Engineering - 0.1-0.27.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 2b6d250c6ad15d0567ee69697c1897ff34a48783 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 08:35:51 +0000 Subject: [PATCH 30/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index b0b19e8..46a98f0 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.28.%{gitdate}git%{gitrev}%{?dist} +Release: 0.29.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 0.1-0.29.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Jul 20 2023 Fedora Release Engineering - 0.1-0.28.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 9ff11e9b6a13de1713c362f5b111821f213f5737 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 07:58:44 +0000 Subject: [PATCH 31/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 46a98f0..76e3455 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.29.%{gitdate}git%{gitrev}%{?dist} +Release: 0.30.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 0.1-0.30.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 0.1-0.29.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 0dd492abe13e1cbaf16fbc16ffe50619e19fd80a Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:47 +0200 Subject: [PATCH 32/35] Eliminate use of obsolete %patchN syntax (#2283636) --- mono-reflection.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 76e3455..2775d18 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -34,7 +34,7 @@ Development files for Mono.Reflection library. %prep %setup -q -n mono-reflection-%{gitdate} -%patch0 -p1 +%patch -P0 -p1 chmod -x README sed -i 's/\r//' README From 62cc4d68967a484889c40557e17d87fc2ff9fdb7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 18:36:13 +0000 Subject: [PATCH 33/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 2775d18..19d9846 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.30.%{gitdate}git%{gitrev}%{?dist} +Release: 0.31.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jul 18 2024 Fedora Release Engineering - 0.1-0.31.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Jan 25 2024 Fedora Release Engineering - 0.1-0.30.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 4be3a870fe59a28c007c57512dae5a76903d550d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 19:02:42 +0000 Subject: [PATCH 34/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index 19d9846..d387828 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.31.%{gitdate}git%{gitrev}%{?dist} +Release: 0.32.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Fri Jan 17 2025 Fedora Release Engineering - 0.1-0.32.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Jul 18 2024 Fedora Release Engineering - 0.1-0.31.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 2a696955fa23eedd287ea19b74665fd2eaf2a5c9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 22:19:06 +0000 Subject: [PATCH 35/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- mono-reflection.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mono-reflection.spec b/mono-reflection.spec index d387828..65cee6f 100644 --- a/mono-reflection.spec +++ b/mono-reflection.spec @@ -4,7 +4,7 @@ Name: mono-reflection Version: 0.1 -Release: 0.32.%{gitdate}git%{gitrev}%{?dist} +Release: 0.33.%{gitdate}git%{gitrev}%{?dist} Summary: Helper library for Mono Reflection support URL: https://github.com/jbevain/mono.reflection License: MIT @@ -62,6 +62,9 @@ gacutil -i bin/Mono.Reflection.dll -f -package Mono.Reflection -root %{buildroot %{_libdir}/pkgconfig/mono-reflection.pc %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 0.1-0.33.20110613git304d1d +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jan 17 2025 Fedora Release Engineering - 0.1-0.32.20110613git304d1d - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild