aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arm-linux-gnueabi-toolchain/arm-linux-gnueabi-binutils/arm-linux-gnueabi-binutils.spec6
-rw-r--r--arm-linux-gnueabi-toolchain/arm-linux-gnueabi-filesystem/arm-linux-gnueabi-filesystem.spec5
-rw-r--r--arm-linux-gnueabi-toolchain/arm-linux-gnueabi-gcc/arm-linux-gnueabi-gcc.spec6
-rw-r--r--arm-linux-gnueabi-toolchain/arm-linux-gnueabi-glibc/arm-linux-gnueabi-glibc.spec5
-rw-r--r--factor/msieve/msieve.spec6
-rw-r--r--factor/yafu/yafu.spec6
-rw-r--r--guix/emacs-bui/emacs-bui.spec5
-rw-r--r--guix/emacs-dash/emacs-dash.spec5
-rw-r--r--guix/emacs-geiser/emacs-geiser.spec5
-rw-r--r--guix/emacs-ghub/emacs-ghub.spec5
-rw-r--r--guix/emacs-guix/emacs-guix.spec5
-rw-r--r--guix/emacs-magit-popup/emacs-magit-popup.spec5
-rw-r--r--guix/emacs-magit/emacs-magit.spec5
-rw-r--r--guix/emacs-with-editor/emacs-with-editor.spec5
-rw-r--r--guix/guile-bytestructures/guile-bytestructures.spec5
-rw-r--r--guix/guile-git/guile-git.spec5
-rw-r--r--guix/guile-json/guile-json.spec5
-rw-r--r--guix/guile-sqlite3/guile-sqlite3.spec5
-rw-r--r--guix/guile-ssh/guile-ssh.spec10
-rw-r--r--guix/guix/guix.spec6
-rw-r--r--lilyterm-gtk3/lilyterm-gtk3/lilyterm-gtk3.spec6
-rw-r--r--qelly/qelly/qelly.spec6
-rw-r--r--tcc/tcc/tcc.spec5
23 files changed, 104 insertions, 23 deletions
diff --git a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-binutils/arm-linux-gnueabi-binutils.spec b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-binutils/arm-linux-gnueabi-binutils.spec
index 47f295e..eafe8d9 100644
--- a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-binutils/arm-linux-gnueabi-binutils.spec
+++ b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-binutils/arm-linux-gnueabi-binutils.spec
@@ -8,13 +8,14 @@
Name: %{cross_triplet}-binutils
Version: 2.31.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A GNU collection of binary utilities (%{cross_triplet})
License: GPLv3+
URL: https://www.gnu.org/software/binutils
Source0: https://ftp.gnu.org/gnu/binutils/binutils-%{version}.tar.bz2
+BuildRequires: gcc, gcc-c++
BuildRequires: texinfo, gettext, flex, bison, zlib-devel
BuildRequires: %{cross_triplet}-filesystem
Requires: %{cross_triplet}-filesystem
@@ -88,6 +89,9 @@ rm -rf %{buildroot}%{_infodir}
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.31.1-2
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Sat Jul 28 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.31.1-1
- Update to 2.31.1
diff --git a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-filesystem/arm-linux-gnueabi-filesystem.spec b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-filesystem/arm-linux-gnueabi-filesystem.spec
index 1e80a8a..65989b4 100644
--- a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-filesystem/arm-linux-gnueabi-filesystem.spec
+++ b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-filesystem/arm-linux-gnueabi-filesystem.spec
@@ -14,7 +14,7 @@
Name: %{cross_triplet}-filesystem
Version: 3
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: Cross compilation toolchain filesystem layout (%{cross_triplet})
License: Public Domain
@@ -83,6 +83,9 @@ mkdir %{buildroot}%{cross_sysroot}/var/db
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 3-8
+- Rebuilt for Fedora 29 and 30
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 3-7
- Remove group tag because it is deprecated in Fedora
diff --git a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-gcc/arm-linux-gnueabi-gcc.spec b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-gcc/arm-linux-gnueabi-gcc.spec
index 1efa2f1..02441e7 100644
--- a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-gcc/arm-linux-gnueabi-gcc.spec
+++ b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-gcc/arm-linux-gnueabi-gcc.spec
@@ -30,7 +30,7 @@
Name: %{cross_triplet}-gcc%{pkg_suffix}
Version: 8.2.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: The GNU Compiler Collection (%{cross_triplet})
%global major_version %(echo %{version} | sed 's/\\..*$//')
@@ -39,6 +39,7 @@ License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGP
URL: https://gcc.gnu.org
Source0: https://ftp.gnu.org/gnu/gcc/gcc-%{version}/gcc-%{version}.tar.xz
+BuildRequires: gcc, gcc-c++, gcc-gnat
BuildRequires: texinfo, gettext, flex, bison, zlib-devel, isl-devel
BuildRequires: gmp-devel, mpfr-devel, libmpc-devel, elfutils-libelf-devel
BuildRequires: %{cross_triplet}-filesystem
@@ -368,6 +369,9 @@ chmod +x %{__ar_no_strip}
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 8.2.0-2
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Thu Jul 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 8.2.0-1
- Update to new stable release 8.2.0
diff --git a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-glibc/arm-linux-gnueabi-glibc.spec b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-glibc/arm-linux-gnueabi-glibc.spec
index 8f62014..be25de6 100644
--- a/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-glibc/arm-linux-gnueabi-glibc.spec
+++ b/arm-linux-gnueabi-toolchain/arm-linux-gnueabi-glibc/arm-linux-gnueabi-glibc.spec
@@ -56,7 +56,7 @@
Name: %{cross_triplet}-glibc%{pkg_suffix}
Version: 2.28
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: The GNU C Library (%{cross_triplet})
License: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+
@@ -600,6 +600,9 @@ chmod +x %{__ar_no_strip}
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.28-3
+- Rebuilt for Fedora 29 and 30
+
* Tue Aug 14 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.28-2
- Fix RPM files list for Fedora 27 and older
diff --git a/factor/msieve/msieve.spec b/factor/msieve/msieve.spec
index bc312d4..5524a90 100644
--- a/factor/msieve/msieve.spec
+++ b/factor/msieve/msieve.spec
@@ -1,12 +1,13 @@
Name: msieve
Version: 1.53
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Msieve is a C library to factor large integers.
License: Public Domain
URL: https://sourceforge.net/projects/msieve
Source0: https://downloads.sourceforge.net/project/msieve/msieve/Msieve v1.53/msieve153_src.tar.gz
+BuildRequires: gcc
BuildRequires: gmp-ecm-devel, zlib-devel
Requires: zlib-devel
@@ -39,6 +40,9 @@ install -m 644 libmsieve.a %{buildroot}%{_libdir}
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.53-6
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.53-5
- Remove group tag because it is deprecated in Fedora
diff --git a/factor/yafu/yafu.spec b/factor/yafu/yafu.spec
index a41a7d3..ae386c0 100644
--- a/factor/yafu/yafu.spec
+++ b/factor/yafu/yafu.spec
@@ -1,12 +1,13 @@
Name: yafu
Version: 1.34
-Release: 12%{?dist}
+Release: 13%{?dist}
Summary: Automated integer factorization
License: Public Domain
URL: https://sourceforge.net/projects/yafu
Source0: https://downloads.sourceforge.net/project/yafu/%{version}/%{name}-%{version}-src.zip
+BuildRequires: gcc
BuildRequires: msieve, gmp-ecm-devel
%description
@@ -45,6 +46,9 @@ install -m 755 yafu %{buildroot}%{_bindir}
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.34-13
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.34-12
- Remove group tag because it is deprecated in Fedora
diff --git a/guix/emacs-bui/emacs-bui.spec b/guix/emacs-bui/emacs-bui.spec
index c495cfc..4803818 100644
--- a/guix/emacs-bui/emacs-bui.spec
+++ b/guix/emacs-bui/emacs-bui.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 1.1.0
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Buffer interface library for Emacs
License: GPLv3+
@@ -48,6 +48,9 @@ install -m 644 *.el %{buildroot}%{_emacs_sitelispdir}/bui/
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.1.0-6
+- Rebuilt for Fedora 29 and 30
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.1.0-5
- Remove group tag because it is deprecated in Fedora
diff --git a/guix/emacs-dash/emacs-dash.spec b/guix/emacs-dash/emacs-dash.spec
index 3da96bd..68bf085 100644
--- a/guix/emacs-dash/emacs-dash.spec
+++ b/guix/emacs-dash/emacs-dash.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 2.14.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Dash is a modern list library for Emacs
License: GPLv3+
@@ -60,6 +60,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.14.1-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.14.1-1
- Update to 2.14.1
diff --git a/guix/emacs-geiser/emacs-geiser.spec b/guix/emacs-geiser/emacs-geiser.spec
index b2ad70f..844642e 100644
--- a/guix/emacs-geiser/emacs-geiser.spec
+++ b/guix/emacs-geiser/emacs-geiser.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 0.9
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: Geiser is an Emacs environment to hack and have fun in Scheme
License: BSD
@@ -67,6 +67,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.9-7
+- Rebuilt for Fedora 29 and 30
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.9-6
- Remove group tag because it is deprecated in Fedora
diff --git a/guix/emacs-ghub/emacs-ghub.spec b/guix/emacs-ghub/emacs-ghub.spec
index 7ee47cf..ef406f2 100644
--- a/guix/emacs-ghub/emacs-ghub.spec
+++ b/guix/emacs-ghub/emacs-ghub.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 2.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Minuscule GitHub client library for Emacs
License: GPLv3+
@@ -62,6 +62,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.0.1-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.0.1-1
- Update to 2.0.1
- Fix autoloads by creating a symlink instead of moving the script itself
diff --git a/guix/emacs-guix/emacs-guix.spec b/guix/emacs-guix/emacs-guix.spec
index 9818845..113eb48 100644
--- a/guix/emacs-guix/emacs-guix.spec
+++ b/guix/emacs-guix/emacs-guix.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 0.4.1.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Emacs-Guix is an Emacs interface for GNU Guix package manager
License: GPLv3+
@@ -94,6 +94,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.4.1.1-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.4.1.1-1
- Update to 0.4.1.1
- Keep the name of autoloads script because it doesn't work when being renamed
diff --git a/guix/emacs-magit-popup/emacs-magit-popup.spec b/guix/emacs-magit-popup/emacs-magit-popup.spec
index 4b6d0a4..3a0b08a 100644
--- a/guix/emacs-magit-popup/emacs-magit-popup.spec
+++ b/guix/emacs-magit-popup/emacs-magit-popup.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 2.12.3
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Define prefix-infix-suffix command combos for Emacs
License: GPLv3+
@@ -66,6 +66,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.12.3-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.12.3-1
- Update to 2.12.3
- Fix autoloads by creating a symlink instead of moving the script itself
diff --git a/guix/emacs-magit/emacs-magit.spec b/guix/emacs-magit/emacs-magit.spec
index c61c66f..6ed81be 100644
--- a/guix/emacs-magit/emacs-magit.spec
+++ b/guix/emacs-magit/emacs-magit.spec
@@ -13,7 +13,7 @@
Name: emacs-%{pkg}
Version: 2.13.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Emacs interface to the most common Git operations
License: GPLv3+
@@ -77,6 +77,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.13.0-1
- Update to upstream version 2.13.0
- Fix autoloads by creating a symlink instead of moving the script itself
diff --git a/guix/emacs-with-editor/emacs-with-editor.spec b/guix/emacs-with-editor/emacs-with-editor.spec
index e673351..d8f84e4 100644
--- a/guix/emacs-with-editor/emacs-with-editor.spec
+++ b/guix/emacs-with-editor/emacs-with-editor.spec
@@ -3,7 +3,7 @@
Name: emacs-%{pkg}
Version: 2.7.3
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Use the Emacsclient as the editor of child processes
License: GPLv3+
@@ -64,6 +64,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.7.3-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 2.7.3-1
- Update to 2.7.3
- Fix autoloads by creating a symlink instead of moving the script itself
diff --git a/guix/guile-bytestructures/guile-bytestructures.spec b/guix/guile-bytestructures/guile-bytestructures.spec
index 19849bb..b8da211 100644
--- a/guix/guile-bytestructures/guile-bytestructures.spec
+++ b/guix/guile-bytestructures/guile-bytestructures.spec
@@ -1,6 +1,6 @@
Name: guile-bytestructures
Version: 1.0.3
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Structured access library to bytevector contents for Guile
License: GPLv3+
@@ -57,6 +57,9 @@ first-class status.
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.0.3-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.0.3-1
- Update to 1.0.3
diff --git a/guix/guile-git/guile-git.spec b/guix/guile-git/guile-git.spec
index aa47f79..cfeae92 100644
--- a/guix/guile-git/guile-git.spec
+++ b/guix/guile-git/guile-git.spec
@@ -1,6 +1,6 @@
Name: guile-git
Version: 0.1.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Guile bindings of libgit2
License: GPLv3+
@@ -67,6 +67,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-1
- Update to 0.1.0
diff --git a/guix/guile-json/guile-json.spec b/guix/guile-json/guile-json.spec
index 6bb90ae..fb00290 100644
--- a/guix/guile-json/guile-json.spec
+++ b/guix/guile-json/guile-json.spec
@@ -2,7 +2,7 @@
Name: guile-json
Version: 1.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: JSON module for Guile
License: LGPLv3+
@@ -50,6 +50,9 @@ features:
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.0.1-2
+- Rebuilt for Fedora 29 and 30
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.0.1-1
- Update to 1.0.1
diff --git a/guix/guile-sqlite3/guile-sqlite3.spec b/guix/guile-sqlite3/guile-sqlite3.spec
index 8048249..4e3d482 100644
--- a/guix/guile-sqlite3/guile-sqlite3.spec
+++ b/guix/guile-sqlite3/guile-sqlite3.spec
@@ -2,7 +2,7 @@
Name: guile-sqlite3
Version: 0.1.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Guile bindings for the SQLite3 database engine
License: LGPLv3+
@@ -45,5 +45,8 @@ autoreconf -fiv
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-2
+- Rebuilt for Fedora 29 and 30
+
* Sun Jul 08 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-1
- Initial packaging
diff --git a/guix/guile-ssh/guile-ssh.spec b/guix/guile-ssh/guile-ssh.spec
index 5a2da14..49f7b2f 100644
--- a/guix/guile-ssh/guile-ssh.spec
+++ b/guix/guile-ssh/guile-ssh.spec
@@ -1,6 +1,6 @@
Name: guile-ssh
Version: 0.11.3
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A library that provides access to the SSH protocol for GNU Guile
License: GPLv3+
@@ -10,6 +10,7 @@ Source0: https://github.com/artyom-poptsov/guile-ssh/archive/v%{version}.
%global guile_source_dir %{_datadir}/guile/site/2.0
%global guile_ccache_dir %{_libdir}/guile/2.0/site-ccache
+BuildRequires: gcc
BuildRequires: autoconf, automake, libtool, texinfo
BuildRequires: pkgconfig(guile-2.0), pkgconfig(libssh)
Requires: guile
@@ -23,6 +24,9 @@ written in GNU Guile interpreter. It is built upon the libssh library.
%prep
%autosetup -p1
+# This test doesn't pass and the author haven't fixed it.
+# https://github.com/artyom-poptsov/guile-ssh/issues/10
+sed -i '/^ server\.scm \\$/d' tests/Makefile.am
%build
@@ -70,6 +74,10 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.11.3-2
+- Add GCC to BuildRequires for Fedora 29 and later
+- Disable tests broken on libssh 0.8
+
* Sat Jul 07 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.11.3-1
- Update to 0.11.3
diff --git a/guix/guix/guix.spec b/guix/guix/guix.spec
index 37b0655..e9a1f60 100644
--- a/guix/guix/guix.spec
+++ b/guix/guix/guix.spec
@@ -6,7 +6,7 @@
Name: guix
Version: 0.15.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A purely functional package manager for the GNU system
License: GPLv3+
@@ -31,6 +31,7 @@ Source5: https://alpha.gnu.org/gnu/guix/bootstrap/x86_64-linux/20131110/g
%global fish_completion_dir %{_datadir}/fish/vendor_completions.d
%endif
+BuildRequires: gcc-c++
BuildRequires: pkgconfig(guile-2.0)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: zlib-devel, bzip2-devel, libgcrypt-devel
@@ -390,6 +391,9 @@ fi
%changelog
+* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.15.0-2
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Sun Jul 15 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.15.0-1
- Update to 0.15.0
- Skip all tests because of the number of test failure
diff --git a/lilyterm-gtk3/lilyterm-gtk3/lilyterm-gtk3.spec b/lilyterm-gtk3/lilyterm-gtk3/lilyterm-gtk3.spec
index ea5fb54..52afa51 100644
--- a/lilyterm-gtk3/lilyterm-gtk3/lilyterm-gtk3.spec
+++ b/lilyterm-gtk3/lilyterm-gtk3/lilyterm-gtk3.spec
@@ -3,7 +3,7 @@
Name: lilyterm-gtk3
Version: 0.9.9.5
-Release: 0.13.20161004git%{shortcommit}%{?dist}
+Release: 0.14.20161004git%{shortcommit}%{?dist}
Summary: Light and easy to use X Terminal Emulator (Copr: lantw44/lilyterm-gtk3)
License: GPLv3+
@@ -13,6 +13,7 @@ Patch0: lilyterm-gtk3.patch
Patch1: lilyterm-gtk3-vte291-regex.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires: gcc
BuildRequires: gtk3-devel
%if 0%{?fedora} >= 21 || 0%{?rhel} >= 8
BuildRequires: vte291-devel
@@ -86,6 +87,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.9.9.5-0.14.20161004git8df92d6
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.9.9.5-0.13.20161004git8df92d6
- Remove group tag because it is deprecated in Fedora
diff --git a/qelly/qelly/qelly.spec b/qelly/qelly/qelly.spec
index 98f38bc..b8eedfe 100644
--- a/qelly/qelly/qelly.spec
+++ b/qelly/qelly/qelly.spec
@@ -1,6 +1,6 @@
Name: qelly
Version: 1.0
-Release: 0.11.beta%{?dist}
+Release: 0.12.beta%{?dist}
Summary: Qelly is a Qt port of Nally
%global real_name Qelly
@@ -10,6 +10,7 @@ License: GPLv3
URL: https://github.com/uranusjr/Qelly
Source0: https://github.com/uranusjr/Qelly/archive/v%{real_version}.tar.gz#/%{name}-%{real_version}.tar.gz
+BuildRequires: gcc-c++
BuildRequires: qt-devel, libqxt-devel, chrpath
%description
@@ -40,6 +41,9 @@ install -m 755 "bin/Qelly" "%{buildroot}/usr/bin"
%doc AUTHORS CHANGES README.md
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.0-0.12.beta
+- Add GCC to BuildRequires for Fedora 29 and later
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 1.0-0.11.beta
- Remove group tag because it is deprecated in Fedora
diff --git a/tcc/tcc/tcc.spec b/tcc/tcc/tcc.spec
index 0c1d444..7b667fe 100644
--- a/tcc/tcc/tcc.spec
+++ b/tcc/tcc/tcc.spec
@@ -12,7 +12,7 @@
Name: %{pkg_fullname}
Version: 0.9.26
-Release: 15%{?dist}
+Release: 16%{?dist}
Summary: Tiny C Compiler
License: LGPLv2
@@ -102,6 +102,9 @@ fi
%doc Changelog README TODO VERSION tcc-doc.html
%changelog
+* Mon Oct 22 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.9.26-16
+- Rebuilt for Fedora 29 and 30
+
* Mon Feb 26 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.9.26-15
- Remove group tag because it is deprecated in Fedora