commit bfadbfc0f8c41fdf8fdf1a04525463587e0b1ced Author: Dmitry Samoylik Date: Mon Jul 22 12:28:29 2024 +0300 import buildsys-build-rpmfusion-35-0.9.el9 diff --git a/.buildsys-build-rpmfusion.metadata b/.buildsys-build-rpmfusion.metadata new file mode 100644 index 0000000..e69de29 diff --git a/SOURCES/buildsys-build-rpmfusion-README b/SOURCES/buildsys-build-rpmfusion-README new file mode 100644 index 0000000..096c8ab --- /dev/null +++ b/SOURCES/buildsys-build-rpmfusion-README @@ -0,0 +1 @@ +This is a metapackage without payload used by the buildsystem diff --git a/SOURCES/buildsys-build-rpmfusion-kerneldevpkgs-current b/SOURCES/buildsys-build-rpmfusion-kerneldevpkgs-current new file mode 100644 index 0000000..c2382d2 --- /dev/null +++ b/SOURCES/buildsys-build-rpmfusion-kerneldevpkgs-current @@ -0,0 +1,4 @@ +5.14.0-427.22.1.el9_4 +5.14.0-427.22.1.el9_4smp +5.14.0-427.22.1.el9_4PAE +5.14.0-427.22.1.el9_4lpae diff --git a/SOURCES/buildsys-build-rpmfusion-list-kernels.sh b/SOURCES/buildsys-build-rpmfusion-list-kernels.sh new file mode 100755 index 0000000..85cbc91 --- /dev/null +++ b/SOURCES/buildsys-build-rpmfusion-list-kernels.sh @@ -0,0 +1,303 @@ +#!/bin/bash +# +# buildsys-build-list-kernels.sh - Helper script for building kernel module RPMs for Fedora +# +# Copyright (c) 2007 Thorsten Leemhuis +# 2012 Nicolas Chauvet +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# + +shopt -s extglob + +myver="0.2.1" +repo=rpmfusion +myprog="buildsys-build-${repo}-kerneldevpkgs" +supported_targetarchs="i686 x86_64 ppc ppc64 ppc64le ppc64p7 aarch64 armv5tel armv7l armv7hl s390x" +#This has changed in Fedora >= 20 +variant_sep="+" +if [[ -e ./buildsys-build-${repo}-kerneldevpkgs-current ]]; then + prefix=./buildsys-build-${repo}- +else + prefix=/usr/share/buildsys-build-${repo}/ +fi + + +requires= +filterfile= +target=$(uname -m) +#show_kernels="current" + +bb_list_kernels_default() +{ + echo ${1} +} + +bb_list_kernels_i686() +{ + bb_list_kernels_default ${1} + echo ${1}PAE +} + +bb_list_kernels_x86_64() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_ppc() +{ + bb_list_kernels_default ${1} + echo ${1}smp +} + +bb_list_kernels_ppc64() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_ppc64le() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_ppc64p7() +{ + bb_list_kernels_default ${1} +} + + +bb_list_kernels_armv5tel() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_armv7l() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_armv7hl() +{ + bb_list_kernels_default ${1} + echo ${1}lpae +} + +bb_list_kernels_aarch64() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_s390x() +{ + bb_list_kernels_default ${1} +} + +bb_list_kernels_sparc64() +{ + bb_list_kernels_default ${1} +} + + +print_kernels () +{ + local this_target=${1} + local this_grepoptions= + local this_command= + local this_kernellistfiles="${prefix}kerneldevpkgs-current" + + # error out if not defined + if (( $(stat -c%s "${this_kernellistfiles}") <= 1 )); then + echo "(no kernels defined)" + return 1 + fi + + # go + bb_list_kernels_${this_target} $(cat ${this_kernellistfiles}) | while read this_kernel; do + this_kernel_verrel=${this_kernel%%$kernels_known_variants} + this_kernel_variant=${this_kernel##$this_kernel_verrel} + + if [[ "${requires}" ]] || [[ "${buildrequires}" ]]; then + if echo ${this_kernel} | grep -- 'default' &> /dev/null; then + if [[ "${requires}" ]]; then + echo "Requires: kernel${this_kernel_variant:+-${this_kernel_variant}}-devel%{_isa}" + fi + + if [[ "${buildrequires}" ]]; then + echo "BuildRequires: kernel${this_kernel_variant:+-${this_kernel_variant}}-devel%{_isa}" + fi + else + if [[ "${requires}" ]]; then + echo "Requires: kernel-devel-uname-r = ${this_kernel_verrel}.${this_target}${this_kernel_variant:+${variant_sep}${this_kernel_variant}}" + fi + + if [[ "${buildrequires}" ]]; then + echo "BuildRequires: kernel-devel-uname-r = ${this_kernel_verrel}.${this_target}${this_kernel_variant:+${variant_sep}${this_kernel_variant}}" + fi + fi + else + if echo ${this_kernel} | grep -- 'default' &> /dev/null; then + # fixme: there are better/reliable ways to get the latest version, but this should do in the + # buildsys, the only place where this normally is used; hardcoding the variants is also not ideal + if [[ "${this_kernel_variant}" ]]; then + # non-standard-kernel + local real_version="$(ls -1r /usr/src/kernels/ | grep -v -e "${this_kernel_variant}PAE$" | head -n1)" + real_version=${real_version%%.$kernels_known_variants} + else + # standard kernel + local real_version="$(ls -1r /usr/src/kernels/ | grep -v -e "PAE$" -e "smp$" | head -n1)" + fi + if [[ "${real_version}" ]]; then + echo ${real_version}${this_kernel_variant:+.${this_kernel_variant}} + else + # should we fail here? + echo unknown.${this_target}${this_kernel_variant:+.${this_kernel_variant}} + fi + else + echo ${this_kernel_verrel}.${this_target}${this_kernel_variant:+${variant_sep}${this_kernel_variant}} + fi + fi + done +} + +print_requires () +{ + local this_kernel_verrel + local this_kernel_variant + + for this_arch in ${supported_targetarchs}; do + echo $'\n'"%ifarch ${this_arch}" + print_kernels ${this_arch} + echo "%endif" + done +} + +myprog_help () +{ + echo "Usage: $(basename ${0}) [OPTIONS]" + echo $'\n'"Prints a list of all avilable kernel-devel packages in the buildsys, as"$'\n'"defined by the buildsys-buildkmods-all package." + echo $'\n'"Available options:" +# echo " --filterfile -- filter the results with grep --file " +# echo " --current -- only list current up2date kernels" +# echo " --newest -- only list newly released kernels" + echo " --requires -- print list as requires with ifarch section for"$'\n'" further use in a RPM spec file package header" + echo " --prefix -- look for the data files in " + echo " --target -- target-arch (ignored if --requires is used)" + echo $'\n'"Supported target archs: ${supported_targetarchs}" +} + +while [ "${1}" ] ; do + case "${1}" in + --prefix) + shift + if [[ ! "${1}" ]] ; then + echo "Error: Please provide a prefix where to find data-files together with --prefix" >&2 + exit 2 + fi + prefix="${1}" + shift + ;; +# not used anymore: + --filterfile) + shift +# if [[ ! "${1}" ]] ; then +# echo "Error: Please provide path to a filter-file together with --filterfile" >&2 +# exit 2 +# elif [[ ! -e "${1}" ]]; then +# echo "Error: Filterfile ${1} not found" >&2 +# exit 2 +# fi +# filterfile="${1}" + shift + ;; + --target) + shift + if [[ ! "${1}" ]] ; then + echo "Error: Please provide one of the supported targets together with --target" >&2 + exit 2 + fi + + for this_arch in ${supported_targetarchs}; do + if [[ "${this_arch}" = "${1}" ]]; then + target="${1}" + shift + break + fi + done + + if [[ ! "${target}" ]]; then + echo "Error: ${1} is not a supported target" >&2 + exit 2 + fi + ;; + --requires) + shift + requires="true" + ;; + --buildrequires) + shift + buildrequires="true" + ;; +# not used anymore: + --current) + shift +# show_kernels="current" + ;; +# not used anymore: + --newest) + shift +# show_kernels="newest" + ;; + --help) + myprog_help + exit 0 + ;; + --version) + echo "${myprog} ${myver}" + exit 0 + ;; + *) + echo "Error: Unknown option '${1}'."$'\n' >&2 + myprog_help >&2 + exit 2 + ;; + esac +done + +# more init after parsing command line parameters +if [[ -e ./kmodtool-kernel-variants ]] ; then + kernels_known_variants="$(cat ./kmodtool-kernel-variants)" +elif [[ -e /usr/share/kmodtool/kernel-variants ]] ; then + kernels_known_variants="$(cat /usr/share/kmodtool/kernel-variants)" +else + echo "Could not find /usr/share/kmodtool/kernel-variants (required)" >&2 + exit 2 +fi +# sanity check to make sure it's really filled +if [[ ! "${kernels_known_variants}" ]] ; then + echo "could not determine known kernel variants" + exit 2 +fi + +# go +if [[ "${requires}" ]] || [[ "${buildrequires}" ]] ; then + print_requires +else + print_kernels ${target} +fi diff --git a/SPECS/buildsys-build-rpmfusion.spec b/SPECS/buildsys-build-rpmfusion.spec new file mode 100644 index 0000000..67a23eb --- /dev/null +++ b/SPECS/buildsys-build-rpmfusion.spec @@ -0,0 +1,529 @@ +%define repo rpmfusion + +Name: buildsys-build-%{repo} +Epoch: 11 +Version: 35 +Release: 0.9%{?dist} +Summary: Tools and files used by the %{repo} buildsys + +License: MIT +URL: http://rpmfusion.org + +Source2: %{name}-list-kernels.sh +Source5: %{name}-README +Source11: %{name}-kerneldevpkgs-current + +# provide this to avoid a error when generating akmods packages +Provides: buildsys-build-rpmfusion-kerneldevpkgs-akmod-%{_target_cpu} + +# unneeded +%define debug_package %{nil} + +%description +This package contains tools and lists of recent kernels that get used when +building kmod-packages. + +%package kerneldevpkgs-current +Summary: Meta-package to get all current kernel-devel packages into the buildroot +Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} +Provides: %{name}-kerneldevpkgs-%{_target_cpu} = %{?epoch:%{epoch}:}%{version}-%{release} +Provides: %{name}-kerneldevpkgs-current-%{_target_cpu} = %{?epoch:%{epoch}:}%{version}-%{release} +Provides: %{name}-kerneldevpkgs-newest-%{_target_cpu} = %{?epoch:%{epoch}:}%{version}-%{release} + +Requires: %{_bindir}/kmodtool +BuildRequires: %{_bindir}/kmodtool + +# we use our own magic here to safe ourself to cut'n'paste the BR +%{expand:%(bash %{SOURCE2} --current --requires --prefix %{_sourcedir}/%{name}- 2>/dev/null)} + +%description kerneldevpkgs-current +This is a meta-package used by the buildsystem to track the kernel-devel +packages for all current up-to-date kernels into the buildroot to build +kmods against them. + +%files kerneldevpkgs-current +%doc .tmp/current/README + +%prep +# for debugging purposes output the stuff we use during the rpm generation +bash %{SOURCE2} --current --requires --prefix %{_sourcedir}/%{name}- +sleep 2 + + +%build +echo nothing to build + + +%install +rm -rf $RPM_BUILD_ROOT .tmp/ +mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name} $RPM_BUILD_ROOT/%{_bindir} .tmp/newest .tmp/current + +# install the stuff we need +install -p -m 0755 %{SOURCE2} $RPM_BUILD_ROOT/%{_bindir}/%{name}-kerneldevpkgs +install -p -m 0644 %{SOURCE5} .tmp/current/README +ln -s kerneldevpkgs-current $RPM_BUILD_ROOT/%{_datadir}/%{name}/kerneldevpkgs-newest +install -p -m 0644 %{SOURCE11} $RPM_BUILD_ROOT/%{_datadir}/%{name}/kerneldevpkgs-current + + +# adjust default-path +sed -i 's|^default_prefix=.*|default_prefix=%{_datadir}/%{name}/|' \ + $RPM_BUILD_ROOT/%{_bindir}/%{name}-kerneldevpkgs + + +%files +%{_bindir}/* +%{_datadir}/%{name}/ + + + +%changelog +* Mon Jul 22 2024 Dmitriy Samoylik - 35-0.9 +- Rebuilt for MSVSphere 9.4 + +* Wed Jun 26 2024 Nicolas Chauvet - 11:35-0.9 +- rebuild for kernel 5.14.0-427.22.1.el9_4 + +* Fri Nov 24 2023 Nicolas Chauvet - 11:35-0.8 +- rebuild for kernel 5.14.0-362.8.1.el9_3 + +* Tue Nov 14 2023 Nicolas Chauvet - 11:35-0.7 +- rebuild for kernel 5.14.0-383.el9 + +* Tue May 16 2023 Nicolas Chauvet - 11:35-0.6 +- rebuild for kernel 5.14.0-284.11.1.el9_2 + +* Thu Nov 17 2022 Nicolas Chauvet - 11:35-0.5 +- rebuild for kernel 5.14.0-162.6.1.el9_1 + +* Thu Apr 14 2022 Nicolas Chauvet - 11:35-0.4 +- Restore dist tag + +* Wed Apr 06 2022 Nicolas Chauvet - 11:35-0.3 +- Bump for el9 + +* Sun Mar 14 2021 Nicolas Chauvet - 11:35-0.2 +- rebuild for kernel default + +* Sat Feb 13 2021 Leigh Scott - 11:35-0.1 +- Bump for 35 + +* Fri Aug 21 2020 Leigh Scott - 11:34-0.1 +- Bump for 34 + +* Mon Feb 17 2020 Leigh Scott - 11:33-0.1 +- Bump for 33 + +* Fri Aug 16 2019 Leigh Scott - 11:32-0.1 +- Bump for 32 + +* Sun Mar 31 2019 Leigh Scott - 10:31-0.1 +- Bump for 31 + +* Thu Aug 23 2018 Leigh Scott - 10:30-0.1 +- Bump for 30 + +* Mon Apr 16 2018 Nicolas Chauvet - 10:29-0.2 +- rebuild for kernel 4.16.2-300.fc28 + +* Tue Mar 06 2018 Nicolas Chauvet - 10:28-0.1 +- Bump for 29 + +* Mon Sep 04 2017 Nicolas Chauvet - 10:27-0.1 +- bump for 27 + +* Sat Mar 18 2017 Nicolas Chauvet - 10:26-0.4 +- rebuild for kernel 4.11.0-0.rc2.git2.2.fc26 + +* Sat Mar 18 2017 Nicolas Chauvet - 10:26-0.3 +- rebuild for kernel 4.11.0-0.rc2.git2.2.fc26 + +* Sat Aug 06 2016 Nicolas Chauvet - 10:26-0.2 +- Bump for 26 + +* Fri Jul 01 2016 Nicolas Chauvet - 10:25-0.2 +- rebuild for kernel 4.6.3-300.fc24.x86_64 + +* Sun Jun 12 2016 Nicolas Chauvet - 10:25-0.1 +- Update to 25 + +* Mon May 16 2016 Nicolas Chauvet - 10:24-0.2 +- Bump for 24 + +* Sat Oct 24 2015 Nicolas Chauvet - 10:23-1 +- rebuild for kernel 4.2.3-300.fc23 + +* Fri Aug 07 2015 Nicolas Chauvet - 10:22-7 +- rebuild for kernel 4.1.4-200.fc22 + +* Wed Aug 05 2015 Nicolas Chauvet - 10:22-6 +- rebuild for kernel 4.1.3-200.fc22 + +* Wed Aug 05 2015 Nicolas Chauvet - 10:22-5 +- rebuild for kernel 4.1.3-201.fc22 + +* Wed Jul 29 2015 Nicolas Chauvet - 10:22-4 +- rebuild for kernel 4.1.2-200.fc22 + +* Fri Jul 24 2015 Nicolas Chauvet - 10:22-3 +- rebuild for kernel 4.1.3-200.fc22 + +* Wed Jul 22 2015 Nicolas Chauvet - 10:22-2 +- rebuild for kernel 4.0.8-300.fc22 + +* Mon May 25 2015 Nicolas Chauvet - 10:22-1 +- rebuild for kernel 4.0.4-301.fc22 + +* Mon May 11 2015 Nicolas Chauvet - 10:22-0.2 +- Rebuilt for kernel 4.0.2-300.fc22 + +* Tue May 05 2015 Nicolas Chauvet - 10:22-0.1 +- Bump for f22 branch + +* Wed Apr 22 2015 Nicolas Chauvet - 10:21-20 +- rebuild for kernel 3.19.5-200.fc21 + +* Wed Apr 15 2015 Nicolas Chauvet - 10:21-19.1 +- rebuild for kernel 3.19.4-200.fc21 + +* Fri Apr 03 2015 Nicolas Chauvet - 10:21-18.1 +- Rebuilt for refresh repodata + +* Sat Mar 28 2015 Nicolas Chauvet - 10:21-18 +- rebuild for kernel 3.19.3-200.fc21 + +* Fri Mar 27 2015 Nicolas Chauvet - 10:21-17 +- rebuild for kernel 3.19.2-201.fc21 + +* Mon Mar 23 2015 Nicolas Chauvet - 10:21-16 +- rebuild for kernel 3.19.2-200.fc21 + +* Sat Mar 21 2015 Nicolas Chauvet - 10:21-15 +- rebuild for kernel 3.19.1-201.fc21 + +* Tue Mar 10 2015 Nicolas Chauvet - 10:21-14 +- rebuild for kernel 3.18.9-200.fc21 + +* Tue Mar 03 2015 Nicolas Chauvet - 10:21-13 +- rebuild for kernel 3.18.8-201.fc21 + +* Sat Feb 14 2015 Nicolas Chauvet - 10:21-12 +- rebuild for kernel 3.18.7-200.fc21 + +* Sun Feb 08 2015 Nicolas Chauvet - 10:21-11 +- rebuild for kernel 3.18.6-200.fc21 + +* Wed Feb 04 2015 Nicolas Chauvet - 10:21-10 +- rebuild for kernel 3.18.5-201.fc21 + +* Sat Jan 31 2015 Nicolas Chauvet - 10:21-9 +- rebuild for kernel 3.18.5-200.fc21 + +* Wed Jan 21 2015 Nicolas Chauvet - 10:21-8 +- rebuild for kernel 3.18.3-201.fc21 + +* Thu Jan 15 2015 Nicolas Chauvet - 10:21-7 +- rebuild for kernel 3.18.2-200.fc21 + +* Sat Jan 10 2015 Nicolas Chauvet - 10:21-6 +- rebuild for kernel 3.17.8-300.fc21 + +* Thu Dec 18 2014 Nicolas Chauvet - 10:21-5 +- rebuild for kernel 3.17.7-300.fc21 + +* Sun Dec 14 2014 Nicolas Chauvet - 10:21-4 +- rebuild for kernel 3.17.6-300.fc21 + +* Sat Dec 13 2014 Nicolas Chauvet - 10:21-2 +- rebuild for kernel 3.17.4-302.fc21 + +* Fri Dec 05 2014 Nicolas Chauvet - 10:21-1 +- rebuild for kernel 3.17.4-301.fc21 + +* Fri Jul 18 2014 Nicolas Chauvet - 10:21-0.2 +- Rebuilt to test fedora branched packages + +* Thu Dec 19 2013 Nicolas Chauvet - 10:21-0.1 +- Open Fedora-21/Rawhide + +* Sat Dec 14 2013 Nicolas Chauvet - 10:20-1 +- Tag for F-20 GA + +* Tue Dec 10 2013 Nicolas Chauvet - 10:20-0.6 +- rebuild for kernel 3.11.10-301.fc20 + +* Sat Dec 07 2013 Nicolas Chauvet - 10:20-0.5 +- Fix kernel variant + separator +- rebuild for kernel 3.11.10-300.fc20 +- Add support for aarch64 + +* Sun Dec 01 2013 Nicolas Chauvet - 10:20-0.3 +- rebuild for kernel 3.11.9-300.fc20 + +* Thu Nov 21 2013 Nicolas Chauvet - 10:20-0.2 +- Add lpae as a known kvarriant + +* Thu Aug 01 2013 Nicolas Chauvet - 10:20-0.1 +- Bump for F-20 + +* Fri Sep 07 2012 Nicolas Chauvet - 10:18-0.2 +- Bump for secondary + +* Mon Apr 16 2012 Nicolas Chauvet - 10:18-0.1 +- Build for default F-18 kernels + +* Tue Jan 03 2012 Nicolas Chauvet - 10:17-0.1 +- Build for default F-17 kernels + +* Wed Nov 02 2011 Nicolas Chauvet - 10:16-5 +- rebuild for kernel 3.1.0-7.fc16 + +* Sun Oct 30 2011 Nicolas Chauvet - 10:16-4 +- rebuild for kernel 3.1.0-5.fc16 + +* Thu Oct 27 2011 Nicolas Chauvet - 10:16-2 +- rebuild for kernel 3.1.0-1.fc16 + +* Sat Oct 22 2011 Nicolas Chauvet - 10:16-1 +- rebuild for kernel 3.1.0-0.rc10.git0.1.fc16 + +* Sat Oct 22 2011 Nicolas Chauvet - 10:16-0 +- Introduce F-16 + +* Sat May 28 2011 Thorsten Leemhuis - 10:15-1 +- rebuild for kernel 2.6.38.6-26.rc1.fc15 + +* Thu May 05 2011 Thorsten Leemhuis - 10:14-11 +- rebuild for kernel 2.6.35.13-91.fc14 + +* Sun Apr 24 2011 Thorsten Leemhuis - 10:14-10 +- rebuild for kernel 2.6.35.12-90.fc14 + +* Mon Apr 04 2011 Thorsten Leemhuis - 10:14-9 +- rebuild for kernel 2.6.35.12-88.fc14 + +* Sat Feb 12 2011 Thorsten Leemhuis - 10:14-8 +- rebuild for kernel 2.6.35.11-83.fc14 + +* Fri Dec 24 2010 Thorsten Leemhuis - 10:14-7 +- rebuild for kernel 2.6.35.10-74.fc14 + +* Wed Dec 22 2010 Thorsten Leemhuis - 10:14-6 +- rebuild for kernel 2.6.35.10-72.fc14 + +* Mon Dec 20 2010 Thorsten Leemhuis - 10:14-5 +- rebuild for kernel 2.6.35.10-69.fc14 + +* Fri Dec 17 2010 Thorsten Leemhuis - 10:14-4 +- rebuild for kernel 2.6.35.10-68.fc14 + +* Sun Dec 05 2010 Thorsten Leemhuis - 10:14-3 +- rebuild for kernel 2.6.35.9-64.fc14 + +* Mon Nov 01 2010 Thorsten Leemhuis - 10:14-2 +- rebuild for kernel 2.6.35.6-48.fc14 + +* Fri Oct 29 2010 Thorsten Leemhuis - 10:14-1 +- rebuild for kernel 2.6.35.6-45.fc14 + +* Sun Nov 22 2009 Thorsten Leemhuis - 10:13-0.1 +- no i586 in devel anymore, so adjust ExclusiveArch and + buildsys-build-rpmfusion-list-kernels.sh + +* Sun Jun 14 2009 Thorsten Leemhuis - 10:12-0.1 +- rebuild for rawhide + +* Fri Jun 05 2009 Thorsten Leemhuis - 10:11-0.11 +- rebuild for kernel 2.6.29.4-167.fc11 + +* Mon Apr 06 2009 Thorsten Leemhuis - 10:11-0.10 +- use isa to make sure we get the right kernel + +* Sun Mar 29 2009 Thorsten Leemhuis - 10:11-0.9 +- rebuild for new F11 features + +* Sun Feb 15 2009 Thorsten Leemhuis - 10:11-0.8 +- adjust for Fedora new kenrels scheme +- use a different way to generate lists + +* Sun Jan 11 2009 Thorsten Leemhuis - 10:11-0.7 +- rebuild, and just use the latest as default + +* Sun Jan 11 2009 Thorsten Leemhuis - 10:11-0.6 +- rebuild for kernel 2.6.29-0.25.rc0.git14.fc11 + +* Sun Jan 04 2009 Thorsten Leemhuis - 10:11-0.5 +- rebuild for kernel 2.6.29-0.9.rc0.git4.fc11 + +* Sun Dec 28 2008 Thorsten Leemhuis - 10:11-0.4 +- rebuild for kernel 2.6.28-3.fc11 + +* Sat Dec 27 2008 Thorsten Leemhuis - 10:11-0.3 +- just track in the latest kernel + +* Sun Dec 21 2008 Thorsten Leemhuis - 10:11-0.2 +- rebuild for kernel 2.6.28-0.140.rc9.git1.fc11 + +* Sun Dec 14 2008 Thorsten Leemhuis - 10:11-0.1 +- rebuild for kernel 2.6.28-0.127.rc8.git1.fc11 + +* Wed Nov 19 2008 Thorsten Leemhuis - 10:10-0.11 +- rebuild for kernel 2.6.27.5-117.fc10 + +* Tue Nov 18 2008 Thorsten Leemhuis - 10:10-0.10 +- rebuild for kernel 2.6.27.5-113.fc10 + +* Fri Nov 14 2008 Thorsten Leemhuis - 10:10-0.9 +- rebuild for kernel 2.6.27.5-109.fc10 + +* Sun Nov 09 2008 Thorsten Leemhuis - 10:10-0.8 +- rebuild for kernel 2.6.27.4-79.fc10 + +* Fri Nov 07 2008 Thorsten Leemhuis - 10:10-0.7 +- rebuilt + +* Sun Nov 02 2008 Thorsten Leemhuis - 10:10-0.6 +- rebuild for kernel 2.6.27.4-68.fc10 + +* Sun Oct 26 2008 Thorsten Leemhuis - 10:10-0.5 +- rebuild for kernel 2.6.27.4-47.rc3.fc10 + +* Sun Oct 19 2008 Thorsten Leemhuis - 10:10-0.3 +- install filterfile for ppc64 + +* Thu Oct 02 2008 Thorsten Leemhuis - 10:10-0.2 +- don't use the --buildrequires stuff, doesn't work in plague/mock +- provide compatible symlink for "newest" + +* Thu Oct 02 2008 Thorsten Leemhuis - 10:10-0.1 +- adjust things for rawhide +-- no xen kernels anymore, so no need for the whole newest and current handling +-- just require kernels unversioned if buildsys-build-rpmfusion-kerneldevpkgs + contains lines with "default" + +* Sun May 04 2008 Thorsten Leemhuis - 9:9.0-3 +- adjust output for new kernel scheme + +* Sun May 04 2008 Thorsten Leemhuis - 9:9.0-2 +- add epoch to provides/requires + +* Sun May 04 2008 Thorsten Leemhuis - 9:9.0-1 +- Build for F9 kernel + +* Mon Mar 31 2008 Thorsten Leemhuis - 2-2 +- Update to latest kernels 2.6.24.4-64.fc8 2.6.21.7-3.fc8xen + +* Sat Jan 26 2008 Thorsten Leemhuis - 9:1-2 +- s/akmods/akmod/ + +* Wed Jan 09 2008 Thorsten Leemhuis - 9:1-3 +- Build for rawhide +- disable kerneldevpkgs-newest and kerneldevpkgs-current packages, as we + don't maintain them for rawhide +- add epoch for new versioning scheme + +* Thu Dec 20 2007 Thorsten Leemhuis - 22-1 +- Update to latest kernels 2.6.21-2952.fc8xen 2.6.23.9-85.fc8 + +* Thu Dec 20 2007 Thorsten Leemhuis - 22-1 +- Update to latest kernels 2.6.21-2952.fc8xen 2.6.23.9-85.fc8 + +* Mon Dec 03 2007 Thorsten Leemhuis - 21-1 +- Update to latest kernels 2.6.23.8-63.fc8 2.6.21-2952.fc8xen + +* Sat Nov 10 2007 Thorsten Leemhuis - 20-1 +- Update to latest kernels 2.6.23.1-49.fc8 2.6.21-2950.fc8xen + +* Mon Oct 29 2007 Thorsten Leemhuis - 19-1 +- Update to latest kernels 2.6.23.1-41.fc8 2.6.21-2950.fc8xen + +* Sun Oct 28 2007 Thorsten Leemhuis - 18-1 +- Update to latest kernels 2.6.23.1-41.fc8 2.6.21-2950.fc8xen + +* Sun Oct 28 2007 Thorsten Leemhuis - 17-3 +- don't include file with know variants and instead properly fix the script + +* Sun Oct 28 2007 Thorsten Leemhuis - 17-2 +- include file with know variants as it is needed in buildsys + +* Sun Oct 28 2007 Thorsten Leemhuis - 17-1 +- split buildsys stuff out into a seperate package +- rename to buildsys-build-rpmfusion +- add proper obsoletes +- give subpackages and files more sane names and places + +* Sat Oct 27 2007 Thorsten Leemhuis - 16-2 +- Update to latest kernels 2.6.23.1-35.fc8 2.6.21-2950.fc8xen + +* Sat Oct 27 2007 Thorsten Leemhuis - 16-1 +- Update to latest kernels 2.6.23.1-35.fc8 2.6.21-2949.fc8xen + +* Thu Oct 18 2007 Thorsten Leemhuis - 15-1 +- rebuilt for latest kernels + +* Thu Oct 18 2007 Thorsten Leemhuis - 14-1 +- rebuilt for latest kernels + +* Thu Oct 18 2007 Thorsten Leemhuis - 13-1 +- rebuilt for latest kernels + +* Thu Oct 18 2007 Thorsten Leemhuis - 12-1 +- rebuilt for latest kernels + +* Fri Oct 12 2007 Thorsten Leemhuis - 11-1 +- rebuilt for latest kernels + +* Thu Oct 11 2007 Thorsten Leemhuis - 10-1 +- rebuilt for latest kernels + +* Wed Oct 10 2007 Thorsten Leemhuis - 9-2 +- fix typo + +* Wed Oct 10 2007 Thorsten Leemhuis - 9-1 +- rebuilt for latest kernels + +* Sun Oct 07 2007 Thorsten Leemhuis - 8-1 +- update for 2.6.23-0.224.rc9.git6.fc8 + +* Sun Oct 07 2007 Thorsten Leemhuis - 7-1 +- update for 2.6.23-0.222.rc9.git1.fc8 + +* Wed Oct 03 2007 Thorsten Leemhuis - 6-1 +- update for 2.6.23-0.217.rc9.git1.fc8 and 2.6.21-2947.fc8xen + +* Wed Oct 03 2007 Thorsten Leemhuis - 5-1 +- disable --all-but-latest stuff -- does not work as expected +- rename up2date list of kernels from "latest" to "current" as latest + and newest are to similar in wording; asjust script as well +- kmodtool: don't provide kernel-modules, not needed anymore with + the new stayle and hurts + +* Sun Sep 09 2007 Thorsten Leemhuis - 4-2 +- fix typos in spec file and list-kernels script +- interdependencies between the two buildsys-build packages needs to be + arch specific as well + +* Sun Sep 09 2007 Thorsten Leemhuis - 4-1 +- s/latests/latest/ +- update kernel lists for rawhide and test2 kernels +- make kmod-helpers-livna-list-kernels print BuildRequires for all kernels + as well; this is not needed and will slow build a bit as it will track + all the kernel-devel packages in, but that way we make sure they are really + available in the buildsys + +* Fri Sep 07 2007 Thorsten Leemhuis - 3-4 +- implement proper arch deps + +* Fri Sep 07 2007 Thorsten Leemhuis - 3-3 +- proper list of todays rawhide-kernels + +* Fri Sep 07 2007 Thorsten Leemhuis - 3-2 +- fix typo in kmod-helpers-livna-latests-kernels + +* Fri Sep 07 2007 Thorsten Leemhuis - 3-1 +- adjust for devel + +* Sat Sep 01 2007 Thorsten Leemhuis - 2-1 +- initial package