The tag has no wiki summary.

learn more… | top users | synonyms

-3
votes
1answer
32 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
57 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
17 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
35 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
19 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
16 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
20 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
0answers
15 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
30 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
16 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
47 views
+50

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
32 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 ...
-1
votes
0answers
21 views

remove duplication from debian maintainer scripts

my project builds 3 separate packages, and with each having 4 maintainer scripts there's a great deal of duplication - both code (functions implementation) and values. the question is - how do i ...
0
votes
0answers
32 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
23 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
25 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
27 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
14 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
25 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
76 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
94 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
35 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
44 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 ...
1
vote
1answer
164 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
78 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
13 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
24 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
26 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
20 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
198 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 ...
2
votes
1answer
83 views

Generating a PHAR for a simple application

I'm experimenting in building CLI tools using the Symfony2 console library. I've got something basic working and now I want to package it as a phar. I've read a few examples but the ones I've seen are ...
0
votes
0answers
58 views

Maven 3.0 packagingExcludes and order of execution

For all of you maveneers out there, I thought I'd pass along an important order-of-execution note about packagingExcludes in maven 3 for packaging .ear files. In your pom.xml, to assemble a .ear ...
1
vote
1answer
87 views

Creating R package containing C++ on Windows

My goal is to create a package in R with C++ code: So my questions is how? I am following the tutorial http://www.stat.columbia.edu/~gelman/stuff_for_blog/AlanRPackageTutorial.pdf on creating an R ...
0
votes
1answer
40 views

Refactoring and dependencies issue

I've got a number of SMS providers, each in a separate directory in the file system. The main class inside each provider directory extends abstract class ProviderAbstract.php which is located ...
0
votes
1answer
41 views

steps needed to create binary package for distribution in linux

I am little confused on how to create a complete binary package using rpmbuild from a project I just created (already compiled binary). my current project contain similar format as this user ...
1
vote
1answer
57 views

creating package

i am creating a package in R language, everything is running properly, but when i run R CMD check , it shows an error message while running examples.. i.e. "can't open the file." "No such file or ...
0
votes
0answers
30 views

where is the nested metainf element in Netbeans build file?

Since I'm getting nowhere with doing this through the Netbeans interface, I'll look at going into the ant build details. The manual states: metainf The nested metainf element specifies a ...
0
votes
2answers
51 views

packaging java files

I'm trying to package a set of java files that compile/run just fine before packaging. After adding package in the first line I'm getting the following error! cannot find symbol symbol: class ...
0
votes
3answers
128 views

Repackaging library JARs in Java

I have been extracting 3rd-party library JARs into my open source Java library in order for the dependencies to work at runtime. I remember when I tried doing this in Eclipse a while ago (different ...
1
vote
0answers
12 views

launchpad ppa: installed package is always empty

i have created a ppa for a small library (C++, built with automake/autoconf). Building and uploading the files to launchpad is working (at least that's my impression when looking at the build ...
0
votes
1answer
58 views

Installshield / MSI Editing Responsive Transform

Is it possible to directly edit a responsive transform (MST) without having to go through all the steps that originally performed to create the original mst? I am editing a transform that a ...
0
votes
1answer
53 views

Faking an egg in buildout from a github repository

I want to try this middleware in a Django project I'm working on: https://github.com/directeur/django-pdf. It goes by the name "django-pdf", but is not the same as ...
2
votes
1answer
280 views

WiX Bootstrapper Application

I want a bootstrapper to install .net 4.5 (if not available) before install my setup.msi. If the machine has .net 4.5 then I want to install product setup.msi only. Following is my code: ...
1
vote
0answers
247 views

Adobe AIR 3.6 - error 304: Initial window content is invalid (RuntimeError)

EDIT: Problem solved: App.swf was compressed using LZMA and that was wrong. SWF file must be pure. i'm working on cross-platform AIR application, and i've got an error: "304: Initial window content ...
2
votes
1answer
33 views

Python packaging distribute post-install step

I am packaging a project that uses nltk. When you install nltk with pip, you get core functionalitiy, but not all the modules that come with it. To get those modules, you call nltk's download method. ...
0
votes
2answers
35 views

mvn package failes even with -DfailIfNoTests=false

I have a maven build which I would like to execute the jar creation for, but mvn package fails due to unit test failures. I'd like to still build the jar in spite of the fact that some tests fail, I ...
8
votes
1answer
65 views

What tools exist for building debian packages for deployment purposes?

I would like to build .deb files of my application, so that I can deploy onto a remote server, using all the dependency-resolution features of Debian. My application is a set of mostly-Python scripts, ...
0
votes
1answer
38 views

Packaging a sencha touch2 application on Blackberry10 webworks

How to package a sencha touch application on Blackberry10 webworks? I am new to blackberry application development please help me out in packaging the application? i dont want to use phonegap as ...
1
vote
1answer
190 views

Reprepro adding same deb package

i got a problem in my debian repo. I removed a wrong package with: reprepro -Vb . remove package This was ok, but when i tried to add again the same package with next command: reprepro -Vb . ...
1
vote
1answer
181 views

Simplest way of using dpkg-buildpackage with an existing upstream source tarball

Been reading hundreds of tutorials and still cannot my head around to this one: I have an upstream package provided by upstream, called foo-1.2.3.tar.bz2. I put the file in /tmp/debplayground/. The ...

1 2 3 4 5 14