From 08a1f192731af80f74bd8fdbfb91bf1023ace0da Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Sep 2012 16:11:41 +0000 Subject: [PATCH 01/57] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 6a12a4b1ae44217be98a819ae024758e371bbe55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Sun, 23 Sep 2012 21:18:01 +0200 Subject: [PATCH 02/57] initial srpm import --- .gitignore | 1 + girara.spec | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 84 insertions(+) create mode 100644 girara.spec diff --git a/.gitignore b/.gitignore index e69de29..8e0bfec 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/girara-0.1.3.tar.gz diff --git a/girara.spec b/girara.spec new file mode 100644 index 0000000..c369966 --- /dev/null +++ b/girara.spec @@ -0,0 +1,82 @@ +Name: girara +Version: 0.1.3 +Release: 6%{?dist} +Summary: Simple user interface library +Group: Development/Libraries +License: zlib +URL: http://pwmt.org/projects/girara/ +Source0: http://pwmt.org/projects/girara/download/%{name}-%{version}.tar.gz +BuildRequires: gtk2-devel gettext + + +%description +Girara is a library that implements a user interface that focuses on simplicity +and minimalism. + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} + + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q + + +%build +CFLAGS='%{optflags}' make %{?_smp_mflags} + + +%install +make install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} +chmod +x $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.so.1.0 +# fcami - I wish upstream used a consistent naming scheme +%find_lang lib%{name}-gtk2-1 +mv lib%{name}-gtk2-1.lang %{name}.lang + + +%files -f %{name}.lang +%doc AUTHORS LICENSE README +%{_libdir}/libgirara-gtk?.so.1 +%{_libdir}/libgirara-gtk?.so.1.0 + + +%files devel +%{_includedir}/%{name}/*.h +%{_libdir}/pkgconfig/girara-gtk2.pc +%{_libdir}/libgirara-gtk?.so +%{_libdir}/libgirara-gtk?.a + + +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + +%changelog +* Sun Aug 21 2012 François Cami - 0.1.3-6 +- really remove EL5-specific stuff (thanks to Mario B) + +* Sun Aug 21 2012 François Cami - 0.1.3-5 +- make -devel really depend on base package. (thanks to Mario B). +- remove el5 compatibility. + +* Sun Aug 19 2012 François Cami - 0.1.3-4 +- remove LICENSE from -devel; fix debuginfo (thanks to Mario B). + +* Sun Aug 12 2012 François Cami - 0.1.3-3 +- BuildRequires fixes suggested by Dennis Johnson. + +* Sat Aug 11 2012 François Cami - 0.1.3-2 +- fixes suggested by Mario Blättermann. + +* Fri Aug 10 2012 François Cami - 0.1.3-1 +- initial package, needed for zathura. + diff --git a/sources b/sources index e69de29..7258df2 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +61b2a564c1b79b1b831a8bf517d4644e girara-0.1.3.tar.gz From 192e41c590cd6545aadc4319d81b75d508c814ca Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 5 Nov 2012 08:38:10 -0700 Subject: [PATCH 03/57] Update to 0.1.4 --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8e0bfec..fe3dce1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /girara-0.1.3.tar.gz +/girara-0.1.4.tar.gz diff --git a/girara.spec b/girara.spec index c369966..b310740 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.1.3 -Release: 6%{?dist} +Version: 0.1.4 +Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -61,6 +61,9 @@ mv lib%{name}-gtk2-1.lang %{name}.lang %changelog +* Mon Nov 05 2012 Kevin Fenzi 0.1.4-1 +- Update to 0.1.4 + * Sun Aug 21 2012 François Cami - 0.1.3-6 - really remove EL5-specific stuff (thanks to Mario B) diff --git a/sources b/sources index 7258df2..934b479 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -61b2a564c1b79b1b831a8bf517d4644e girara-0.1.3.tar.gz +f348fbe96ceda4a89142cec92de08d25 girara-0.1.4.tar.gz From cf16ecb42a7541b5ae8bb2b7ff23bcd1646317f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Tue, 27 Nov 2012 22:14:57 +0100 Subject: [PATCH 04/57] fix 863049 --- girara.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/girara.spec b/girara.spec index b310740..f6b2417 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -39,6 +39,7 @@ chmod +x $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.so.1.0 # fcami - I wish upstream used a consistent naming scheme %find_lang lib%{name}-gtk2-1 mv lib%{name}-gtk2-1.lang %{name}.lang +rm -f $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.a %files -f %{name}.lang @@ -51,7 +52,6 @@ mv lib%{name}-gtk2-1.lang %{name}.lang %{_includedir}/%{name}/*.h %{_libdir}/pkgconfig/girara-gtk2.pc %{_libdir}/libgirara-gtk?.so -%{_libdir}/libgirara-gtk?.a %post -p /sbin/ldconfig @@ -61,6 +61,9 @@ mv lib%{name}-gtk2-1.lang %{name}.lang %changelog +* Tue Nov 27 2012 François Cami - 0.1.4-2 +- remove static library [863049] + * Mon Nov 05 2012 Kevin Fenzi 0.1.4-1 - Update to 0.1.4 From 31f73abaa0657570f2b26e7a4b7603f9ba9b593e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 17:28:02 -0600 Subject: [PATCH 05/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index f6b2417..8202fef 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.1.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -61,6 +61,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.a %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 0.1.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Tue Nov 27 2012 François Cami - 0.1.4-2 - remove static library [863049] From 19c9dfade58da36190972c0e36e0c00dbf2d6fcf Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 22 Feb 2013 11:07:46 -0700 Subject: [PATCH 06/57] Update to 0.1.5 --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fe3dce1..c2c2973 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /girara-0.1.3.tar.gz /girara-0.1.4.tar.gz +/girara-0.1.5.tar.gz diff --git a/girara.spec b/girara.spec index 8202fef..47704a8 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.1.4 -Release: 3%{?dist} +Version: 0.1.5 +Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -61,6 +61,9 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.a %changelog +* Fri Feb 22 2013 Kevin Fenzi 0.1.5-1 +- Update to 0.1.5 + * Wed Feb 13 2013 Fedora Release Engineering - 0.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index 934b479..e944a59 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f348fbe96ceda4a89142cec92de08d25 girara-0.1.4.tar.gz +fe725fd935c85657008c18bb07c671d4 girara-0.1.5.tar.gz From 68babbdacfb96c81c093c076491bb0ad9d9c8e3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 21 May 2013 16:35:20 +0200 Subject: [PATCH 07/57] 0.1.6 bump, 1.1 soname bump - Fix bogus dates in changelog - Use more macros --- .gitignore | 1 + girara.spec | 35 ++++++++++++++--------------------- sources | 2 +- 3 files changed, 16 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index c2c2973..b3b5962 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /girara-0.1.3.tar.gz /girara-0.1.4.tar.gz /girara-0.1.5.tar.gz +/girara-0.1.6.tar.gz diff --git a/girara.spec b/girara.spec index 47704a8..1b8ed6c 100644 --- a/girara.spec +++ b/girara.spec @@ -1,66 +1,59 @@ Name: girara -Version: 0.1.5 +Version: 0.1.6 Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib -URL: http://pwmt.org/projects/girara/ -Source0: http://pwmt.org/projects/girara/download/%{name}-%{version}.tar.gz +URL: http://pwmt.org/projects/%{name}/ +Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz BuildRequires: gtk2-devel gettext - %description Girara is a library that implements a user interface that focuses on simplicity and minimalism. - %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} - %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. - %prep %setup -q - %build CFLAGS='%{optflags}' make %{?_smp_mflags} - %install -make install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} -chmod +x $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.so.1.0 +make install DESTDIR=%{buildroot} LIBDIR=%{_libdir} +chmod +x %{buildroot}/%{_libdir}/libgirara-gtk?.so.1.1 # fcami - I wish upstream used a consistent naming scheme %find_lang lib%{name}-gtk2-1 mv lib%{name}-gtk2-1.lang %{name}.lang -rm -f $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.a - +rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %files -f %{name}.lang %doc AUTHORS LICENSE README -%{_libdir}/libgirara-gtk?.so.1 -%{_libdir}/libgirara-gtk?.so.1.0 - +%{_libdir}/libgirara-gtk?.so.* %files devel %{_includedir}/%{name}/*.h %{_libdir}/pkgconfig/girara-gtk2.pc %{_libdir}/libgirara-gtk?.so - %post -p /sbin/ldconfig - %postun -p /sbin/ldconfig - %changelog +* Tue May 21 2013 Petr Šabata - 0.1.6-1 +- 0.1.6 bump, 1.1 soname bump +- Fix bogus dates in changelog +- Use more macros + * Fri Feb 22 2013 Kevin Fenzi 0.1.5-1 - Update to 0.1.5 @@ -73,10 +66,10 @@ rm -f $RPM_BUILD_ROOT/%{_libdir}/libgirara-gtk?.a * Mon Nov 05 2012 Kevin Fenzi 0.1.4-1 - Update to 0.1.4 -* Sun Aug 21 2012 François Cami - 0.1.3-6 +* Tue Aug 21 2012 François Cami - 0.1.3-6 - really remove EL5-specific stuff (thanks to Mario B) -* Sun Aug 21 2012 François Cami - 0.1.3-5 +* Tue Aug 21 2012 François Cami - 0.1.3-5 - make -devel really depend on base package. (thanks to Mario B). - remove el5 compatibility. diff --git a/sources b/sources index e944a59..d6068da 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fe725fd935c85657008c18bb07c671d4 girara-0.1.5.tar.gz +1f213274fc710a5f9693d0d61f9ea66d girara-0.1.6.tar.gz From 9d473444200305881d4a5bfc0fc715e46c0d0987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 29 May 2013 15:50:05 +0200 Subject: [PATCH 08/57] Revision bump for f19 updates --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 1b8ed6c..ba25d35 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.1.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed May 29 2013 Petr Šabata - 0.1.6-2 +- Revision bump for f19 updates + * Tue May 21 2013 Petr Šabata - 0.1.6-1 - 0.1.6 bump, 1.1 soname bump - Fix bogus dates in changelog From 210c371aee6a21a8a726f263fe4597f0724e15a4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 09:23:44 -0500 Subject: [PATCH 09/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index ba25d35..ecc04a8 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.1.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.1.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed May 29 2013 Petr Šabata - 0.1.6-2 - Revision bump for f19 updates From 8034b7db31f39132fa267797888884dd7eebb3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Sat, 31 Aug 2013 23:42:18 +0200 Subject: [PATCH 10/57] update to 0.1.7 --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b3b5962..1667ac8 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /girara-0.1.4.tar.gz /girara-0.1.5.tar.gz /girara-0.1.6.tar.gz +/girara-0.1.7.tar.gz diff --git a/girara.spec b/girara.spec index ecc04a8..d09de36 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.1.6 -Release: 3%{?dist} +Version: 0.1.7 +Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sat Aug 31 2013 François Cami - 0.1.7-1 +- Update to latest upstream. + * Sat Aug 03 2013 Fedora Release Engineering - 0.1.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild diff --git a/sources b/sources index d6068da..1c9ccc8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1f213274fc710a5f9693d0d61f9ea66d girara-0.1.6.tar.gz +ff73bf26b56cdc28a4a2dcce46f4aa20 girara-0.1.7.tar.gz From d165d29d34de7e21b31d9402f3341c59a4be38a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Sat, 28 Dec 2013 14:10:18 +0100 Subject: [PATCH 11/57] update to 0.1.9 --- .gitignore | 1 + girara.spec | 9 ++++++++- sources | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1667ac8..fcf8dfc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /girara-0.1.5.tar.gz /girara-0.1.6.tar.gz /girara-0.1.7.tar.gz +/girara-0.1.9.tar.gz diff --git a/girara.spec b/girara.spec index d09de36..e299b12 100644 --- a/girara.spec +++ b/girara.spec @@ -1,5 +1,5 @@ Name: girara -Version: 0.1.7 +Version: 0.1.9 Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries @@ -25,6 +25,9 @@ developing applications that use %{name}. %setup -q %build +# enforce gtk2 +sed -i -e 's/^GIRARA_GTK_VERSION.*/GIRARA_GTK_VERSION ?= 2/g' config.mk +# build CFLAGS='%{optflags}' make %{?_smp_mflags} %install @@ -49,6 +52,10 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sat Dec 28 2013 François Cami - 0.1.9-1 +- Update to latest upstream. +- Enforce building against gtk2 for now. + * Sat Aug 31 2013 François Cami - 0.1.7-1 - Update to latest upstream. diff --git a/sources b/sources index 1c9ccc8..1e480fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ff73bf26b56cdc28a4a2dcce46f4aa20 girara-0.1.7.tar.gz +0b51fc07b5763b506d46598576e5576e girara-0.1.9.tar.gz From 28bded049243449c76b067b343f9668ab4ef1ff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Wed, 5 Mar 2014 23:40:29 +0100 Subject: [PATCH 12/57] update to 0.2.0 --- .gitignore | 1 + girara.spec | 16 ++++++++-------- sources | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index fcf8dfc..cdc1446 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /girara-0.1.6.tar.gz /girara-0.1.7.tar.gz /girara-0.1.9.tar.gz +/girara-0.2.0.tar.gz diff --git a/girara.spec b/girara.spec index e299b12..f77f301 100644 --- a/girara.spec +++ b/girara.spec @@ -1,12 +1,12 @@ Name: girara -Version: 0.1.9 +Version: 0.2.0 Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib URL: http://pwmt.org/projects/%{name}/ Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz -BuildRequires: gtk2-devel gettext +BuildRequires: gtk3-devel gettext %description Girara is a library that implements a user interface that focuses on simplicity @@ -25,17 +25,14 @@ developing applications that use %{name}. %setup -q %build -# enforce gtk2 -sed -i -e 's/^GIRARA_GTK_VERSION.*/GIRARA_GTK_VERSION ?= 2/g' config.mk -# build CFLAGS='%{optflags}' make %{?_smp_mflags} %install make install DESTDIR=%{buildroot} LIBDIR=%{_libdir} chmod +x %{buildroot}/%{_libdir}/libgirara-gtk?.so.1.1 # fcami - I wish upstream used a consistent naming scheme -%find_lang lib%{name}-gtk2-1 -mv lib%{name}-gtk2-1.lang %{name}.lang +%find_lang lib%{name}-gtk3-1 +mv lib%{name}-gtk3-1.lang %{name}.lang rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %files -f %{name}.lang @@ -44,7 +41,7 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %files devel %{_includedir}/%{name}/*.h -%{_libdir}/pkgconfig/girara-gtk2.pc +%{_libdir}/pkgconfig/girara-gtk3.pc %{_libdir}/libgirara-gtk?.so %post -p /sbin/ldconfig @@ -52,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed Mar 05 2014 François Cami - 0.2.0-1 +* Update to 0.2.0 and switch to gtk3. + * Sat Dec 28 2013 François Cami - 0.1.9-1 - Update to latest upstream. - Enforce building against gtk2 for now. diff --git a/sources b/sources index 1e480fb..9ae5b43 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0b51fc07b5763b506d46598576e5576e girara-0.1.9.tar.gz +cb965af58bc435f356296e62629716f5 girara-0.2.0.tar.gz From 3e844c303d6dc5e7cbd5cbdaff2ab736b5ec1a3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Sun, 23 Mar 2014 15:17:00 +0100 Subject: [PATCH 13/57] bump release --- girara.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/girara.spec b/girara.spec index f77f301..b0e9cbe 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,8 +49,11 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sun Mar 23 2014 François Cami - 0.2.0-2 +- Gratuitous release bump. + * Wed Mar 05 2014 François Cami - 0.2.0-1 -* Update to 0.2.0 and switch to gtk3. +- Update to 0.2.0 and switch to gtk3. * Sat Dec 28 2013 François Cami - 0.1.9-1 - Update to latest upstream. From 7c173071aeffebb63f4374e5449575b01b930b2a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 10:47:20 -0500 Subject: [PATCH 14/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index b0e9cbe..a5a6631 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Mar 23 2014 François Cami - 0.2.0-2 - Gratuitous release bump. From 929f2e4e80c88da611b36a3650bc809c6f02dbb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Thu, 26 Jun 2014 14:10:28 +0200 Subject: [PATCH 15/57] 0.2.2 bump - Introduce libnotify support --- .gitignore | 1 + girara.spec | 12 ++++++++---- sources | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index cdc1446..99a3be8 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /girara-0.1.7.tar.gz /girara-0.1.9.tar.gz /girara-0.2.0.tar.gz +/girara-0.2.2.tar.gz diff --git a/girara.spec b/girara.spec index a5a6631..44da589 100644 --- a/girara.spec +++ b/girara.spec @@ -1,12 +1,12 @@ Name: girara -Version: 0.2.0 -Release: 3%{?dist} +Version: 0.2.2 +Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib URL: http://pwmt.org/projects/%{name}/ Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz -BuildRequires: gtk3-devel gettext +BuildRequires: gtk3-devel gettext libnotify-devel %description Girara is a library that implements a user interface that focuses on simplicity @@ -41,7 +41,7 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %files devel %{_includedir}/%{name}/*.h -%{_libdir}/pkgconfig/girara-gtk3.pc +%{_libdir}/pkgconfig/girara-gtk?.pc %{_libdir}/libgirara-gtk?.so %post -p /sbin/ldconfig @@ -49,6 +49,10 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Thu Jun 26 2014 Petr Šabata - 0.2.2-1 +- 0.2.2 bump +- Introduce libnotify support + * Sat Jun 07 2014 Fedora Release Engineering - 0.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild diff --git a/sources b/sources index 9ae5b43..c97e237 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cb965af58bc435f356296e62629716f5 girara-0.2.0.tar.gz +678b0fb6f22d88ba4c29297c67685c50 girara-0.2.2.tar.gz From eeec812f52823b07323159f0f0d65008634e0518 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 16:30:09 +0000 Subject: [PATCH 16/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 44da589..e07ceea 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 0.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Thu Jun 26 2014 Petr Šabata - 0.2.2-1 - 0.2.2 bump - Introduce libnotify support From d81c296cf783c90be04e4518d600b9bae7ae6afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 17 Oct 2014 14:49:18 +0200 Subject: [PATCH 17/57] 0.2.3 bump --- .gitignore | 1 + girara.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 99a3be8..a1957a5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /girara-0.1.9.tar.gz /girara-0.2.0.tar.gz /girara-0.2.2.tar.gz +/girara-0.2.3.tar.gz diff --git a/girara.spec b/girara.spec index e07ceea..1318a84 100644 --- a/girara.spec +++ b/girara.spec @@ -1,12 +1,12 @@ Name: girara -Version: 0.2.2 -Release: 2%{?dist} +Version: 0.2.3 +Release: 1%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib URL: http://pwmt.org/projects/%{name}/ Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz -BuildRequires: gtk3-devel gettext libnotify-devel +BuildRequires: gtk3-devel gettext libnotify-devel glib2-devel %description Girara is a library that implements a user interface that focuses on simplicity @@ -49,6 +49,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Fri Oct 17 2014 Petr Šabata - 0.2.3-1 +- 0.2.3 bump + * Sat Aug 16 2014 Fedora Release Engineering - 0.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index c97e237..9071dda 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -678b0fb6f22d88ba4c29297c67685c50 girara-0.2.2.tar.gz +08463b087ba3ad28c38438b2cf716795 girara-0.2.3.tar.gz From 23b06f4e28b086a467b89e46c8cf4083178d34cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 31 Oct 2014 09:51:19 +0100 Subject: [PATCH 18/57] Release bump for the f21 override; needed for zathura 0.3.1 The update previous update is blocked by f21 freeze and the override cannot be reenabled --- girara.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 1318a84..0c7147e 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library Group: Development/Libraries License: zlib @@ -49,6 +49,11 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Fri Oct 31 2014 Petr Šabata - 0.2.3-2 +- Release bump for the f21 override; needed for zathura 0.3.1 + The update previous update is blocked by f21 freeze and the override + cannot be reenabled + * Fri Oct 17 2014 Petr Šabata - 0.2.3-1 - 0.2.3 bump From 2d09c42add5ae11fb0b39a9671d61c29385ad8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 10 Jun 2015 10:34:53 +0200 Subject: [PATCH 19/57] 0.2.4 bump, soname changed to 2.0 - Fix the dep list, install LICENSE with the %license macro --- .gitignore | 1 + girara.spec | 46 ++++++++++++++++++++++++++++++---------------- sources | 2 +- 3 files changed, 32 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index a1957a5..d4f261e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /girara-0.2.0.tar.gz /girara-0.2.2.tar.gz /girara-0.2.3.tar.gz +/girara-0.2.4.tar.gz diff --git a/girara.spec b/girara.spec index 0c7147e..21f351d 100644 --- a/girara.spec +++ b/girara.spec @@ -1,21 +1,30 @@ -Name: girara -Version: 0.2.3 -Release: 2%{?dist} -Summary: Simple user interface library -Group: Development/Libraries -License: zlib -URL: http://pwmt.org/projects/%{name}/ -Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz -BuildRequires: gtk3-devel gettext libnotify-devel glib2-devel +Name: girara +Version: 0.2.4 +Release: 1%{?dist} +Summary: Simple user interface library +License: zlib +URL: http://pwmt.org/projects/%{name}/ +Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz +BuildRequires: binutils +BuildRequires: coreutils +BuildRequires: gcc +BuildRequires: gettext +BuildRequires: make +BuildRequires: pkgconfig +BuildRequires: pkgconfig(glib-2.0) +BuildRequires: pkgconfig(gtk+-3.0) +BuildRequires: pkgconfig(json-c) +BuildRequires: pkgconfig(libnotify) +Requires(post): glibc +Requires(postun): glibc %description Girara is a library that implements a user interface that focuses on simplicity and minimalism. %package devel -Summary: Development files for %{name} -Group: Development/Libraries -Requires: %{name}%{?_isa} = %{version}-%{release} +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} %description devel The %{name}-devel package contains libraries and header files for @@ -29,14 +38,15 @@ CFLAGS='%{optflags}' make %{?_smp_mflags} %install make install DESTDIR=%{buildroot} LIBDIR=%{_libdir} -chmod +x %{buildroot}/%{_libdir}/libgirara-gtk?.so.1.1 +chmod +x %{buildroot}/%{_libdir}/libgirara-gtk?.so.2.0 # fcami - I wish upstream used a consistent naming scheme -%find_lang lib%{name}-gtk3-1 -mv lib%{name}-gtk3-1.lang %{name}.lang +%find_lang lib%{name}-gtk3-2 +mv lib%{name}-gtk3-2.lang %{name}.lang rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %files -f %{name}.lang -%doc AUTHORS LICENSE README +%license LICENSE +%doc AUTHORS README %{_libdir}/libgirara-gtk?.so.* %files devel @@ -49,6 +59,10 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Tue Jun 09 2015 Petr Šabata - 0.2.4-1 +- 0.2.4 bump, soname changed to 2.0 +- Fix the dep list, install LICENSE with the %%license macro + * Fri Oct 31 2014 Petr Šabata - 0.2.3-2 - Release bump for the f21 override; needed for zathura 0.3.1 The update previous update is blocked by f21 freeze and the override diff --git a/sources b/sources index 9071dda..42803c7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -08463b087ba3ad28c38438b2cf716795 girara-0.2.3.tar.gz +f22a75b51cf88f241096e230985f28db girara-0.2.4.tar.gz From 6b71fcc6908b95b344fa04514107115f9ff2ab1f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 08:14:12 +0000 Subject: [PATCH 20/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 21f351d..bbcb86e 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Tue Jun 09 2015 Petr Šabata - 0.2.4-1 - 0.2.4 bump, soname changed to 2.0 - Fix the dep list, install LICENSE with the %%license macro From 1ca3b3b31c13089094b532de30be2c209b669c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Mon, 21 Dec 2015 14:59:59 +0100 Subject: [PATCH 21/57] 0.2.5 bump --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d4f261e..6a95f27 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /girara-0.2.2.tar.gz /girara-0.2.3.tar.gz /girara-0.2.4.tar.gz +/girara-0.2.5.tar.gz diff --git a/girara.spec b/girara.spec index bbcb86e..7dc6003 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.2.4 -Release: 2%{?dist} +Version: 0.2.5 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Mon Dec 21 2015 Petr Šabata - 0.2.5-1 +- 0.2.5 bump + * Wed Jun 17 2015 Fedora Release Engineering - 0.2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 42803c7..f2387ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f22a75b51cf88f241096e230985f28db girara-0.2.4.tar.gz +4c4d86cf1372e6e1947cbc438e452c08 girara-0.2.5.tar.gz From e8419c9780e42e4a7b0899e206adcca05e12c904 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 21:55:10 +0000 Subject: [PATCH 22/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 7dc6003..82defab 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 0.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Mon Dec 21 2015 Petr Šabata - 0.2.5-1 - 0.2.5 bump From 761ecaf4d4f7a97506395e3cf53a32a8e22a9688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 19 Apr 2016 14:57:36 -0400 Subject: [PATCH 23/57] 0.2.6 bump --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6a95f27..72c738c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /girara-0.2.3.tar.gz /girara-0.2.4.tar.gz /girara-0.2.5.tar.gz +/girara-0.2.6.tar.gz diff --git a/girara.spec b/girara.spec index 82defab..6839fb9 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.2.5 -Release: 2%{?dist} +Version: 0.2.6 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Tue Apr 19 2016 Petr Šabata - 0.2.6-1 +- 0.2.6 bump + * Wed Feb 03 2016 Fedora Release Engineering - 0.2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index f2387ae..8e7a38d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4c4d86cf1372e6e1947cbc438e452c08 girara-0.2.5.tar.gz +99900fc6bfb769a2cc76c234000a64d7 girara-0.2.6.tar.gz From 0eb466634cfb3245ad63a56292732ac28e8e3e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Sun, 15 Jan 2017 16:17:40 +0100 Subject: [PATCH 24/57] 0.2.7 bump --- .gitignore | 1 + girara.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 72c738c..220ff47 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /girara-0.2.4.tar.gz /girara-0.2.5.tar.gz /girara-0.2.6.tar.gz +/girara-0.2.7.tar.gz diff --git a/girara.spec b/girara.spec index 6839fb9..821bf96 100644 --- a/girara.spec +++ b/girara.spec @@ -1,5 +1,5 @@ Name: girara -Version: 0.2.6 +Version: 0.2.7 Release: 1%{?dist} Summary: Simple user interface library License: zlib @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sun Jan 15 2017 Petr Šabata - 0.2.7-1 +- 0.2.7 bump + * Tue Apr 19 2016 Petr Šabata - 0.2.6-1 - 0.2.6 bump diff --git a/sources b/sources index 8e7a38d..c1c9092 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -99900fc6bfb769a2cc76c234000a64d7 girara-0.2.6.tar.gz +SHA512 (girara-0.2.7.tar.gz) = 4229565b8a5fad1ecbf42e4f3f852644964a7d5c90154dab9b7dcb5ccd5f25731911452472bbeb28927d1e30d4df6ed066926e11c6a73f0fd5740570493a036f From d80750f457ba27fa0f17706176d0dbbe0db91f65 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 10:59:09 +0000 Subject: [PATCH 25/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 821bf96..9ae6e85 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.2.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sun Jan 15 2017 Petr Šabata - 0.2.7-1 - 0.2.7 bump From fb5fa6c9d2577377564e5f41f854b6272b748e6c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 10:09:42 +0000 Subject: [PATCH 26/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 9ae6e85..ad350fd 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 0.2.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 301fe063c2eaafa1913f138d7365a31707c91b9a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 21:42:44 +0000 Subject: [PATCH 27/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index ad350fd..bb21fad 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 0.2.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.2.7-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 82309d66988df8df861f5de0614decae66e7874b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sun, 10 Dec 2017 20:50:35 +0100 Subject: [PATCH 28/57] Rebuilt for libjson-c.so.3 --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index bb21fad..dee37f4 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Sun Dec 10 2017 Björn Esser - 0.2.7-5 +- Rebuilt for libjson-c.so.3 + * Wed Aug 02 2017 Fedora Release Engineering - 0.2.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 8cc3566b753ef248a18c719d2e3083cf29a772fa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:33:33 +0000 Subject: [PATCH 29/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index dee37f4..cbfd6b5 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.2.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Sun Dec 10 2017 Björn Esser - 0.2.7-5 - Rebuilt for libjson-c.so.3 From 6bcd0506458e96bdae71c3ef76ad96e448012ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Tue, 6 Mar 2018 15:15:24 +0100 Subject: [PATCH 30/57] Rebuilt for libjson-c.so.4 (json-c v0.13.1) --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index cbfd6b5..3abad48 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.2.7 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -59,6 +59,9 @@ rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a %postun -p /sbin/ldconfig %changelog +* Tue Mar 06 2018 Björn Esser - 0.2.7-7 +- Rebuilt for libjson-c.so.4 (json-c v0.13.1) + * Wed Feb 07 2018 Fedora Release Engineering - 0.2.7-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From c7cf06b30e9573ad007eff501dd574827a492165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Tue, 10 Apr 2018 21:56:57 +0200 Subject: [PATCH 31/57] 0.2.9 bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Šabata --- .gitignore | 1 + girara.spec | 53 +++++++++++++++++++++++++---------------------------- sources | 2 +- 3 files changed, 27 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 220ff47..3314d92 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /girara-0.2.5.tar.gz /girara-0.2.6.tar.gz /girara-0.2.7.tar.gz +/girara-0.2.9.tar.xz diff --git a/girara.spec b/girara.spec index 3abad48..9a586a7 100644 --- a/girara.spec +++ b/girara.spec @@ -1,22 +1,21 @@ Name: girara -Version: 0.2.7 -Release: 7%{?dist} +Version: 0.2.9 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ -Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.gz +Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.xz BuildRequires: binutils -BuildRequires: coreutils BuildRequires: gcc BuildRequires: gettext -BuildRequires: make -BuildRequires: pkgconfig -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(json-c) -BuildRequires: pkgconfig(libnotify) -Requires(post): glibc -Requires(postun): glibc +BuildRequires: glib2-devel >= 2.50 +BuildRequires: gtk3-devel >= 3.20 +BuildRequires: intltool +BuildRequires: json-c-devel +BuildRequires: libnotify-devel +BuildRequires: meson >= 0.43 + +%global girara_locales lib%{name}-gtk3-3 %description Girara is a library that implements a user interface that focuses on simplicity @@ -34,31 +33,29 @@ developing applications that use %{name}. %setup -q %build -CFLAGS='%{optflags}' make %{?_smp_mflags} +%meson +%meson_build %install -make install DESTDIR=%{buildroot} LIBDIR=%{_libdir} -chmod +x %{buildroot}/%{_libdir}/libgirara-gtk?.so.2.0 -# fcami - I wish upstream used a consistent naming scheme -%find_lang lib%{name}-gtk3-2 -mv lib%{name}-gtk3-2.lang %{name}.lang -rm -f %{buildroot}/%{_libdir}/libgirara-gtk?.a - -%files -f %{name}.lang +%meson_install +%find_lang %{girara_locales} + +%files -f %{girara_locales}.lang %license LICENSE %doc AUTHORS README -%{_libdir}/libgirara-gtk?.so.* +%{_libdir}/libgirara-gtk3.so.* %files devel %{_includedir}/%{name}/*.h -%{_libdir}/pkgconfig/girara-gtk?.pc -%{_libdir}/libgirara-gtk?.so - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%{_libdir}/pkgconfig/girara-gtk3.pc +%{_libdir}/libgirara-gtk3.so %changelog +* Tue Apr 10 2018 Petr Šabata - 0.2.9-1 +- 0.2.9 bump +- Upstream switches to meson +- Dropping the ldconfig scriptlets as this is aimed at F28+ + * Tue Mar 06 2018 Björn Esser - 0.2.7-7 - Rebuilt for libjson-c.so.4 (json-c v0.13.1) diff --git a/sources b/sources index c1c9092..5f2b653 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.2.7.tar.gz) = 4229565b8a5fad1ecbf42e4f3f852644964a7d5c90154dab9b7dcb5ccd5f25731911452472bbeb28927d1e30d4df6ed066926e11c6a73f0fd5740570493a036f +SHA512 (girara-0.2.9.tar.xz) = 2e04d3c436dc79098676652d8d503c82b9c6f75af92e84b32ee5e41bcaaca38d079eebd9c1cb461789cff4461c1bea2f95a868dd4cd09acb708f30a5044e5c87 From ae7b2a102ccc40725a94f71e74da06a9da4103be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 25 May 2018 09:14:47 +0200 Subject: [PATCH 32/57] 0.3.0 bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Šabata --- .gitignore | 1 + girara.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3314d92..2168682 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /girara-0.2.6.tar.gz /girara-0.2.7.tar.gz /girara-0.2.9.tar.xz +/girara-0.3.0.tar.xz diff --git a/girara.spec b/girara.spec index 9a586a7..a1a3c1c 100644 --- a/girara.spec +++ b/girara.spec @@ -1,5 +1,5 @@ Name: girara -Version: 0.2.9 +Version: 0.3.0 Release: 1%{?dist} Summary: Simple user interface library License: zlib @@ -51,6 +51,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Fri May 25 2018 Petr Šabata - 0.3.0-1 +- 0.3.0 bump + * Tue Apr 10 2018 Petr Šabata - 0.2.9-1 - 0.2.9 bump - Upstream switches to meson diff --git a/sources b/sources index 5f2b653..d6eae14 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.2.9.tar.xz) = 2e04d3c436dc79098676652d8d503c82b9c6f75af92e84b32ee5e41bcaaca38d079eebd9c1cb461789cff4461c1bea2f95a868dd4cd09acb708f30a5044e5c87 +SHA512 (girara-0.3.0.tar.xz) = 3994cd2707d549f9dd5f05f8e5f6e713b517c84fb40b6333d170bafdc9c9807dc5ef80913f557f549bd08a8679a8e0ad6243872a3231c5164d6b30a7441d94c2 From 00d9228114d4342d412406d4ed7ceef96a70934f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:23:56 +0000 Subject: [PATCH 33/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index a1a3c1c..817134a 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -51,6 +51,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri May 25 2018 Petr Šabata - 0.3.0-1 - 0.3.0 bump From a09fa9726285cc0e5cc3439a502cfcc36057eb7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Fri, 16 Nov 2018 12:41:30 +0100 Subject: [PATCH 34/57] 0.3.1 bump --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2168682..80e59b3 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /girara-0.2.7.tar.gz /girara-0.2.9.tar.xz /girara-0.3.0.tar.xz +/girara-0.3.1.tar.xz diff --git a/girara.spec b/girara.spec index 817134a..02b2678 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.3.0 -Release: 2%{?dist} +Version: 0.3.1 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -51,6 +51,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Fri Nov 16 2018 Petr Šabata - 0.3.1-1 +- 0.3.1 bump + * Fri Jul 13 2018 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index d6eae14..b751848 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.0.tar.xz) = 3994cd2707d549f9dd5f05f8e5f6e713b517c84fb40b6333d170bafdc9c9807dc5ef80913f557f549bd08a8679a8e0ad6243872a3231c5164d6b30a7441d94c2 +SHA512 (girara-0.3.1.tar.xz) = 5c4b2972bfb0296cd1b984c9426b67b50e29e2928fb0e9a3aa3f9bc21aebc28dcc93570e888060e0bb02561022b379cdfcfa3317b52e78cac04e7fc1ba476107 From faf0f58b19e268d822e1154be5d7a34d208112b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Mon, 14 Jan 2019 14:04:56 +0100 Subject: [PATCH 35/57] 0.3.2 bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enabling libnotify support. Based on Ankur Sinha's PR, https://src.fedoraproject.org/rpms/girara/pull-request/1 Signed-off-by: Petr Šabata --- .gitignore | 1 + girara.spec | 15 ++++++++++++--- sources | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 80e59b3..ca6a93d 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /girara-0.2.9.tar.xz /girara-0.3.0.tar.xz /girara-0.3.1.tar.xz +/girara-0.3.2.tar.xz diff --git a/girara.spec b/girara.spec index 02b2678..403a82d 100644 --- a/girara.spec +++ b/girara.spec @@ -1,19 +1,23 @@ Name: girara -Version: 0.3.1 +Version: 0.3.2 Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.xz BuildRequires: binutils +BuildRequires: doxygen BuildRequires: gcc BuildRequires: gettext BuildRequires: glib2-devel >= 2.50 BuildRequires: gtk3-devel >= 3.20 BuildRequires: intltool BuildRequires: json-c-devel -BuildRequires: libnotify-devel +BuildRequires: libnotify-devel >= 0.7.0 BuildRequires: meson >= 0.43 +BuildRequires: pango-devel >= 1.14 +# Tests +BuildRequires: check-devel %global girara_locales lib%{name}-gtk3-3 @@ -33,7 +37,7 @@ developing applications that use %{name}. %setup -q %build -%meson +%meson -Dnotify=enabled %meson_build %install @@ -51,6 +55,11 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Mon Jan 14 2019 Petr Šabata - 0.3.2-1 +- 0.3.2 bump +- Enabling libnotify support +- Based on Ankur Sinha's PR, https://src.fedoraproject.org/rpms/girara/pull-request/1 + * Fri Nov 16 2018 Petr Šabata - 0.3.1-1 - 0.3.1 bump diff --git a/sources b/sources index b751848..2c94cf7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.1.tar.xz) = 5c4b2972bfb0296cd1b984c9426b67b50e29e2928fb0e9a3aa3f9bc21aebc28dcc93570e888060e0bb02561022b379cdfcfa3317b52e78cac04e7fc1ba476107 +SHA512 (girara-0.3.2.tar.xz) = ce8b1498c2c5e278a4689f945e6773cbf19b3357711636bbe785d96c8d381cf8ba457268ca154f7bd48b06d79cc03296d2e4350784299a13c4972030bcb0dbed From 6ffe06ac8d6b22835166586ebb46d06bd36f8c83 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 22:25:43 +0000 Subject: [PATCH 36/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 403a82d..7ee3f12 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Mon Jan 14 2019 Petr Šabata - 0.3.2-1 - 0.3.2 bump - Enabling libnotify support From bf58ce793072418904881fe0920ed3e2e482a44a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 03:26:14 +0000 Subject: [PATCH 37/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 7ee3f12..1838434 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 0.3.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 96f051f9cb877b9fd4ddc6239de04811e052c98e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:56:00 +0000 Subject: [PATCH 38/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 1838434..59e1c8d 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 0.3.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 76c235e5ec777a17045604c08fdb4e173f435d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 15 Apr 2020 14:31:51 +0200 Subject: [PATCH 39/57] Updating to the latest release, 0.3.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Šabata --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ca6a93d..6e612e7 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /girara-0.3.0.tar.xz /girara-0.3.1.tar.xz /girara-0.3.2.tar.xz +/girara-0.3.4.tar.xz diff --git a/girara.spec b/girara.spec index 59e1c8d..de8db64 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.3.2 -Release: 4%{?dist} +Version: 0.3.4 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Wed Apr 15 2020 Petr Šabata - 0.3.4-1 +- 0.3.4 bump + * Tue Jan 28 2020 Fedora Release Engineering - 0.3.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 2c94cf7..72280f1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.2.tar.xz) = ce8b1498c2c5e278a4689f945e6773cbf19b3357711636bbe785d96c8d381cf8ba457268ca154f7bd48b06d79cc03296d2e4350784299a13c4972030bcb0dbed +SHA512 (girara-0.3.4.tar.xz) = 5ffbd8bf135b6c809c1c5733c9b0e41c5121a3d1e1decba85a1ce18d9bdd836f0b85e38f103e06008035f9b38a8b11ce66877177b9d0856b9c029b21052eba83 From d20dfcd2357561823f44ec1a3a6c491f2c8fc87f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 22 Apr 2020 00:07:18 +0200 Subject: [PATCH 40/57] Rebuild (json-c) --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index de8db64..2462451 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Tue Apr 21 2020 Björn Esser - 0.3.4-2 +- Rebuild (json-c) + * Wed Apr 15 2020 Petr Šabata - 0.3.4-1 - 0.3.4 bump From 8c12c1430cf69d1c85391b4221b1190041330ed5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 20:03:02 +0000 Subject: [PATCH 41/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 2462451..cf8e780 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Apr 21 2020 Björn Esser - 0.3.4-2 - Rebuild (json-c) From 2879a1699334ab6e4650f7ef215683a0eda76d9e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:50:51 +0000 Subject: [PATCH 42/57] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index cf8e780..78eae27 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,10 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 0.3.4-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.3.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 46377a3a1e42306de969e16a8c74864ea81e0d9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Sat, 31 Oct 2020 21:04:34 +0100 Subject: [PATCH 43/57] 0.3.5 bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Šabata --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6e612e7..0c2dd96 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /girara-0.3.1.tar.xz /girara-0.3.2.tar.xz /girara-0.3.4.tar.xz +/girara-0.3.5.tar.xz diff --git a/girara.spec b/girara.spec index 78eae27..8466007 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.3.4 -Release: 4%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Sat Oct 31 2020 Petr Šabata - 0.3.5-1 +- 0.3.5 bump + * Sat Aug 01 2020 Fedora Release Engineering - 0.3.4-4 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 72280f1..9fdc884 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.4.tar.xz) = 5ffbd8bf135b6c809c1c5733c9b0e41c5121a3d1e1decba85a1ce18d9bdd836f0b85e38f103e06008035f9b38a8b11ce66877177b9d0856b9c029b21052eba83 +SHA512 (girara-0.3.5.tar.xz) = e7c5bf887b29767878502224ad45d62e43b3da91bd8e754603256550d4f0126f1493f0fb7473a4ebb8cc5909306564249c6a60e99eba2b0b417b98c728fcdc84 From 4a57ac17fcee4a691a33144b0fbaaba9407e89a5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 08:06:55 +0000 Subject: [PATCH 44/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 8466007..a3c3f81 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Oct 31 2020 Petr Šabata - 0.3.5-1 - 0.3.5 bump From b61d6f058a91043fe4836781d0a3532a21c50236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sat, 10 Jul 2021 11:53:37 +0200 Subject: [PATCH 45/57] Rebuild for versioned symbols in json-c --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index a3c3f81..175b03f 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Sat Jul 10 2021 Björn Esser - 0.3.5-3 +- Rebuild for versioned symbols in json-c + * Tue Jan 26 2021 Fedora Release Engineering - 0.3.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 8e285dcf968d19fa63eac716c0a1f5b71deef40d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:39:27 +0000 Subject: [PATCH 46/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 175b03f..250663d 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Sat Jul 10 2021 Björn Esser - 0.3.5-3 - Rebuild for versioned symbols in json-c From 43abe623b95c00f6cd5ec837f44ce285cea1bf1d Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Thu, 16 Sep 2021 17:13:04 +0100 Subject: [PATCH 47/57] feat: update to 0.3.6 --- .gitignore | 1 + girara.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0c2dd96..6796ddf 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /girara-0.3.2.tar.xz /girara-0.3.4.tar.xz /girara-0.3.5.tar.xz +/girara-0.3.6.tar.xz diff --git a/girara.spec b/girara.spec index 250663d..cbfe936 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.3.5 -Release: 4%{?dist} +Version: 0.3.6 +Release: 1%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Thu Sep 16 2021 Ankur Sinha - 0.3.6-1 +- Update to 0.3.6 + * Thu Jul 22 2021 Fedora Release Engineering - 0.3.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 9fdc884..e4c0316 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.5.tar.xz) = e7c5bf887b29767878502224ad45d62e43b3da91bd8e754603256550d4f0126f1493f0fb7473a4ebb8cc5909306564249c6a60e99eba2b0b417b98c728fcdc84 +SHA512 (girara-0.3.6.tar.xz) = e9496b1bb629d59377ed1fee8a2fab2c7e5d60845e6777ed9bb796e1843fea20abda32d7de885f01e892654ea996490403c442021528b6b4f2aa50cf54d74c42 From 915a42615788f6a2a3450a7749fb3615196267df Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 06:01:21 +0000 Subject: [PATCH 48/57] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index cbfe936..46ab0c9 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: http://pwmt.org/projects/%{name}/ @@ -55,6 +55,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Sep 16 2021 Ankur Sinha - 0.3.6-1 - Update to 0.3.6 From 1ec130d87c5fcedd78d40bf718470f929aadb754 Mon Sep 17 00:00:00 2001 From: Alain Vigne Date: Tue, 15 Feb 2022 17:33:40 +0100 Subject: [PATCH 49/57] 0.3.7 bump Drop BR:doxygen as documentation is not generated nor installed --- .gitignore | 1 + girara.spec | 59 ++++++++++++++++++++++++++++++----------------------- sources | 2 +- 3 files changed, 35 insertions(+), 27 deletions(-) diff --git a/.gitignore b/.gitignore index 6796ddf..556671e 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /girara-0.3.4.tar.xz /girara-0.3.5.tar.xz /girara-0.3.6.tar.xz +/girara-0.3.7.tar.xz diff --git a/girara.spec b/girara.spec index 46ab0c9..2085852 100644 --- a/girara.spec +++ b/girara.spec @@ -1,38 +1,39 @@ -Name: girara -Version: 0.3.6 -Release: 2%{?dist} -Summary: Simple user interface library -License: zlib -URL: http://pwmt.org/projects/%{name}/ -Source0: http://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.xz -BuildRequires: binutils -BuildRequires: doxygen -BuildRequires: gcc -BuildRequires: gettext -BuildRequires: glib2-devel >= 2.50 -BuildRequires: gtk3-devel >= 3.20 -BuildRequires: intltool -BuildRequires: json-c-devel -BuildRequires: libnotify-devel >= 0.7.0 -BuildRequires: meson >= 0.43 -BuildRequires: pango-devel >= 1.14 +Name: girara +Version: 0.3.7 +Release: 1%{?dist} +Summary: Simple user interface library +License: zlib +URL: https://pwmt.org/projects/%{name}/ +Source0: https://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.xz + +BuildRequires: binutils +BuildRequires: gcc +BuildRequires: gettext +BuildRequires: glib2-devel >= 2.50 +BuildRequires: gtk3-devel >= 3.20 +BuildRequires: intltool +BuildRequires: json-c-devel +BuildRequires: libnotify-devel >= 0.7.0 +BuildRequires: meson >= 0.56 +BuildRequires: pango-devel >= 1.14 # Tests -BuildRequires: check-devel +BuildRequires: check-devel -%global girara_locales lib%{name}-gtk3-3 +%global girara_locales lib%{name}-gtk3-3 %description Girara is a library that implements a user interface that focuses on simplicity and minimalism. -%package devel -Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} -%description devel +%description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. + %prep %setup -q @@ -44,17 +45,23 @@ developing applications that use %{name}. %meson_install %find_lang %{girara_locales} + %files -f %{girara_locales}.lang %license LICENSE -%doc AUTHORS README +%doc AUTHORS README.md %{_libdir}/libgirara-gtk3.so.* %files devel +%dir %{_includedir}/%{name} %{_includedir}/%{name}/*.h %{_libdir}/pkgconfig/girara-gtk3.pc %{_libdir}/libgirara-gtk3.so %changelog +* Tue Feb 15 2022 Alain Vigne - 0.3.7-1 +- 0.3.7 bump +- Drop BR:doxygen as documentation is not generated nor installed + * Thu Jan 20 2022 Fedora Release Engineering - 0.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild @@ -175,7 +182,7 @@ developing applications that use %{name}. * Wed Mar 05 2014 François Cami - 0.2.0-1 - Update to 0.2.0 and switch to gtk3. -* Sat Dec 28 2013 François Cami - 0.1.9-1 +* Sat Dec 28 2013 François Cami - 0.1.9-1 - Update to latest upstream. - Enforce building against gtk2 for now. diff --git a/sources b/sources index e4c0316..90d1ea0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.6.tar.xz) = e9496b1bb629d59377ed1fee8a2fab2c7e5d60845e6777ed9bb796e1843fea20abda32d7de885f01e892654ea996490403c442021528b6b4f2aa50cf54d74c42 +SHA512 (girara-0.3.7.tar.xz) = 9b91ef7e5047b3250327eab9280372f38615e9948884c108c3d1c5d3e81794f786adc827692b112d2bfdc2660e22206a143fafd5a814408df8ffd4c858148717 From b71ba9a766da300fcc4863f96610233da010cd0e Mon Sep 17 00:00:00 2001 From: Alain Vigne Date: Tue, 15 Feb 2022 18:00:52 +0100 Subject: [PATCH 50/57] Disable docs --- girara.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 2085852..450bd1d 100644 --- a/girara.spec +++ b/girara.spec @@ -38,7 +38,7 @@ developing applications that use %{name}. %setup -q %build -%meson -Dnotify=enabled +%meson -Dnotify=enabled -Ddocs=disabled %meson_build %install From ce9e1f70b3808ff66f6af21a0172fa4adfd4dcf1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 06:15:52 +0000 Subject: [PATCH 51/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 450bd1d..12fed90 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: zlib URL: https://pwmt.org/projects/%{name}/ @@ -58,6 +58,9 @@ developing applications that use %{name}. %{_libdir}/libgirara-gtk3.so %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Tue Feb 15 2022 Alain Vigne - 0.3.7-1 - 0.3.7 bump - Drop BR:doxygen as documentation is not generated nor installed From a47f04975df4d37cdf75418f58bc2524afc275b8 Mon Sep 17 00:00:00 2001 From: Alain Vigne Date: Wed, 30 Nov 2022 16:16:14 +0100 Subject: [PATCH 52/57] 0.3.8 bump (rhbz#2148740) Switch to json-glib, where available Disable notify Tests are disabled SPDX license identifier --- .gitignore | 1 + girara.spec | 30 ++++++++++++++++++++++-------- sources | 2 +- 3 files changed, 24 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 556671e..761b2de 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /girara-0.3.5.tar.xz /girara-0.3.6.tar.xz /girara-0.3.7.tar.xz +/girara-0.3.8.tar.xz diff --git a/girara.spec b/girara.spec index 12fed90..daf993d 100644 --- a/girara.spec +++ b/girara.spec @@ -1,23 +1,29 @@ Name: girara -Version: 0.3.7 -Release: 2%{?dist} +Version: 0.3.8 +Release: 1%{?dist} Summary: Simple user interface library -License: zlib +License: Zlib URL: https://pwmt.org/projects/%{name}/ Source0: https://pwmt.org/projects/%{name}/download/%{name}-%{version}.tar.xz -BuildRequires: binutils +#BuildRequires: binutils BuildRequires: gcc BuildRequires: gettext BuildRequires: glib2-devel >= 2.50 BuildRequires: gtk3-devel >= 3.20 BuildRequires: intltool -BuildRequires: json-c-devel -BuildRequires: libnotify-devel >= 0.7.0 BuildRequires: meson >= 0.56 BuildRequires: pango-devel >= 1.14 + +%if 0%{?fedora} +BuildRequires: pkgconfig(json-glib-1.0) # Tests -BuildRequires: check-devel +#BuildRequires: pkgconfig(check) >= 0.11 +%endif + +# from Upstream: Mark girara_libnotify as deprecated +#BuildRequires: libnotify-devel >= 0.7.0 + %global girara_locales lib%{name}-gtk3-3 @@ -38,7 +44,7 @@ developing applications that use %{name}. %setup -q %build -%meson -Dnotify=enabled -Ddocs=disabled +%meson -Ddocs=disabled -Dtests=disabled %meson_build %install @@ -57,7 +63,15 @@ developing applications that use %{name}. %{_libdir}/pkgconfig/girara-gtk3.pc %{_libdir}/libgirara-gtk3.so + %changelog +* Tue Nov 29 2022 Alain Vigne - 0.3.8-1 +- 0.3.8 bump (rhbz#2148740) +- Switch to json-glib, where available +- Disable notify +- Tests are disabled +- SPDX license identifier + * Thu Jul 21 2022 Fedora Release Engineering - 0.3.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 90d1ea0..ce1341c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.7.tar.xz) = 9b91ef7e5047b3250327eab9280372f38615e9948884c108c3d1c5d3e81794f786adc827692b112d2bfdc2660e22206a143fafd5a814408df8ffd4c858148717 +SHA512 (girara-0.3.8.tar.xz) = ae8c1a710ded468af40c800a53d2f4ca7aac572ba3ffdfaaede099017541ee79bc8d7c2ae465c947279091c4b52b9d1ec13999595217fdfb7fd5b049a6a3f476 From 552710b507777bbe3e092fbbdae118168dce3bfc Mon Sep 17 00:00:00 2001 From: Alain Vigne Date: Fri, 2 Dec 2022 16:32:09 +0100 Subject: [PATCH 53/57] Re-enable tests --- girara.spec | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/girara.spec b/girara.spec index daf993d..398de0e 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple user interface library License: Zlib URL: https://pwmt.org/projects/%{name}/ @@ -14,12 +14,9 @@ BuildRequires: gtk3-devel >= 3.20 BuildRequires: intltool BuildRequires: meson >= 0.56 BuildRequires: pango-devel >= 1.14 - -%if 0%{?fedora} BuildRequires: pkgconfig(json-glib-1.0) # Tests -#BuildRequires: pkgconfig(check) >= 0.11 -%endif +BuildRequires: pkgconfig(check) >= 0.11 # from Upstream: Mark girara_libnotify as deprecated #BuildRequires: libnotify-devel >= 0.7.0 @@ -44,13 +41,16 @@ developing applications that use %{name}. %setup -q %build -%meson -Ddocs=disabled -Dtests=disabled +%meson -Ddocs=disabled -Dtests=enabled %meson_build %install %meson_install %find_lang %{girara_locales} +%check +%meson_test + %files -f %{girara_locales}.lang %license LICENSE @@ -65,6 +65,9 @@ developing applications that use %{name}. %changelog +* Fri Dec 02 2022 Alain Vigne - 0.3.8-2 +- Re-enable tests + * Tue Nov 29 2022 Alain Vigne - 0.3.8-1 - 0.3.8 bump (rhbz#2148740) - Switch to json-glib, where available From 158af486aad63cfc9cb79d50bba495f29a814354 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 04:54:50 +0000 Subject: [PATCH 54/57] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- girara.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/girara.spec b/girara.spec index 398de0e..42fbc5d 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara Version: 0.3.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple user interface library License: Zlib URL: https://pwmt.org/projects/%{name}/ @@ -65,6 +65,9 @@ developing applications that use %{name}. %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 0.3.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Dec 02 2022 Alain Vigne - 0.3.8-2 - Re-enable tests From 96f82dedb51148792dd16b97922a6dff3c55f581 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Mon, 30 Jan 2023 10:09:57 +0000 Subject: [PATCH 55/57] feat: update to 0.3.9 (fixes rhbz#2161081) --- .gitignore | 1 + girara.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 761b2de..f746f55 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /girara-0.3.6.tar.xz /girara-0.3.7.tar.xz /girara-0.3.8.tar.xz +/girara-0.3.9.tar.xz diff --git a/girara.spec b/girara.spec index 42fbc5d..b7fd49e 100644 --- a/girara.spec +++ b/girara.spec @@ -1,6 +1,6 @@ Name: girara -Version: 0.3.8 -Release: 3%{?dist} +Version: 0.3.9 +Release: 1%{?dist} Summary: Simple user interface library License: Zlib URL: https://pwmt.org/projects/%{name}/ @@ -65,6 +65,10 @@ developing applications that use %{name}. %changelog +* Mon Jan 30 2023 Ankur Sinha - 0.3.9-1 +- Update to 0.3.9 +- https://pwmt.org/projects/girara/changelog/0.3.9/index.html + * Thu Jan 19 2023 Fedora Release Engineering - 0.3.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index ce1341c..d8b5da5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.8.tar.xz) = ae8c1a710ded468af40c800a53d2f4ca7aac572ba3ffdfaaede099017541ee79bc8d7c2ae465c947279091c4b52b9d1ec13999595217fdfb7fd5b049a6a3f476 +SHA512 (girara-0.3.9.tar.xz) = b5399b26389cff0c6aa6f70687b53a99243d38d66ec401f48de49391c88b31dc3287366819288c405051d14f4f778db952953d48be51ac47d90d9f3604c94708 From b4b1c50d4ad30f0607566e042932b2ce40de7994 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Thu, 23 Mar 2023 10:23:23 +0530 Subject: [PATCH 56/57] feat: update to 0.4.0 (fixes rhbz#2179582) --- .gitignore | 1 + girara.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f746f55..6aa3e07 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /girara-0.3.7.tar.xz /girara-0.3.8.tar.xz /girara-0.3.9.tar.xz +/girara-0.4.0.tar.xz diff --git a/girara.spec b/girara.spec index b7fd49e..caf69ea 100644 --- a/girara.spec +++ b/girara.spec @@ -1,5 +1,5 @@ Name: girara -Version: 0.3.9 +Version: 0.4.0 Release: 1%{?dist} Summary: Simple user interface library License: Zlib @@ -65,6 +65,9 @@ developing applications that use %{name}. %changelog +* Wed Mar 22 2023 Ankur Sinha - 0.4.0-1 +- Update to 0.4.0 + * Mon Jan 30 2023 Ankur Sinha - 0.3.9-1 - Update to 0.3.9 - https://pwmt.org/projects/girara/changelog/0.3.9/index.html diff --git a/sources b/sources index d8b5da5..4b1ddf7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (girara-0.3.9.tar.xz) = b5399b26389cff0c6aa6f70687b53a99243d38d66ec401f48de49391c88b31dc3287366819288c405051d14f4f778db952953d48be51ac47d90d9f3604c94708 +SHA512 (girara-0.4.0.tar.xz) = a8753231cb9de7d60ddaf6e7b19537f23ce447be5885725c982e395068466089fca46980d413cc4ea8e4a8059ccd4615366297600bcf7ef5bddf02d649703dec From f79d4305f54d1c46d32dddb02afb73b865ffd07c Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:14:20 +0300 Subject: [PATCH 57/57] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 4b1ddf7..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (girara-0.4.0.tar.xz) = a8753231cb9de7d60ddaf6e7b19537f23ce447be5885725c982e395068466089fca46980d413cc4ea8e4a8059ccd4615366297600bcf7ef5bddf02d649703dec