The packaging tag has no wiki summary.
0
votes
1answer
32 views
Swing Components in Different Classes
probably a simple question here working on learning to make a GUI using swing and making mild headway but hit another speed bump. I am trying to keep GUI components grouped in different classes to ...
0
votes
1answer
19 views
Package a Visaul Studio project from Powershell
Oh great powershell gods, please show this heathen the light!
I have been tasked with creating a 1 click publish-our-solution-to-the-cloud powershell script. I have, however, never used PS in my ...
0
votes
2answers
21 views
How to package dlls in the compiled executable of a C# project in Visual Studio 2010
I have developed a relatively small windows form application using Visual Studio 2010.
When I build a release version of the application I find the executable in bin/release/ along with a bunch of ...
0
votes
2answers
21 views
font packaging in visual studio 2008
I created a website(actually a single HTML Page!)in visual studio 2008 as a part of learning.
I used some fonts in it which is not pre-installed in windows XP.
So when I run the webpage in another ...
1
vote
1answer
23 views
How is the Java bytecode executed in a Java FX self-contained application package?
It is possible to deploy self-contained Java applications. But, how is the bytecode executed? Is it interpreted or is it compiled JIT? I could not find proper documentation about this.
0
votes
1answer
39 views
Convert a Python package into a standalone application
I have already many docs on Pyinstaller and others but all I have found is ways to convert a single .py module into a executable.
I have a python application structures as:
bbdatasync/
...
0
votes
1answer
5 views
BB10 Webworks packaging Interrupted (aborting) error
I am trying to build a BB10 webworks app using Sencha Touch 2.2 and packaging using Ripple and keep getting Interrupted (aborting) errors. Is anyone else seeing this? I have noticed that I am able to ...
0
votes
1answer
27 views
Maven war packaging of transitive modules
I have a web-app which provides an implementation of an API that I have written. So, I have a set of three artifacts: my-webapp (war), my-api (jar) and my-impl (jar). The pom's are straight-forward ...
0
votes
0answers
9 views
setuptools and passing options to dependencies
I'm trying to package a module for pypi and I have mercurial as one of the dependencies.
The target machines may or may not have build tools so I'd like to install mercurial with the --pure option in ...
0
votes
1answer
12 views
How to add all dependencies in single jar in maven and then apply assembly plugin?
My project has one parent module which has 3 child modules. I am trying to create a fat jar using maven assembly plugin. However, what I want is to create a fat jar and then apply assembly.xml file to ...
0
votes
0answers
23 views
Qt5 debian packaging for Ubuntu
I have problems with packaging Qt5 application on Ubuntu 13.04. While I was using Qt4 I packaged my apps using pbuilder, but now pbuilder can't find any Qt5 dependencies. I tried with cmake but cmake ...
1
vote
2answers
33 views
Python package seems to ignore my requirements
I created my first package. When I try to install it with pip in a newly created virtualenv I get an error indicating that libs cannot be imported, yet they are added to the install_requires field in ...
0
votes
0answers
27 views
Export symbols in a python namespace package's __init__ file
I'm currently in the process of breaking up a large package in smaller packages. I want to keep the same API that I've been using for the big monolithic package.
The package layout is something ...
1
vote
0answers
26 views
how to get the objects embedded in excel usng C#
I have an application where I need to get the objects that are embedded in excel should be stored in some location through code.
connection.Close();
...
9
votes
1answer
85 views
How can I gracefully drop support for older emacsen in my elisp package?
I maintain a fairly well-used emacs package (ido-ubiquitous), and in the next version I plan to drop support for Emacs 23 and below. People who use Emacs 23 and below will be able to continue using ...
0
votes
1answer
12 views
Packaging for Launchpad PPA
I want to start with what I have and end up with what I need.
I have:
a folder with some files
a post install bash script that will do some wonders in the system (bash command, completion, etc)
I ...
0
votes
1answer
47 views
maven - two different root poms
I am new to Maven. I am given a new project and that has the following structure.
Data_Res
|
---res-search
| |
| -----res-hast
| | |
| | ------src/main....
| ...
0
votes
0answers
44 views
Debianize SQLAlchemy using python-stdeb & dpkg
I am trying to build a .deb package for sqlalchemy, using the python stdeb builder.
Respecting the python stdeb usage I use the following instructions:
wget ...
0
votes
2answers
38 views
Build single executable with Install Shield automation tool 2009
I am trying to automate the packaging process and stop using the GUI using install shield 2009 automation tool.
I have an Install Script Project and seems that there is no Build function in the ...
10
votes
1answer
141 views
Packaging a Jython program in an executable jar
I am trying to package a jython program into an executable jar which the user can simply double-click to run without installing jython ahead of time. Ultimately, I would like to include an additional ...
1
vote
1answer
20 views
Development version on PyPI
In this 2011 post, it is argued that dev versions should not be uploaded to PyPI. Is this now (May 2013) still the case? If not, what is the suggested way to distribute development version of a Python ...
-3
votes
1answer
49 views
What's the best package/class structure for a java swing application? [closed]
I'm quite new to the java swing application design and I know how to use components but I'm not sure of the best way to structure it and link the classes together as I could use inheritance, or ...
2
votes
1answer
68 views
Include java.exe in the runtime built
To create a installer for my javafx application, I have followed tutorial . And it as expected makes the installer.
The directory structure it makes is this:
MyApp
+app
+runtime
...
2
votes
0answers
43 views
JSF2 with EJB3 and JPA - how best to package
I'm trying to teach myself a bit about EJB3 and JPA by creating some functionality that uses JSF2 as a front end, stateless EJB3 session beans to handle transactions and JPA to persist entities.
...
0
votes
2answers
46 views
Runnable JAR file won't
I created this card game in Java. What it does it it presents one card face up and 4 more cards face down. You wager from 1 to 100 coins and try to pick a higher card from the face down cards. If ...
0
votes
0answers
30 views
Disable rpmbuild automatic requirement finding
The default behavior of rpmbuild seems to be to scan every file in the buildroot for #! lines and add those interpreters as hard requirements. Is it possible to disable this? I've run into a situation ...
0
votes
1answer
33 views
rpmbuild install: cannot create directory
I'm creating an RPM file but when using install I get some permission errors.
This is my spec file:
%define buildroot %{_tmppath}/nagios-1-1-root-%(%{__id_u} -n)
Summary: Nagios blabla
Name: nagios
...
2
votes
1answer
25 views
Proper Python packaging with external package dependencies
Let's suppose I have a project that depends on packages that should only be installed via the systems package manager (e.g. bindings to C libraries), so that install_requires is not working.
...
0
votes
1answer
31 views
Cannot change permissions when running rpmbuild
Currently I'm trying to change an spec file extracted from a nagios rpm package to create my own spec file. When trying to build to rpm I'm getting the following error:
make[1]: Entering ...
0
votes
0answers
47 views
Windows Metro app packaging for app store submission
I've developed an Metro application. Which is ready to be submitted on the Windows App Store.
The app takes all the content from server during execution.
The requirement is that another ...
1
vote
1answer
24 views
Failed dependency by installing self made rpm package
I'm trying to create an RPM (redhat) package to install nagios on a redhat system. Everything goes well but when I try to install the package I get
Failed dependencies:
perl (Net::SNMP) is ...
2
votes
1answer
107 views
Python package: how to avoid redefining author version etc?
I would like to distribute a Python package (I would like to use setuptools
and I already have a working setup.py file), and the related documentation
(produced using Sphinx).
I find myself a bit ...
2
votes
3answers
36 views
What to include in PyPi package?
I'm packaging my new python library for PyPi. The repository contains:
Sphinx documentation sources
Supplemental JavaScript library
Examples
Is it a good idea to include such things into a python ...
0
votes
0answers
47 views
Overriding or disabling ${python:Depends} at stdeb bdist_deb invocation
I am trying to package my Python software with stdeb:
python setup.py --command-packages=stdeb.command bdist_deb
which works fine.
Unfortunately, stdeb adds the variable ${python:Depends} to the ...
0
votes
1answer
25 views
Quickly can't package, but raises no errors
I tried to ask this question on AskUbuntu, but got no response at all, so I hope, SO would be of more help...
I am trying to make a .deb package for my project in quickly. This is what I get:
...
1
vote
1answer
30 views
Standard way to treat a zipfile as a site directory?
I'm trying to package up a script including its dependencies into an executable zip file, following basically the following steps:
$ mkdir build
$ pip install --target build -r requirements.txt
$ cp ...
0
votes
0answers
40 views
quickly vs cx_freeze for ubuntu application development
I want to use PySide and Python for application development in Ubuntu. As far as I can see, I have two options:
Use cx_freeze to create an executable file and other pertaining files and then go ...
2
votes
1answer
17 views
documentation on setup test_suite argument
Feature in question
I'm looking for documentation on a feature that let's you specify the test cases for a python packages and run them using setup. For example if my setup.py file was:
from ...
0
votes
1answer
46 views
How to use environment variables in debian/install
How can I use environment variables inside the "install" file in the debian directory.
I want to do something like this :
Resources $HOME/somefolder
However this is creating a folder called ...
-1
votes
2answers
109 views
how to make in five minutes a debian package [closed]
I am looking for a easy tutorial & tools to make a debian package for my program. I need to specify some dependencies (like apache, php and others lib).
I know that there are 2 way to do that:
...
0
votes
1answer
192 views
Missing Deployment Project Type in Visual Studio 2012
I am not a full time programmer, but have to do a little bit to build tools to support my job. I have finished writing my application which I now need to deploy.
I do not want to use "ClickOnce" as I ...
0
votes
0answers
57 views
Loops in Salesforce Visual Flows. And, are Flows packagble?
two main concerns here:
I need a Flow to be able to loop over a Create record step for N times. How could I achieve this without explicitly put N times the same Create record step?
In the packaging ...
0
votes
0answers
48 views
Package Perl script using pp without dynamically scanning for dependencies
So I am developing software with Perl and would like to package it utilizing PAR::Packer such that it won't dynamically scan for dependencies and still include all of the required modules. I know ...
2
votes
1answer
246 views
Package and use embedded database (H2.db file) inside a Jar?
I'm using H2 embedded database for my application. I would like to contain everything the application needs in it's own Jar, including it's database if possible. My app does not need to create temp ...
0
votes
1answer
139 views
Packaging Slick2d JRuby app with Rawr : missing class or uppercase package name
I'm writing a game in JRuby that uses the Slick2D library.
I can't figure out how to get the Rawr gem to bundle up my app properly without errors.
I run rake rawr:jar. Package is generated properly, ...
0
votes
0answers
20 views
Prevent upgrade debian package
I am creating packages and I have a few requirements dependencies do not know how to satisfy.
I have tst-ddbb_2.2.deb that provides virtual package ddbb-2-2.
I have several ...
0
votes
1answer
29 views
Manifest template to package any generic distribution of files
I have set of directories and files that I would like to "package up" and move to another system. These files are inputs for a scientific simulation, which produces output files in the directory ...
2
votes
1answer
30 views
What is the advantage of setting zip_safe to True when packaging a Python project?
The setuptools documentation only states:
For maximum performance, Python packages are best installed as zip files. Not all packages, however, are capable of running in compressed form, because ...
1
vote
1answer
24 views
The flow from updating sources to making a rpm package
I am new to RPM package making, and wandering how to improve the work flow I use for creating the package. One I use I find quite laborious.(Luckily I did this only once ;-)
So, I have an ...
0
votes
1answer
468 views
Maven Jar Builder: Could not find or load main class
I have been trying for several days now to create an executable jar file for my muli-module maven project. However, when I try to run this jar file I get "Could not find or load main class ...

