packaging
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 131
Solaris packaging tools 1.2.1
PkgTools are a set of utilities which are used to aid in the building of native Solaris packages. more>>
PkgTools are a set of utilities which are used to aid in the building of native Solaris packages. There are five separate utilities which are used to build packages, prepare a chroot() environment to install software into prior to building a package, copy package control scripts into place, a tool to aid in the starting of new projects, and a tool to check that packages are installed correctly.
Currently there are four tools in this set:
build-pkg
This is used to actually build the Solaris package, calling chroot-install if required.
chroot-install
A utility which creates an environment suitable for calling chroot() on and allowing the user to install software into it.
proj-template
A utility which asks the user questions and then copies files and directories from a specified template directory and performs macro expansion on them. This is designed to aid in the initial setup of the home directory of a new project.
simple-proj
A very similar utility to proj-template. However it does not ask questions and only deals with the setting up of a simple InstallPackage. This is useful when dealing with 3rd party software which just needs to have a number of package control scripts put into the package.
check-pkg
A utility which can be used to check to see if packages are installed correctly. It can also be given a pathname to check on which packages said pathname is a part of.
It should be noted that simple-proj is really proj-template wearing a different hat.
<<lessCurrently there are four tools in this set:
build-pkg
This is used to actually build the Solaris package, calling chroot-install if required.
chroot-install
A utility which creates an environment suitable for calling chroot() on and allowing the user to install software into it.
proj-template
A utility which asks the user questions and then copies files and directories from a specified template directory and performs macro expansion on them. This is designed to aid in the initial setup of the home directory of a new project.
simple-proj
A very similar utility to proj-template. However it does not ask questions and only deals with the setting up of a simple InstallPackage. This is useful when dealing with 3rd party software which just needs to have a number of package control scripts put into the package.
check-pkg
A utility which can be used to check to see if packages are installed correctly. It can also be given a pathname to check on which packages said pathname is a part of.
It should be noted that simple-proj is really proj-template wearing a different hat.
Download (0.14MB)
Added: 2005-11-18 License: BSD License Price:
1435 downloads
Slackware Packaging Scripts 04-30-2005
Slackware Packaging Scripts provides a collection of scripts for simple automated Slackware packaging. more>>
Slackware Packaging Scripts provides a collection of scripts for simple automated Slackware packaging.
Slacktools is a collection of simple shell scripts that can be used to build most source tarballs into slackware packages.
They are probably the least advanced of any automated packaging system, but they work surprisingly well for source that supports the DESTDIR variable [correctly].
Scripts provided:
.backoutpkg
.slackconfig
.slackmake
.slackpack
<<lessSlacktools is a collection of simple shell scripts that can be used to build most source tarballs into slackware packages.
They are probably the least advanced of any automated packaging system, but they work surprisingly well for source that supports the DESTDIR variable [correctly].
Scripts provided:
.backoutpkg
.slackconfig
.slackmake
.slackpack
Download (MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
566 downloads
Wx::Perl::Packager 0.07
Wx::Perl::Packager provides a module to assist packaging Wx based applications with PAR, ActiveState PerlApp / PDK and Perl more>>
Wx::Perl::Packager provides a module to assist packaging Wx based applications with PAR, ActiveState PerlApp / PDK and Perl
A module to assist packaging Wx based applications with PAR, ActiveState PerlApp / PDK and Perl2Exe. All that is needed is that you include a use statement as the first item in your BEGIN blocks. For Perl2Exe, an additional use statement outside any BEGIN block ensures correct object cleanup.
Also provided are:
wxpdk
wxpar
which assist in packaging the wxWidgets DLLs.
<<lessA module to assist packaging Wx based applications with PAR, ActiveState PerlApp / PDK and Perl2Exe. All that is needed is that you include a use statement as the first item in your BEGIN blocks. For Perl2Exe, an additional use statement outside any BEGIN block ensures correct object cleanup.
Also provided are:
wxpdk
wxpar
which assist in packaging the wxWidgets DLLs.
Download (0.012MB)
Added: 2007-03-30 License: Perl Artistic License Price:
941 downloads
Software::Packager 0.09
Software::Packager is a common software packaging interface. more>>
Software::Packager is a common software packaging interface.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager();
$packager->version(1.2.3.4.5.6);
$packager->package_name("Somename");
$packager->program_name(Software Packager);
$packager->description("This is the description.");
$packager->short_description("This is a short description.");
$packager->output_dir("/home/software/packages");
$packager->category("Applications");
$packager->architecture("sparc");
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
my $version = $packager->version();
my $name = $packager->package_name();
my $program_name = $packager->program_name();
my $description = $packager->description();
my $description = $packager->short_description();
my $output_directory = $packager->output_dir();
my $category = $packager->category();
my $arch = $packager->architecture();
The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.
This module provides the base API and sets default values common to the various software packaging methods.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager();
$packager->version(1.2.3.4.5.6);
$packager->package_name("Somename");
$packager->program_name(Software Packager);
$packager->description("This is the description.");
$packager->short_description("This is a short description.");
$packager->output_dir("/home/software/packages");
$packager->category("Applications");
$packager->architecture("sparc");
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
my $version = $packager->version();
my $name = $packager->package_name();
my $program_name = $packager->program_name();
my $description = $packager->description();
my $description = $packager->short_description();
my $output_directory = $packager->output_dir();
my $category = $packager->category();
my $arch = $packager->architecture();
The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.
This module provides the base API and sets default values common to the various software packaging methods.
Download (0.021MB)
Added: 2007-01-08 License: Perl Artistic License Price:
1023 downloads
Packer 0.1.5
Packer is a tool that helps in the creation of packages. more>>
Packer is a tool that helps in the creation of packages.
Packages are a great convenience for gurus and new users alike. Thus, users may be less inclined to use software that is not packaged.
This is unfortunate for GNU/Linux software developers since packaging software is a huge pain, especially given the huge variety of packaging formats.
Packer helps to automate this process. Using a text-based wizard, packer can collect all the information regarding a program needed to create a package.
Then, a simple command is all it takes to create a debian directory (used to build debian packages), RPM SPEC files (for Mandriva, SuSE, and Fedora/Red Hat), and autopackages spec files (autopackage is a system for creating distribution-neutral installers with dependency handling).
These files are of a similar quality to hand-crafted ones. Packer can also automatically build the packages themselves if requested.
Usage:
Running packer with no options will start the packer wizard. It will populate the packer directory based on your answers to the its questions.
It is always possible to relaunch the wizard to make modifications to the package if there were problems with the information originally entered or if a new version of the program being packaged is released.
Running packer with options will create binary and source packages from the information in the packer directory. You may call packer -h to find out the availible options.
Enhancements:
- Removed dependency on dynamic content on packages.debian.org (ie it works again)
<<lessPackages are a great convenience for gurus and new users alike. Thus, users may be less inclined to use software that is not packaged.
This is unfortunate for GNU/Linux software developers since packaging software is a huge pain, especially given the huge variety of packaging formats.
Packer helps to automate this process. Using a text-based wizard, packer can collect all the information regarding a program needed to create a package.
Then, a simple command is all it takes to create a debian directory (used to build debian packages), RPM SPEC files (for Mandriva, SuSE, and Fedora/Red Hat), and autopackages spec files (autopackage is a system for creating distribution-neutral installers with dependency handling).
These files are of a similar quality to hand-crafted ones. Packer can also automatically build the packages themselves if requested.
Usage:
Running packer with no options will start the packer wizard. It will populate the packer directory based on your answers to the its questions.
It is always possible to relaunch the wizard to make modifications to the package if there were problems with the information originally entered or if a new version of the program being packaged is released.
Running packer with options will create binary and source packages from the information in the packer directory. You may call packer -h to find out the availible options.
Enhancements:
- Removed dependency on dynamic content on packages.debian.org (ie it works again)
Download (0.041MB)
Added: 2006-02-19 License: GPL (GNU General Public License) Price:
1346 downloads
bpkg 0.5
bpkg is a utility that tries to simplify the process of trying out new programs from source. more>>
bpkg project is a utility that tries to simplify the process of trying out new programs from source.
bpkg will download, extract, configure, compile, install, generate a package in your systems native format, and finally integrate that package into your systems packaging system so that you can remove it cleanly.
It has auto-detection for Arch Linux, Slackware, Red Hat, Gentoo and SuSE (though not all packaging back-ends are complete).
bpkg is not intended as a replacement for normal packaging utilities.
NOTE: bpkg is NOT heavily tested and could do bad things to your system. Use at your own risk.
Installation:
If all goes well, all you have to do to install bpkg is type:
# make
# make install
bpkg should auto-detect your packaging system and generate a package for itself.
You can also use make DESTDIR=/tmp/pkg install to install to a package root. If auto-packaging fails you can use make install-raw to do a normal unmanaged installation.
Enhancements:
- The build section was refactored so that its cleaner.
- Self-packaging was fixed so it should actually work if you dont already have installwatch installed.
- The --build-with option was added.
- By using --skip-build and --install-with, bpkg can now be used as a substitute for checkinstall.
<<lessbpkg will download, extract, configure, compile, install, generate a package in your systems native format, and finally integrate that package into your systems packaging system so that you can remove it cleanly.
It has auto-detection for Arch Linux, Slackware, Red Hat, Gentoo and SuSE (though not all packaging back-ends are complete).
bpkg is not intended as a replacement for normal packaging utilities.
NOTE: bpkg is NOT heavily tested and could do bad things to your system. Use at your own risk.
Installation:
If all goes well, all you have to do to install bpkg is type:
# make
# make install
bpkg should auto-detect your packaging system and generate a package for itself.
You can also use make DESTDIR=/tmp/pkg install to install to a package root. If auto-packaging fails you can use make install-raw to do a normal unmanaged installation.
Enhancements:
- The build section was refactored so that its cleaner.
- Self-packaging was fixed so it should actually work if you dont already have installwatch installed.
- The --build-with option was added.
- By using --skip-build and --install-with, bpkg can now be used as a substitute for checkinstall.
Download (0.031MB)
Added: 2005-12-17 License: GPL (GNU General Public License) Price:
1406 downloads
Software::Packager::Solaris 0.1
Software::Packager::Solaris is the Software::Packager extension for Solaris 2.5.1 and above. more>>
Software::Packager::Solaris is the Software::Packager extension for Solaris 2.5.1 and above.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(solaris);
This module is used to create software packages in a format suitable for installation with pkgadd. The process of creating packages is baised upon the document Application Packaging Developers Guide. Which can be found at http://docs.sun.com/ab2/@LegacyPageView?toc=SUNWab_42_2:/safedir/space3/coll1/SUNWasup/toc/PACKINSTALL:Contents;bt=Application+Packaging+Developer%27s+Guide;ps=ps/SUNWab_42_2/PACKINSTALL/Contents
FUNCTIONS
new()
This method creates and returns a new Software::Packager::Solaris object.
add_item()
$packager->add_item(%object_data);
This method overrides the add_item function in the Software::Packager module.
This method adds a new object to the package.
package()
$packager->packager(); This method overrides the base API in Software::Packager, it controls the process if package creation.
package_name()
This method is used to specify the abbreviated package name.
Sun say: (Application Packaging Developers Guide. Page 32) A valid package abbreviation must the criteria defined below:
It must start with a letter. Additional charaters may be alphanumeric and can be the two special charaters + and -.
It must be nine or fewer charaters.
Reserved names are install, new, and all.
For more details see the pkginfo(4) man page.
program_name()
This is used to specify the full package name.
The program name must be less that 256 charaters.
For more details see the pkginfo(4) man page.
architecture()
The architecture must be a comma seperated list of alphanumeric tokens that indicate the architecture associated with the package. The maximum length of a token is 16 charaters. A token should be in the format "instruction set"."platform group" where: instruction set is the output of `uname -p` platform group is the output of `uname -m`
If the architecture is not set then the current instruction set is used.
For more details see the pkginfo(4) man page.
version()
This method is used to check the format of the version and return it in the format required for Solaris.
The version must be 256 charaters or less.
The first charater cannot be a left parenthesis.
The recommended format isi an arbitrary string of numbers in Dewey-decimal format. For more datails see the pkginfo(4) man page.
install_dir()
$packager->install_dir(/usr/local);
my $base_dir = $packager->install_dir();
This method sets the base directory for the software to be installed. The installation directory must start with a "/".
compatible_version()
$packager->compatible_version(/some/path/file);
or
$packager->compatible_version($compver_stored_in_string);
my $compatible_version = $packager->compatible_version();
This method sets the compatible versions file for the software to be installed.
space()
$packager->space(/some/path/file);
or
$packager->space($space_data_stored_in_string);
my $space = $packager->space();
This method sets the space file for the software to be installed.
request_script()
$packager->request_script(/some/path/file);
or
$packager->request_script($request_script_stored_in_string);
my $request_script = $packager->request_script();
This method sets the space file for the software to be installed.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager(solaris);
This module is used to create software packages in a format suitable for installation with pkgadd. The process of creating packages is baised upon the document Application Packaging Developers Guide. Which can be found at http://docs.sun.com/ab2/@LegacyPageView?toc=SUNWab_42_2:/safedir/space3/coll1/SUNWasup/toc/PACKINSTALL:Contents;bt=Application+Packaging+Developer%27s+Guide;ps=ps/SUNWab_42_2/PACKINSTALL/Contents
FUNCTIONS
new()
This method creates and returns a new Software::Packager::Solaris object.
add_item()
$packager->add_item(%object_data);
This method overrides the add_item function in the Software::Packager module.
This method adds a new object to the package.
package()
$packager->packager(); This method overrides the base API in Software::Packager, it controls the process if package creation.
package_name()
This method is used to specify the abbreviated package name.
Sun say: (Application Packaging Developers Guide. Page 32) A valid package abbreviation must the criteria defined below:
It must start with a letter. Additional charaters may be alphanumeric and can be the two special charaters + and -.
It must be nine or fewer charaters.
Reserved names are install, new, and all.
For more details see the pkginfo(4) man page.
program_name()
This is used to specify the full package name.
The program name must be less that 256 charaters.
For more details see the pkginfo(4) man page.
architecture()
The architecture must be a comma seperated list of alphanumeric tokens that indicate the architecture associated with the package. The maximum length of a token is 16 charaters. A token should be in the format "instruction set"."platform group" where: instruction set is the output of `uname -p` platform group is the output of `uname -m`
If the architecture is not set then the current instruction set is used.
For more details see the pkginfo(4) man page.
version()
This method is used to check the format of the version and return it in the format required for Solaris.
The version must be 256 charaters or less.
The first charater cannot be a left parenthesis.
The recommended format isi an arbitrary string of numbers in Dewey-decimal format. For more datails see the pkginfo(4) man page.
install_dir()
$packager->install_dir(/usr/local);
my $base_dir = $packager->install_dir();
This method sets the base directory for the software to be installed. The installation directory must start with a "/".
compatible_version()
$packager->compatible_version(/some/path/file);
or
$packager->compatible_version($compver_stored_in_string);
my $compatible_version = $packager->compatible_version();
This method sets the compatible versions file for the software to be installed.
space()
$packager->space(/some/path/file);
or
$packager->space($space_data_stored_in_string);
my $space = $packager->space();
This method sets the space file for the software to be installed.
request_script()
$packager->request_script(/some/path/file);
or
$packager->request_script($request_script_stored_in_string);
my $request_script = $packager->request_script();
This method sets the space file for the software to be installed.
Download (0.014MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1018 downloads
pam_script 0.1.11
pam_script is a PAM that executes a script at the start and end of a session. more>>
pam_script is a PAM (plugable authentication module) that runs a session open script and/or a session close script when a user logs into a service.
pam_script project works with any service that implements pam session management.
Enhancements:
- Improved Makefile and Debian packaging scripts.
- Options to set the home directory and PAM_USER token in the environment.
<<lesspam_script project works with any service that implements pam session management.
Enhancements:
- Improved Makefile and Debian packaging scripts.
- Options to set the home directory and PAM_USER token in the environment.
Download (MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
814 downloads
OpenPKG 2.5
OpenPKG is a flexible and powerful software packaging facility that eases installation and administration of Unix software. more>>
OpenPKG is a flexible and powerful software packaging facility that eases installation and administration of Unix software across several platforms.
Consolidating different vendor approaches into a unified architecture, it assists in administration of large networks previously complicated by nonconformant systems. It uses RPM to provide an additional system layer on top of the operating system.
It is fully self-contained (no RPM pre-installation is required), installs itself by means of a tricky bootstrapping procedure with minimal operating system intrusion, and supports multiple installation instances.
Main features:
- Portable across major Unix platforms.
- Available for FreeBSD 4.11/5.4/6.0/7.0, NetBSD 2.0, Sun Solaris 8/9/10, Debian GNU/Linux 3.1, Fedora Core 4, RedHat Enterprise Linux 4, Novell SUSE Linux 9.3/10, Gentoo Linux 1.12.0, Mandriva Linux 10.2.
- Already known to work for IBM AIX 5.1, HP HPUX 11.11.
- Release 2.5 consists of 579 packages.
- Entirely based on Open Source software technology.
- Operating System interference minimized.
- Streamlined software packaging.
- Easy installation, updating and deinstallation of packages.
- Bundled with useful and secure package preconfigurations.
- Includes an abstracted and powerful run-command facility.
- Virtual hosting through multiple instances on a single system.
- Proxy packages for reusing packages across instances.
- Build-time package variations for maximum flexibility.
- Foundation to build self-contained environments.
Enhancements:
- This release consists of 579 selected packages which include the latest versions of all popular Unix server software.
- All software is carefully packaged for easy deployment on 19 different Unix platforms.
- The major technical efforts for this release were spent on migrating to the GNU Compiler Collection (GCC) version 4.0 and further improving the Solaris 10 support and adding full support for the new FreeBSD 6.0 and SUSE 10.0 platforms.
<<lessConsolidating different vendor approaches into a unified architecture, it assists in administration of large networks previously complicated by nonconformant systems. It uses RPM to provide an additional system layer on top of the operating system.
It is fully self-contained (no RPM pre-installation is required), installs itself by means of a tricky bootstrapping procedure with minimal operating system intrusion, and supports multiple installation instances.
Main features:
- Portable across major Unix platforms.
- Available for FreeBSD 4.11/5.4/6.0/7.0, NetBSD 2.0, Sun Solaris 8/9/10, Debian GNU/Linux 3.1, Fedora Core 4, RedHat Enterprise Linux 4, Novell SUSE Linux 9.3/10, Gentoo Linux 1.12.0, Mandriva Linux 10.2.
- Already known to work for IBM AIX 5.1, HP HPUX 11.11.
- Release 2.5 consists of 579 packages.
- Entirely based on Open Source software technology.
- Operating System interference minimized.
- Streamlined software packaging.
- Easy installation, updating and deinstallation of packages.
- Bundled with useful and secure package preconfigurations.
- Includes an abstracted and powerful run-command facility.
- Virtual hosting through multiple instances on a single system.
- Proxy packages for reusing packages across instances.
- Build-time package variations for maximum flexibility.
- Foundation to build self-contained environments.
Enhancements:
- This release consists of 579 selected packages which include the latest versions of all popular Unix server software.
- All software is carefully packaged for easy deployment on 19 different Unix platforms.
- The major technical efforts for this release were spent on migrating to the GNU Compiler Collection (GCC) version 4.0 and further improving the Solaris 10 support and adding full support for the new FreeBSD 6.0 and SUSE 10.0 platforms.
Download (MB)
Added: 2005-10-19 License: GPL (GNU General Public License) Price:
1470 downloads
ActiveBPEL 4.0 Final
The ActiveBPEL engine is a robust runtime environment. more>>
ActiveBPEL project is a robust runtime environment capable of executing process definitions created according to the Business Process Execution Language for Web Services (BPEL4WS, or just BPEL) 1.1 specifications.
Main features:
Completeness
- The ActiveBPEL engine comprehensively implements the BPEL4WS 1.1 spec including the full complement of BPEL activities, event handling, exception handling and scope/compensation management.
Industrial Strength
- In addition to comprehensive BPEL 1.1 support, the ActiveBPEL engine includes high-end features like deployment packaging, process persistence, event notifications and console APIs.
Growth Track
- As a distributor of commercial products based on the ActiveBPEL engine, AEI is committed to the ongoing development of ActiveBPEL technologies. The ActiveBPEL open source project will continually benefit from the contributions of both AEI and the ActiveBPEL community at large.
Enhancements:
- This release provides support for message attachments with WS-BPEL 2.0 processes.
- It also introduces a WS-I compliant administrative interface and deprecates the old RPC style interface.
<<lessMain features:
Completeness
- The ActiveBPEL engine comprehensively implements the BPEL4WS 1.1 spec including the full complement of BPEL activities, event handling, exception handling and scope/compensation management.
Industrial Strength
- In addition to comprehensive BPEL 1.1 support, the ActiveBPEL engine includes high-end features like deployment packaging, process persistence, event notifications and console APIs.
Growth Track
- As a distributor of commercial products based on the ActiveBPEL engine, AEI is committed to the ongoing development of ActiveBPEL technologies. The ActiveBPEL open source project will continually benefit from the contributions of both AEI and the ActiveBPEL community at large.
Enhancements:
- This release provides support for message attachments with WS-BPEL 2.0 processes.
- It also introduces a WS-I compliant administrative interface and deprecates the old RPC style interface.
Download (13.5MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
871 downloads
Software::Packager::Object::Rpm 0.06
Software::Packager provides a common interface for the creation of platform specific software installation packagers. more>>
Software::Packager is a suite of Perl modules providing a common interface for
the creation of platform specific software installation packagers.
INSTALLATION
Software::Packager uses the standard perl module install process
perl Makefile.PL
make
make test (optional but recommended)
make install
If you release software for a range of platforms then this is the module for
you.
This module does not do the packaging of the software but is merely a wrapper
around the various software packaging tools already provided with various
operating systems.
<<lessthe creation of platform specific software installation packagers.
INSTALLATION
Software::Packager uses the standard perl module install process
perl Makefile.PL
make
make test (optional but recommended)
make install
If you release software for a range of platforms then this is the module for
you.
This module does not do the packaging of the software but is merely a wrapper
around the various software packaging tools already provided with various
operating systems.
Download (0.013MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1019 downloads
PyInstaller 1.3
PyInstaller is a program that packages Python programs into stand-alone executables, under both Windows and Linux. more>>
PyInstaller is a program that packages Python programs into stand-alone executables, under both Windows and Linux.
PyInstaller originally was Gordon McMillans Python Installer, but since the original site disappeared it has been rescued to this site. It is currently unmaintained.
Main features:
- Packaging of Python programs into standard executables, that work on computers without Python installed.
- Multiplatform: works under Windows and Linux.
- Dual packaging mode:
- Single directory: build a directory containing an executable plus all the external binary modules (.dll, .pyd, .so) used by the program.
- Single file: build a single executable file, totally self-contained, which runs without any external dependency.
- Support for automatic binary packing through the well-known [WWW] UPX compressor.
- Optional console mode (see standard output and standard error at runtime).
- Selectable executable icon (Windows only).
- Fully configurable version resource section in executable (Windows only).
- Support for building COM servers (Windows only).
<<lessPyInstaller originally was Gordon McMillans Python Installer, but since the original site disappeared it has been rescued to this site. It is currently unmaintained.
Main features:
- Packaging of Python programs into standard executables, that work on computers without Python installed.
- Multiplatform: works under Windows and Linux.
- Dual packaging mode:
- Single directory: build a directory containing an executable plus all the external binary modules (.dll, .pyd, .so) used by the program.
- Single file: build a single executable file, totally self-contained, which runs without any external dependency.
- Support for automatic binary packing through the well-known [WWW] UPX compressor.
- Optional console mode (see standard output and standard error at runtime).
- Selectable executable icon (Windows only).
- Fully configurable version resource section in executable (Windows only).
- Support for building COM servers (Windows only).
Download (0.63MB)
Added: 2006-12-18 License: GPL (GNU General Public License) Price:
619 downloads
rPath Linux 2.0 Alpha 2
rPath Linux is a Linux distribution built with the new Conary distributed software management system. more>>
rPath Linux is a Linux distribution built with the new Conary distributed software management system.
rPath Linux provides the foundation for creating software appliances that is:
Easily tailored to any application requirements
Built using Conary packaging technology, rPath Linux provides a more fine-grained breakdown of system components than in typical Linux environments. This allows application developers using rBuilder to pick just the pieces they need to support their application.
Engineered to the highest levels of quality
The rPath engineering team has a long history of delivering high quality Linux technology to demanding enterprise customers and software vendors. They have taken the lessons learned from these customers and partners and built rPath Linux to meet the demands of today’s corporate IT environments.
Compatible with many popular commercial Linux distributions
If you already offer your application on Linux, it will likely run unchanged on rPath Linux, so there is minimal effort required to offer your application as a software appliance.
<<lessrPath Linux provides the foundation for creating software appliances that is:
Easily tailored to any application requirements
Built using Conary packaging technology, rPath Linux provides a more fine-grained breakdown of system components than in typical Linux environments. This allows application developers using rBuilder to pick just the pieces they need to support their application.
Engineered to the highest levels of quality
The rPath engineering team has a long history of delivering high quality Linux technology to demanding enterprise customers and software vendors. They have taken the lessons learned from these customers and partners and built rPath Linux to meet the demands of today’s corporate IT environments.
Compatible with many popular commercial Linux distributions
If you already offer your application on Linux, it will likely run unchanged on rPath Linux, so there is minimal effort required to offer your application as a software appliance.
Download (479MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
990 downloads
Apache Solr 1.2
Apache Solr is a high performace search server based on Lucene. more>>
Apache Solr is a high performace search server based on Lucene, with XML/HTTP and JSON APIs, hit highlighting, faceted search, caching, replication, and a Web administration interface.
The project is currently under incubation at the Apache Software Foundation.
Instructions for Building Apache Solr
1. Download the J2SE 5.0 JDK (Java Development Kit) or later from http://java.sun.com. You will need the JDK installed, and the %JAVA_HOME%bin directory included on your command path. To test this, issue a "java -version" command from your shell and verify that the Java version is 5.0 or later.
2. Download the Apache Ant binary distribution from http://ant.apache.org. You will need Ant installed and the %ANT_HOME%bin directory included on your command path. To test this, issue a "ant -version" command from your shell and verify that Ant is available.
3. Download the Apache Solr source distribution, linked from the above incubator web site. Expand the distribution to a folder of your choice, e.g. c:solr.
4. Navigate to that folder and issue an "ant" command to see the available options for building, testing, and packaging solr.
Enhancements:
- This is the first release since graduating from the Apache Incubator.
- Some of the new features include CSV/delimited-text data loading, time based autocommit, faster faceting, negative filters, a spell-check handler, sounds-like word filters, regex text filters, and more flexible plugins.
<<lessThe project is currently under incubation at the Apache Software Foundation.
Instructions for Building Apache Solr
1. Download the J2SE 5.0 JDK (Java Development Kit) or later from http://java.sun.com. You will need the JDK installed, and the %JAVA_HOME%bin directory included on your command path. To test this, issue a "java -version" command from your shell and verify that the Java version is 5.0 or later.
2. Download the Apache Ant binary distribution from http://ant.apache.org. You will need Ant installed and the %ANT_HOME%bin directory included on your command path. To test this, issue a "ant -version" command from your shell and verify that Ant is available.
3. Download the Apache Solr source distribution, linked from the above incubator web site. Expand the distribution to a folder of your choice, e.g. c:solr.
4. Navigate to that folder and issue an "ant" command to see the available options for building, testing, and packaging solr.
Enhancements:
- This is the first release since graduating from the Apache Incubator.
- Some of the new features include CSV/delimited-text data loading, time based autocommit, faster faceting, negative filters, a spell-check handler, sounds-like word filters, regex text filters, and more flexible plugins.
Download (7.5MB)
Added: 2007-06-08 License: The Apache License 2.0 Price:
881 downloads
pyFretCalc 0.0.2
pyFretCalc is a handy little fret spacing calculator for luthiers (Guitar makers). more>>
pyFretCalc is a handy little fret spacing calculator for luthiers (Guitar makers). Simply enter the scale length you want and how many frets, then click on calculate.
To install it, first you have to have the following software installed.
Python http://www.python.org
QT 3 http://www.trolltech.com
PyQt http://www.riverbankcomputing.co.uk
For Linux and other *nixs just untar pyFretCalc-0.0.2.tar.gz to any directory (like $HOME/bin) and run main.py. Future releases will use some sort of packaging.
Windows/OSx users: Follow the same instructions and let me know how it works.
Enhancements:
- Changed to QT3 for the gui
<<lessTo install it, first you have to have the following software installed.
Python http://www.python.org
QT 3 http://www.trolltech.com
PyQt http://www.riverbankcomputing.co.uk
For Linux and other *nixs just untar pyFretCalc-0.0.2.tar.gz to any directory (like $HOME/bin) and run main.py. Future releases will use some sort of packaging.
Windows/OSx users: Follow the same instructions and let me know how it works.
Enhancements:
- Changed to QT3 for the gui
Download (0.025MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1187 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above packaging search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed