rpms/netfabb-basic/F-20 netfabb-basic.spec,1.1,1.2
by Miro Hrončok
Author: churchyard
Update of /cvs/nonfree/rpms/netfabb-basic/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv30308
Modified Files:
netfabb-basic.spec
Log Message:
* Fri Jul 11 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-3
- Rebuilt
Index: netfabb-basic.spec
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/F-20/netfabb-basic.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- netfabb-basic.spec 11 Jul 2014 19:06:53 -0000 1.1
+++ netfabb-basic.spec 11 Jul 2014 19:54:16 -0000 1.2
@@ -1,6 +1,6 @@
Name: netfabb-basic
Version: 5.1.1
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Freeware suite for STL editing
License: Redistributable
URL: http://www.netfabb.com/
@@ -115,6 +115,9 @@
%changelog
+* Fri Jul 11 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-3
+- Rebuilt
+
* Thu Jul 10 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-2
- Use Fedora's lib3ds
- Update desktop database
10 years, 4 months
rpms/netfabb-basic/devel netfabb-basic.spec,1.1,1.2
by Miro Hrončok
Author: churchyard
Update of /cvs/nonfree/rpms/netfabb-basic/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv30181
Modified Files:
netfabb-basic.spec
Log Message:
* Fri Jul 11 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-3
- Rebuilt
Index: netfabb-basic.spec
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/devel/netfabb-basic.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- netfabb-basic.spec 11 Jul 2014 19:06:08 -0000 1.1
+++ netfabb-basic.spec 11 Jul 2014 19:53:37 -0000 1.2
@@ -1,6 +1,6 @@
Name: netfabb-basic
Version: 5.1.1
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Freeware suite for STL editing
License: Redistributable
URL: http://www.netfabb.com/
@@ -115,6 +115,9 @@
%changelog
+* Fri Jul 11 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-3
+- Rebuilt
+
* Thu Jul 10 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-2
- Use Fedora's lib3ds
- Update desktop database
10 years, 4 months
rpms/netfabb-basic/F-19 netfabb-basic.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Miro Hrončok
Author: churchyard
Update of /cvs/nonfree/rpms/netfabb-basic/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29032/F-19
Modified Files:
.cvsignore sources
Added Files:
netfabb-basic.spec
Log Message:
Initial import (#3095)
--- NEW FILE netfabb-basic.spec ---
Name: netfabb-basic
Version: 5.1.1
Release: 2%{?dist}
Summary: Freeware suite for STL editing
License: Redistributable
URL: http://www.netfabb.com/
# keep both sources in the SRPM
# both files are downloaded from http://www.netfabb.com/downloadcenter.php?basic=1
# and have no public tarball urls
Source0: %{name}_%{version}_linux32.tar.gz
Source1: %{name}_%{version}_linux64.tar.gz
BuildRequires: desktop-file-utils
Requires: lib3ds%{?_isa} = 1.3.0
ExclusiveArch: %{ix86} x86_64
%global debug_package %{nil}
%description
netfabb Basic is a free (as in free beer) software for 3D Printing
and the STL file format. Numerous tools allow all steps of the fabrication
process: editing, repairing, positioning, slicing and exporting triangulated
CAD data. For professional use, the author offers commercial support and
additional modules.
%prep
%ifarch %{ix86}
%setup -qn %{name} -b0
%endif
%ifarch x86_64
%setup -qn %{name} -b1
%endif
%build
# nothing to do
%install
# the workflow is copied from install.sh, but we will not run it, as it doesn't respect the buildroot
# there are also several changes to make things more OK
# create directories
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_libdir}
mkdir -p %{buildroot}%{_datadir}/applications
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
for res in 16 22 24 32 48 128; do
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${res}x${res}/apps
done
mkdir -p %{buildroot}%{_mandir}/man1
mkdir -p %{buildroot}%{_datadir}/pixmaps
# binary and libraries
install -pm 0755 netfabb %{buildroot}%{_bindir}/%{name}
install -pm 0755 *.so.* %{buildroot}%{_libdir}/
# we have this in Fedora
rm %{buildroot}%{_libdir}/lib3ds-netfabb-1.so.3
ln -s lib3ds-1.so.3 %{buildroot}%{_libdir}/lib3ds-netfabb-1.so.3
# desktopfile
export DESKTOPFILE=%{buildroot}%{_datadir}/applications/%{name}.desktop
echo "[Desktop Entry]">${DESKTOPFILE}
echo "Type=Application">>${DESKTOPFILE}
echo "Version=1.0">>${DESKTOPFILE}
echo "Name=netfabb Basic">>${DESKTOPFILE}
echo "GenericName=STL-Viewer">>${DESKTOPFILE}
echo "GenericName[de]=STL-Betrachter">>${DESKTOPFILE}
echo "Comment=View and repair STL files">>${DESKTOPFILE}
echo "Comment[de]=STL Dateien betrachten und reparieren">>${DESKTOPFILE}
echo "Icon=%{name}">>${DESKTOPFILE}
echo "TryExec=%{_bindir}/%{name}">>${DESKTOPFILE}
echo "Exec=%{_bindir}/%{name} %U">>${DESKTOPFILE}
echo "Terminal=false">>${DESKTOPFILE}
echo "MimeType=application/netfabb;application/sla;application/x-3ds;model/mesh;image/x-3ds;model/x3d+xml;model/x3d+binary;">>${DESKTOPFILE}
echo "Categories=Graphics;3DGraphics;Viewer;">>${DESKTOPFILE}
echo "StartupNotify=true">>${DESKTOPFILE}
# man and icons
cp -p man/%{name}.1.gz %{buildroot}%{_mandir}/man1
cp -p icons/%{name}.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
for res in 16 22 24 32 48 128; do
cp -p icons/%{name}${res}.png %{buildroot}%{_datadir}/icons/hicolor/${res}x${res}/apps/%{name}.png
done
cp -p icons/%{name}48.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
%check
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%post
/sbin/ldconfig
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
/usr/bin/update-desktop-database &>/dev/null || :
%postun
/sbin/ldconfig
if [ $1 -eq 0 ] ; then
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
/usr/bin/update-desktop-database &>/dev/null || :
%posttrans
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
update-desktop-database &>/dev/null || :
%files
%doc README LICENSE changelog.gz Examples
%{_bindir}/%{name}
%{_libdir}/*
%{_datadir}/applications/*
%{_datadir}/pixmaps/*
%{_datadir}/icons/hicolor/*/apps/*
%{_mandir}/man1/*
%changelog
* Thu Jul 10 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-2
- Use Fedora's lib3ds
- Update desktop database
* Tue Apr 08 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-1
- Updated to 5.1.1
* Wed Mar 19 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.0-1
- Updated to 5.1.0
* Wed Jan 08 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.0.1-2
- Use install to copy files that needs different rights
- Rework icon cache scriptlets
* Tue Dec 31 2013 Miro Hrončok <mhroncok(a)redhat.com> - 5.0.1-1
- New version
* Tue Mar 26 2013 Miro Hrončok <mhroncok(a)redhat.com> - 4.9.5-1
- Initial release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/F-19/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 10 Jul 2014 20:24:04 -0000 1.1
+++ .cvsignore 11 Jul 2014 19:08:11 -0000 1.2
@@ -0,0 +1,2 @@
+netfabb-basic_5.1.1_linux32.tar.gz
+netfabb-basic_5.1.1_linux64.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/F-19/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 10 Jul 2014 20:24:05 -0000 1.1
+++ sources 11 Jul 2014 19:08:11 -0000 1.2
@@ -0,0 +1,2 @@
+480e2d417d5bbc8d6a6195621e9532cd netfabb-basic_5.1.1_linux32.tar.gz
+1f71f4f90a50b0857b2b3f1e3acfaa27 netfabb-basic_5.1.1_linux64.tar.gz
10 years, 4 months
rpms/netfabb-basic/F-20 netfabb-basic.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Miro Hrončok
Author: churchyard
Update of /cvs/nonfree/rpms/netfabb-basic/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv28821/F-20
Modified Files:
.cvsignore sources
Added Files:
netfabb-basic.spec
Log Message:
Initial import (#3095)
--- NEW FILE netfabb-basic.spec ---
Name: netfabb-basic
Version: 5.1.1
Release: 2%{?dist}
Summary: Freeware suite for STL editing
License: Redistributable
URL: http://www.netfabb.com/
# keep both sources in the SRPM
# both files are downloaded from http://www.netfabb.com/downloadcenter.php?basic=1
# and have no public tarball urls
Source0: %{name}_%{version}_linux32.tar.gz
Source1: %{name}_%{version}_linux64.tar.gz
BuildRequires: desktop-file-utils
Requires: lib3ds%{?_isa} = 1.3.0
ExclusiveArch: %{ix86} x86_64
%global debug_package %{nil}
%description
netfabb Basic is a free (as in free beer) software for 3D Printing
and the STL file format. Numerous tools allow all steps of the fabrication
process: editing, repairing, positioning, slicing and exporting triangulated
CAD data. For professional use, the author offers commercial support and
additional modules.
%prep
%ifarch %{ix86}
%setup -qn %{name} -b0
%endif
%ifarch x86_64
%setup -qn %{name} -b1
%endif
%build
# nothing to do
%install
# the workflow is copied from install.sh, but we will not run it, as it doesn't respect the buildroot
# there are also several changes to make things more OK
# create directories
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_libdir}
mkdir -p %{buildroot}%{_datadir}/applications
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
for res in 16 22 24 32 48 128; do
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${res}x${res}/apps
done
mkdir -p %{buildroot}%{_mandir}/man1
mkdir -p %{buildroot}%{_datadir}/pixmaps
# binary and libraries
install -pm 0755 netfabb %{buildroot}%{_bindir}/%{name}
install -pm 0755 *.so.* %{buildroot}%{_libdir}/
# we have this in Fedora
rm %{buildroot}%{_libdir}/lib3ds-netfabb-1.so.3
ln -s lib3ds-1.so.3 %{buildroot}%{_libdir}/lib3ds-netfabb-1.so.3
# desktopfile
export DESKTOPFILE=%{buildroot}%{_datadir}/applications/%{name}.desktop
echo "[Desktop Entry]">${DESKTOPFILE}
echo "Type=Application">>${DESKTOPFILE}
echo "Version=1.0">>${DESKTOPFILE}
echo "Name=netfabb Basic">>${DESKTOPFILE}
echo "GenericName=STL-Viewer">>${DESKTOPFILE}
echo "GenericName[de]=STL-Betrachter">>${DESKTOPFILE}
echo "Comment=View and repair STL files">>${DESKTOPFILE}
echo "Comment[de]=STL Dateien betrachten und reparieren">>${DESKTOPFILE}
echo "Icon=%{name}">>${DESKTOPFILE}
echo "TryExec=%{_bindir}/%{name}">>${DESKTOPFILE}
echo "Exec=%{_bindir}/%{name} %U">>${DESKTOPFILE}
echo "Terminal=false">>${DESKTOPFILE}
echo "MimeType=application/netfabb;application/sla;application/x-3ds;model/mesh;image/x-3ds;model/x3d+xml;model/x3d+binary;">>${DESKTOPFILE}
echo "Categories=Graphics;3DGraphics;Viewer;">>${DESKTOPFILE}
echo "StartupNotify=true">>${DESKTOPFILE}
# man and icons
cp -p man/%{name}.1.gz %{buildroot}%{_mandir}/man1
cp -p icons/%{name}.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
for res in 16 22 24 32 48 128; do
cp -p icons/%{name}${res}.png %{buildroot}%{_datadir}/icons/hicolor/${res}x${res}/apps/%{name}.png
done
cp -p icons/%{name}48.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
%check
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%post
/sbin/ldconfig
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
/usr/bin/update-desktop-database &>/dev/null || :
%postun
/sbin/ldconfig
if [ $1 -eq 0 ] ; then
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
/usr/bin/update-desktop-database &>/dev/null || :
%posttrans
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
update-desktop-database &>/dev/null || :
%files
%doc README LICENSE changelog.gz Examples
%{_bindir}/%{name}
%{_libdir}/*
%{_datadir}/applications/*
%{_datadir}/pixmaps/*
%{_datadir}/icons/hicolor/*/apps/*
%{_mandir}/man1/*
%changelog
* Thu Jul 10 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-2
- Use Fedora's lib3ds
- Update desktop database
* Tue Apr 08 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-1
- Updated to 5.1.1
* Wed Mar 19 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.0-1
- Updated to 5.1.0
* Wed Jan 08 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.0.1-2
- Use install to copy files that needs different rights
- Rework icon cache scriptlets
* Tue Dec 31 2013 Miro Hrončok <mhroncok(a)redhat.com> - 5.0.1-1
- New version
* Tue Mar 26 2013 Miro Hrončok <mhroncok(a)redhat.com> - 4.9.5-1
- Initial release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/F-20/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 10 Jul 2014 20:24:04 -0000 1.1
+++ .cvsignore 11 Jul 2014 19:06:53 -0000 1.2
@@ -0,0 +1,2 @@
+netfabb-basic_5.1.1_linux32.tar.gz
+netfabb-basic_5.1.1_linux64.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/F-20/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 10 Jul 2014 20:24:05 -0000 1.1
+++ sources 11 Jul 2014 19:06:53 -0000 1.2
@@ -0,0 +1,2 @@
+480e2d417d5bbc8d6a6195621e9532cd netfabb-basic_5.1.1_linux32.tar.gz
+1f71f4f90a50b0857b2b3f1e3acfaa27 netfabb-basic_5.1.1_linux64.tar.gz
10 years, 4 months
rpms/netfabb-basic/devel netfabb-basic.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Miro Hrončok
Author: churchyard
Update of /cvs/nonfree/rpms/netfabb-basic/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv28526/devel
Modified Files:
.cvsignore sources
Added Files:
netfabb-basic.spec
Log Message:
Initial import (#3095)
--- NEW FILE netfabb-basic.spec ---
Name: netfabb-basic
Version: 5.1.1
Release: 2%{?dist}
Summary: Freeware suite for STL editing
License: Redistributable
URL: http://www.netfabb.com/
# keep both sources in the SRPM
# both files are downloaded from http://www.netfabb.com/downloadcenter.php?basic=1
# and have no public tarball urls
Source0: %{name}_%{version}_linux32.tar.gz
Source1: %{name}_%{version}_linux64.tar.gz
BuildRequires: desktop-file-utils
Requires: lib3ds%{?_isa} = 1.3.0
ExclusiveArch: %{ix86} x86_64
%global debug_package %{nil}
%description
netfabb Basic is a free (as in free beer) software for 3D Printing
and the STL file format. Numerous tools allow all steps of the fabrication
process: editing, repairing, positioning, slicing and exporting triangulated
CAD data. For professional use, the author offers commercial support and
additional modules.
%prep
%ifarch %{ix86}
%setup -qn %{name} -b0
%endif
%ifarch x86_64
%setup -qn %{name} -b1
%endif
%build
# nothing to do
%install
# the workflow is copied from install.sh, but we will not run it, as it doesn't respect the buildroot
# there are also several changes to make things more OK
# create directories
mkdir -p %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_libdir}
mkdir -p %{buildroot}%{_datadir}/applications
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
for res in 16 22 24 32 48 128; do
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${res}x${res}/apps
done
mkdir -p %{buildroot}%{_mandir}/man1
mkdir -p %{buildroot}%{_datadir}/pixmaps
# binary and libraries
install -pm 0755 netfabb %{buildroot}%{_bindir}/%{name}
install -pm 0755 *.so.* %{buildroot}%{_libdir}/
# we have this in Fedora
rm %{buildroot}%{_libdir}/lib3ds-netfabb-1.so.3
ln -s lib3ds-1.so.3 %{buildroot}%{_libdir}/lib3ds-netfabb-1.so.3
# desktopfile
export DESKTOPFILE=%{buildroot}%{_datadir}/applications/%{name}.desktop
echo "[Desktop Entry]">${DESKTOPFILE}
echo "Type=Application">>${DESKTOPFILE}
echo "Version=1.0">>${DESKTOPFILE}
echo "Name=netfabb Basic">>${DESKTOPFILE}
echo "GenericName=STL-Viewer">>${DESKTOPFILE}
echo "GenericName[de]=STL-Betrachter">>${DESKTOPFILE}
echo "Comment=View and repair STL files">>${DESKTOPFILE}
echo "Comment[de]=STL Dateien betrachten und reparieren">>${DESKTOPFILE}
echo "Icon=%{name}">>${DESKTOPFILE}
echo "TryExec=%{_bindir}/%{name}">>${DESKTOPFILE}
echo "Exec=%{_bindir}/%{name} %U">>${DESKTOPFILE}
echo "Terminal=false">>${DESKTOPFILE}
echo "MimeType=application/netfabb;application/sla;application/x-3ds;model/mesh;image/x-3ds;model/x3d+xml;model/x3d+binary;">>${DESKTOPFILE}
echo "Categories=Graphics;3DGraphics;Viewer;">>${DESKTOPFILE}
echo "StartupNotify=true">>${DESKTOPFILE}
# man and icons
cp -p man/%{name}.1.gz %{buildroot}%{_mandir}/man1
cp -p icons/%{name}.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
for res in 16 22 24 32 48 128; do
cp -p icons/%{name}${res}.png %{buildroot}%{_datadir}/icons/hicolor/${res}x${res}/apps/%{name}.png
done
cp -p icons/%{name}48.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
%check
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%post
/sbin/ldconfig
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
/usr/bin/update-desktop-database &>/dev/null || :
%postun
/sbin/ldconfig
if [ $1 -eq 0 ] ; then
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
/usr/bin/update-desktop-database &>/dev/null || :
%posttrans
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
update-desktop-database &>/dev/null || :
%files
%doc README LICENSE changelog.gz Examples
%{_bindir}/%{name}
%{_libdir}/*
%{_datadir}/applications/*
%{_datadir}/pixmaps/*
%{_datadir}/icons/hicolor/*/apps/*
%{_mandir}/man1/*
%changelog
* Thu Jul 10 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-2
- Use Fedora's lib3ds
- Update desktop database
* Tue Apr 08 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.1-1
- Updated to 5.1.1
* Wed Mar 19 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.1.0-1
- Updated to 5.1.0
* Wed Jan 08 2014 Miro Hrončok <mhroncok(a)redhat.com> - 5.0.1-2
- Use install to copy files that needs different rights
- Rework icon cache scriptlets
* Tue Dec 31 2013 Miro Hrončok <mhroncok(a)redhat.com> - 5.0.1-1
- New version
* Tue Mar 26 2013 Miro Hrončok <mhroncok(a)redhat.com> - 4.9.5-1
- Initial release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 10 Jul 2014 20:24:04 -0000 1.1
+++ .cvsignore 11 Jul 2014 19:06:08 -0000 1.2
@@ -0,0 +1,2 @@
+netfabb-basic_5.1.1_linux32.tar.gz
+netfabb-basic_5.1.1_linux64.tar.gz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/netfabb-basic/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 10 Jul 2014 20:24:05 -0000 1.1
+++ sources 11 Jul 2014 19:06:08 -0000 1.2
@@ -0,0 +1,2 @@
+480e2d417d5bbc8d6a6195621e9532cd netfabb-basic_5.1.1_linux32.tar.gz
+1f71f4f90a50b0857b2b3f1e3acfaa27 netfabb-basic_5.1.1_linux64.tar.gz
10 years, 4 months
rpms/wl-kmod/F-20 wl-kmod.spec,1.111,1.112
by Nicolas Viéville
Author: nvieville
Update of /cvs/nonfree/rpms/wl-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv32599
Modified Files:
wl-kmod.spec
Log Message:
* Fri Jul 11 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-6.1
- Rebuild for akmod
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-20/wl-kmod.spec,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- wl-kmod.spec 8 Jul 2014 21:56:30 -0000 1.111
+++ wl-kmod.spec 11 Jul 2014 05:07:20 -0000 1.112
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.141
-Release: 6%{?dist}
+Release: 6%{?dist}.1
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -94,6 +94,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Jul 11 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-6.1
+- Rebuild for akmod
+
* Tue Jul 08 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-6
- Added late patch for __devinit since kernel 3.8
- Modified patch to build for kernel >= 3.15
10 years, 4 months
rpms/nvidia-304xx-kmod/devel .cvsignore, 1.6, 1.7 nvidia-304xx-kmod.spec, 1.16, 1.17 sources, 1.6, 1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv30205/devel
Modified Files:
.cvsignore nvidia-304xx-kmod.spec sources
Log Message:
Update to 304.123
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 14 Mar 2014 06:47:35 -0000 1.6
+++ .cvsignore 10 Jul 2014 20:34:20 -0000 1.7
@@ -1 +1 @@
-nvidia-kmod-data-304.121.tar.xz
+nvidia-kmod-data-304.123.tar.xz
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/nvidia-304xx-kmod.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- nvidia-304xx-kmod.spec 14 Mar 2014 06:47:35 -0000 1.16
+++ nvidia-304xx-kmod.spec 10 Jul 2014 20:34:20 -0000 1.17
@@ -6,7 +6,7 @@
%global buildforkernels akmod
Name: nvidia-304xx-kmod
-Version: 304.121
+Version: 304.123
# Taken over by kmodtool
Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
@@ -79,6 +79,9 @@
%changelog
+* Thu Jul 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1
+- Update to 304.123
+
* Fri Mar 14 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.121-1
- Update to 304.121
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 14 Mar 2014 06:47:35 -0000 1.6
+++ sources 10 Jul 2014 20:34:20 -0000 1.7
@@ -1 +1 @@
-f7588b76c1591013615fbd10441c4372 nvidia-kmod-data-304.121.tar.xz
+ba43b5a5f4c780260756cc8b721470bb nvidia-kmod-data-304.123.tar.xz
10 years, 4 months
rpms/nvidia-304xx-kmod/F-20 .cvsignore, 1.5, 1.6 nvidia-304xx-kmod.spec, 1.42, 1.43 sources, 1.6, 1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv30205/F-20
Modified Files:
.cvsignore nvidia-304xx-kmod.spec sources
Log Message:
Update to 304.123
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 24 Apr 2014 08:00:03 -0000 1.5
+++ .cvsignore 10 Jul 2014 20:34:20 -0000 1.6
@@ -1 +1 @@
-nvidia-kmod-data-304.121.tar.xz
+nvidia-kmod-data-304.123.tar.xz
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20/nvidia-304xx-kmod.spec,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- nvidia-304xx-kmod.spec 8 Jul 2014 11:33:51 -0000 1.42
+++ nvidia-304xx-kmod.spec 10 Jul 2014 20:34:20 -0000 1.43
@@ -3,12 +3,12 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels newest
+#global buildforkernels akmod
Name: nvidia-304xx-kmod
-Version: 304.121
+Version: 304.123
# Taken over by kmodtool
-Release: 1%{?dist}.10
+Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -79,99 +79,23 @@
%changelog
-* Tue Jul 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.10
-- Rebuilt for kernel
-
-* Tue Jul 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.9
-- Rebuilt for kernel
-
-* Tue Jul 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.8
-- Rebuilt for kernel
-
-* Tue Jun 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.7
-- Rebuilt for kernel
-
-* Fri Jun 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.6
-- Rebuilt for kernel
-
-* Sun Jun 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.5
-- Rebuilt for kernel
-
-* Tue Jun 03 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.4
-- Rebuilt for kernel
-
-* Thu May 15 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.3
-- Rebuilt for kernel
-
-* Thu May 08 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.2
-- Rebuilt for kernel
+* Thu Jul 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1
+- Update to 304.123
-* Wed Apr 30 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.121-1.1
-- Rebuilt for kernel
-
-* Thu Apr 24 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.121-1
+* Fri Mar 14 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.121-1
- Update to 304.121
-* Wed Apr 16 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.12
-- Rebuilt for kernel
-
-* Fri Apr 04 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.11
-- Rebuilt for kernel
-
-* Wed Apr 02 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.10
-- Rebuilt for kernel
-
-* Tue Mar 25 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.9
-- Rebuilt for kernel
-
-* Sun Mar 09 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.8
-- Rebuilt for kernel
-
-* Tue Mar 04 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.7
-- Rebuilt for kernel
-
-* Tue Feb 25 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.6
-- Rebuilt for kernel
-
-* Mon Feb 24 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.5
-- Rebuilt for kernel
-
-* Mon Feb 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.4
-- Rebuilt for kernel
-
-* Sat Feb 15 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.2
-- Rebuilt for kernel
-
-* Wed Feb 12 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-2.1
-- Rebuilt for kernel
-
-* Wed Feb 12 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.119-2
-- rebuilt for patch changes
-
-* Fri Feb 07 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-1.3
-- Rebuilt for kernel
-
-* Thu Jan 30 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-1.2
-- Rebuilt for kernel
-
-* Tue Jan 28 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.119-1.1
-- Rebuilt for kernel
-
* Fri Jan 24 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.119-1
- Update to 304.119
-- patch for 3.13.0 kernel
-* Fri Jan 17 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.117-1.4
-- Rebuilt for kernel
-
-* Sun Jan 12 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.117-1.3
-- Rebuilt for kernel
+* Tue Jan 21 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-4
+- make more changes to 3.13 kernel patch
-* Wed Dec 25 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.117-1.2
-- Rebuilt for kernel
+* Mon Jan 13 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-3
+- fix 3.13.0 kernel patch for EFI systems with CSM disabled
-* Fri Dec 20 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.117-1.1
-- Rebuilt for kernel
+* Mon Dec 23 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-2
+- patch for 3.13.0 kernel
* Sat Dec 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.117-1
- Update to 304.117
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 24 Apr 2014 08:00:03 -0000 1.6
+++ sources 10 Jul 2014 20:34:20 -0000 1.7
@@ -1 +1 @@
-f7588b76c1591013615fbd10441c4372 nvidia-kmod-data-304.121.tar.xz
+ba43b5a5f4c780260756cc8b721470bb nvidia-kmod-data-304.123.tar.xz
10 years, 4 months
rpms/xorg-x11-drv-nvidia-304xx/F-20 .cvsignore, 1.5, 1.6 sources, 1.6, 1.7 xorg-x11-drv-nvidia-304xx.spec, 1.12, 1.13
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29852/F-20
Modified Files:
.cvsignore sources xorg-x11-drv-nvidia-304xx.spec
Log Message:
Update to 304.123
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-20/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 24 Apr 2014 07:36:09 -0000 1.5
+++ .cvsignore 10 Jul 2014 20:27:46 -0000 1.6
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-304.121.run
-NVIDIA-Linux-x86_64-304.121.run
+NVIDIA-Linux-x86-304.123.run
+NVIDIA-Linux-x86_64-304.123.run
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-20/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 24 Apr 2014 07:36:09 -0000 1.6
+++ sources 10 Jul 2014 20:27:47 -0000 1.7
@@ -1,2 +1,2 @@
-b8c950f0a30a6e1f503630fbd0ca8ab9 NVIDIA-Linux-x86-304.121.run
-ccc9f0c45fb68855c456428178f4b4e2 NVIDIA-Linux-x86_64-304.121.run
+52307054483f5c40391608ce69114d48 NVIDIA-Linux-x86-304.123.run
+1eaf806d3a0a7422e85b7149608223dc NVIDIA-Linux-x86_64-304.123.run
Index: xorg-x11-drv-nvidia-304xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-20/xorg-x11-drv-nvidia-304xx.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- xorg-x11-drv-nvidia-304xx.spec 24 Apr 2014 07:36:09 -0000 1.12
+++ xorg-x11-drv-nvidia-304xx.spec 10 Jul 2014 20:27:47 -0000 1.13
@@ -6,7 +6,7 @@
%global __strip /bin/true
Name: xorg-x11-drv-nvidia-304xx
-Version: 304.121
+Version: 304.123
Release: 1%{?dist}
Summary: NVIDIA's 304xx serie proprietary display driver for NVIDIA graphic cards
@@ -395,7 +395,10 @@
%changelog
-* Thu Apr 24 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.121-1
+* Thu Jul 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1
+- Update to 304.123
+
+* Thu Mar 13 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.121-1
- Update to 304.121
* Fri Jan 24 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.119-1
10 years, 4 months
rpms/xorg-x11-drv-nvidia-304xx/devel .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 xorg-x11-drv-nvidia-304xx.spec, 1.12, 1.13
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29852/devel
Modified Files:
.cvsignore sources xorg-x11-drv-nvidia-304xx.spec
Log Message:
Update to 304.123
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 14 Mar 2014 06:39:33 -0000 1.6
+++ .cvsignore 10 Jul 2014 20:27:47 -0000 1.7
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-304.121.run
-NVIDIA-Linux-x86_64-304.121.run
+NVIDIA-Linux-x86-304.123.run
+NVIDIA-Linux-x86_64-304.123.run
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 14 Mar 2014 06:39:33 -0000 1.6
+++ sources 10 Jul 2014 20:27:47 -0000 1.7
@@ -1,2 +1,2 @@
-b8c950f0a30a6e1f503630fbd0ca8ab9 NVIDIA-Linux-x86-304.121.run
-ccc9f0c45fb68855c456428178f4b4e2 NVIDIA-Linux-x86_64-304.121.run
+52307054483f5c40391608ce69114d48 NVIDIA-Linux-x86-304.123.run
+1eaf806d3a0a7422e85b7149608223dc NVIDIA-Linux-x86_64-304.123.run
Index: xorg-x11-drv-nvidia-304xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/xorg-x11-drv-nvidia-304xx.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- xorg-x11-drv-nvidia-304xx.spec 14 Mar 2014 06:39:33 -0000 1.12
+++ xorg-x11-drv-nvidia-304xx.spec 10 Jul 2014 20:27:47 -0000 1.13
@@ -6,7 +6,7 @@
%global __strip /bin/true
Name: xorg-x11-drv-nvidia-304xx
-Version: 304.121
+Version: 304.123
Release: 1%{?dist}
Summary: NVIDIA's 304xx serie proprietary display driver for NVIDIA graphic cards
@@ -395,6 +395,9 @@
%changelog
+* Thu Jul 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1
+- Update to 304.123
+
* Thu Mar 13 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.121-1
- Update to 304.121
10 years, 4 months