(→Naming of Octave packages: versioning problem) |
(Update to new specs) |
||
Line 18: | Line 18: | ||
<pre> | <pre> | ||
% | %global octpkg image | ||
Name: octave-%{ | Name: octave-%{octpkg} | ||
Version: 1. | Version: 1.0.13 | ||
Release: 1%{?dist} | Release: 1%{?dist} | ||
Summary: | Summary: Image processing for Octave | ||
Group: Applications/Engineering | Group: Applications/Engineering | ||
License: GPLv2+ | License: GPLv2+ | ||
URL: http://octave.sourceforge.net | URL: http://octave.sourceforge.net | ||
Source0: http://downloads.sourceforge.net/octave/%{ | Source0: http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz | ||
Requires: octave(api) = %{octave_api} | Requires: octave(api) = %{octave_api} | ||
BuildRequires: octave-devel | BuildRequires: octave-devel | ||
BuildRequires: gcc-c++ | BuildRequires: gcc-c++ | ||
%description | %description | ||
The Octave-forge Image package provides functions for processing images. The | |||
package also provides functions for feature extraction, image statistics, | |||
spatial and geometric transformations, morphological operations, linear | |||
filtering, and much more. | |||
%prep | %prep | ||
%setup -q -n %{ | %setup -q -n %{octpkg}-%{version} | ||
%build | %build | ||
pushd src | |||
% | %octave_pkg_build | ||
%install | %install | ||
rm -rf %{buildroot} | rm -rf %{buildroot} | ||
%octave_pkg_install | |||
%clean | %clean | ||
Line 59: | Line 60: | ||
%post | %post | ||
% | %octave_cmd pkg rebuild | ||
%preun | %preun | ||
% | %octave_pkg_preun | ||
%postun | %postun | ||
%octave_cmd pkg rebuild | |||
%files | %files | ||
%defattr(-,root,root) | %defattr(-,root,root) | ||
%{ | %{octpkglibdir} | ||
%dir %{ | %dir %{octpkgdir} | ||
%{ | %{octpkgdir}/*.m | ||
% | %doc %{octpkgdir}/doc-cache | ||
%doc %{ | %dir %{octpkgdir}/packinfo | ||
%doc %{ | %doc %{octpkgdir}/packinfo/COPYING | ||
%{ | %doc %{octpkgdir}/packinfo/DESCRIPTION | ||
%{ | %{octpkgdir}/packinfo/.autoload | ||
%{ | %{octpkgdir}/packinfo/INDEX | ||
%{octpkgdir}/packinfo/on_uninstall.m | |||
%changelog | %changelog | ||
* | * Sat Feb 12 2011 Orion Poplawski <orion@cora.nwra.com> 1.0.13-1 | ||
- | - Initial Fedora package | ||
</pre> | </pre> | ||
Line 88: | Line 90: | ||
<pre> | <pre> | ||
% | %global octpkg image | ||
Name: octave-%{ | Name: octave-%{octpkg} | ||
Version: 1. | Version: 1.0.13 | ||
Release: 1%{?dist} | Release: 1%{?dist} | ||
Summary: | Summary: Image processing for Octave | ||
Group: Applications/Engineering | Group: Applications/Engineering | ||
License: GPLv2+ | License: GPLv2+ | ||
URL: http://octave.sourceforge.net | URL: http://octave.sourceforge.net | ||
Source0: http://downloads.sourceforge.net/octave/%{ | Source0: http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz | ||
BuildArch: noarch | |||
Requires: octave | Requires: octave | ||
BuildRequires: octave-devel | BuildRequires: octave-devel | ||
BuildRequires: gcc-c++ | BuildRequires: gcc-c++ | ||
%description | %description | ||
The Octave-forge Image package provides functions for processing images. The | |||
package also provides functions for feature extraction, image statistics, | |||
spatial and geometric transformations, morphological operations, linear | |||
filtering, and much more. | |||
%prep | %prep | ||
%setup -q -n %{ | %setup -q -n %{octpkg}-%{version} | ||
%build | %build | ||
%install | %install | ||
rm -rf %{buildroot} | rm -rf %{buildroot} | ||
%octave_pkg_install | |||
%clean | %clean | ||
Line 127: | Line 131: | ||
%post | %post | ||
% | %octave_cmd pkg rebuild | ||
%preun | %preun | ||
% | %octave_pkg_preun | ||
%postun | %postun | ||
%octave_cmd pkg rebuild | |||
%files | %files | ||
%defattr(-,root,root) | %defattr(-,root,root) | ||
%dir %{ | %dir %{octpkgdir} | ||
%{ | %{octpkgdir}/*.m | ||
% | %doc %{octpkgdir}/doc-cache | ||
%doc %{ | %dir %{octpkgdir}/packinfo | ||
%doc %{ | %doc %{octpkgdir}/packinfo/COPYING | ||
%{ | %doc %{octpkgdir}/packinfo/DESCRIPTION | ||
%{ | %{octpkgdir}/packinfo/.autoload | ||
%{ | %{octpkgdir}/packinfo/INDEX | ||
%{octpkgdir}/packinfo/on_uninstall.m | |||
%changelog | %changelog | ||
* | * Sat Feb 12 2011 Orion Poplawski <orion@cora.nwra.com> 1.0.13-1 | ||
- | - Initial Fedora package | ||
</pre> | </pre> | ||
Line 157: | Line 162: | ||
* Don't require a specific api version | * Don't require a specific api version | ||
* No build step needed, just install from the source tar ball | * No build step needed, just install from the source tar ball | ||
* Noarch packages don't install anything into %{ | * Noarch packages don't install anything into %{octpkglibdir} | ||
== Octave packaging tips == | == Octave packaging tips == |
Revision as of 18:57, 12 February 2011
How to package Octave packages
What is Octave?
The definition from website says:
"GNU Octave is a high-level language, primarily intended for numerical computations. It provides a convenient command line interface for solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab. It may also be used as a batch-oriented language."
If you are interested in packaging Octave packages, you should check here for upstream sources:
Spec Templates for Octave packages
There are two types of Octave packages: arch-specific and noarch.
Arch specific Octave spec template
%global octpkg image Name: octave-%{octpkg} Version: 1.0.13 Release: 1%{?dist} Summary: Image processing for Octave Group: Applications/Engineering License: GPLv2+ URL: http://octave.sourceforge.net Source0: http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz Requires: octave(api) = %{octave_api} BuildRequires: octave-devel BuildRequires: gcc-c++ %description The Octave-forge Image package provides functions for processing images. The package also provides functions for feature extraction, image statistics, spatial and geometric transformations, morphological operations, linear filtering, and much more. %prep %setup -q -n %{octpkg}-%{version} %build pushd src %octave_pkg_build %install rm -rf %{buildroot} %octave_pkg_install %clean rm -rf %{buildroot} %post %octave_cmd pkg rebuild %preun %octave_pkg_preun %postun %octave_cmd pkg rebuild %files %defattr(-,root,root) %{octpkglibdir} %dir %{octpkgdir} %{octpkgdir}/*.m %doc %{octpkgdir}/doc-cache %dir %{octpkgdir}/packinfo %doc %{octpkgdir}/packinfo/COPYING %doc %{octpkgdir}/packinfo/DESCRIPTION %{octpkgdir}/packinfo/.autoload %{octpkgdir}/packinfo/INDEX %{octpkgdir}/packinfo/on_uninstall.m %changelog * Sat Feb 12 2011 Orion Poplawski <orion@cora.nwra.com> 1.0.13-1 - Initial Fedora package
Noarch Octave spec template
%global octpkg image Name: octave-%{octpkg} Version: 1.0.13 Release: 1%{?dist} Summary: Image processing for Octave Group: Applications/Engineering License: GPLv2+ URL: http://octave.sourceforge.net Source0: http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz BuildArch: noarch Requires: octave BuildRequires: octave-devel BuildRequires: gcc-c++ %description The Octave-forge Image package provides functions for processing images. The package also provides functions for feature extraction, image statistics, spatial and geometric transformations, morphological operations, linear filtering, and much more. %prep %setup -q -n %{octpkg}-%{version} %build %install rm -rf %{buildroot} %octave_pkg_install %clean rm -rf %{buildroot} %post %octave_cmd pkg rebuild %preun %octave_pkg_preun %postun %octave_cmd pkg rebuild %files %defattr(-,root,root) %dir %{octpkgdir} %{octpkgdir}/*.m %doc %{octpkgdir}/doc-cache %dir %{octpkgdir}/packinfo %doc %{octpkgdir}/packinfo/COPYING %doc %{octpkgdir}/packinfo/DESCRIPTION %{octpkgdir}/packinfo/.autoload %{octpkgdir}/packinfo/INDEX %{octpkgdir}/packinfo/on_uninstall.m %changelog * Sat Feb 12 2011 Orion Poplawski <orion@cora.nwra.com> 1.0.13-1 - Initial Fedora package
Summary of differences between arch-specific and noarch octave packages
- Noarch packages set
BuildArch: noarch
- Don't require a specific api version
- No build step needed, just install from the source tar ball
- Noarch packages don't install anything into %{octpkglibdir}
Octave packaging tips
Naming of Octave packages
Packages of Octave packages have their own naming scheme. They should take into account the upstream name of the package. This makes a package name format of octave-$NAME
. When in doubt, use the name of the module that you type to import it in octave.
Examples:
octave-java (Octave package named java) octave-gsl (Octave package named gsl)
Limitations in the pkg function of octave (pkg.m) means that versioning of octave packages requires that the package version must have a MAJOR.MINOR.MICRO format. Failing to use this format results in octave not recognising binary package components in %prefix/libexec.
unset TERM
Due to an issue with octave emitting an escape sequence (due to readline library) on startup, you need to unset the TERM variable in the %build and %install sections.
Updating the octave package database
Octave maintains a list of installed packages in /usr/share/octave/octave_packages that needs to be updated on package install and removal. This file is in an octave plain-text format.
The contents of the /usr/share/octave/packages/ directory are scanned for the follwing files when performing a pkg('rebuild') from within octave.
- /usr/share/octave/packages/NAMEOFPACKAGE/packinfo/COPYING
- /usr/share/octave/packages/NAMEOFPACKAGE/packinfo/DESCRIPTION
If these files are not present in any given NAMEOFPACKAGE directory, then octave will silently skip the folder and fail to index it correctly.
Octave will use the contents of octave_packages to modify its path at startup, allowing octave to find plugins.
Documentation files
All package files are installed into the octave directories. The COPYING and DESCRIPTION files are documentation and need to be marked as %doc. The others are not.