2
votes
1answer
28 views
What’s the best route to get your own software into Debian and Fedora?
Say I am able to follow the packaging guides and have figured out how to make a working .deb and .rpm, how can I get distros to actually include my software?
What's firstly the qu …
0
votes
1answer
26 views
.deb package conffiles problem
I am distributing one of my applications using a .deb package, but have a problem relating to one of the files.
The distribution includes a database file which is constantly upda …
3
votes
2answers
56 views
How do I package my linux application using MonoDevelop?
I have a hobby project that is written in C# using MonoDevelop. I've been trying for some time now to get my head around linux packaging, but I keep coming away feeling frustrated …
2
votes
4answers
101 views
include dependencies into jar
Hi, is there a way to force maven(2.0.9) to include all the dependencies into jar file?
I have a project the builds into a single jar file. I want that the classes from dependencie …
5
votes
4answers
215 views
How might I handle development versions of Python packages without relying on SCM?
One issue that comes up during Pinax development is dealing with development versions of external apps. I am trying to come up with a solution that doesn't involve bringing in the …
0
votes
3answers
56 views
What’s the simplest way to keep track of where my program is installed?
While I'm working on it, I have my application's location hardcoded:
public static string MYPROGRAM_PATH = "/path/to/my/workspace";
Obviously this won't work once I package and …
0
votes
1answer
35 views
Pack program *and* dynamically loaded files into single executable? (python + pygame, or language agnostic)
There are plenty of great answers to questions about making a standalone executable, but I can't figure out how to pack art assets (or dynamically loaded files) into it as well. W …
1
vote
1answer
54 views
Making .NET configuration environment-neutral
I want to get some thoughts on best practices around making .NET app configuration environment-neutral.
Background. Some background first. I come from the Java world, not the .NET …
1
vote
1answer
159 views
how to make a jar file that include dll files
hi all,
i bought a third-party java library which include a jar file and two dll files. i wrote my own java program which invoke the third-party jar file. now my question is how c …
0
votes
2answers
30 views
Distributing source files with an open source app
I have written an open source (GPL) application for Linux and OSX and now wish to distribute it. Is it normal to distribute the source code along with the binaries by default, or j …
2
votes
6answers
143 views
How to merge wars into one?
In our company, we have a number different modules constructed as separate wars.
Each client can pick and choose module he wishes to buy.
Since all modules share same session, sec …
1
vote
2answers
431 views
buildr: package dependencies into a single jar
I have a java project that is built with buildr and that has some external dependencies:
repositories.remote << "http://www.ibiblio.org/maven2"
repositories.remote << …
0
votes
2answers
54 views
Reasons to use distutils when packaging C/Python project
I have an open source project containing both Python and C code. I'm wondering that is there any use for distutils for me, because I'm planning to do a ubuntu/debian package. The C …
1
vote
1answer
62 views
Linux packaging abstraction layer written in Python?
I'm looking for a way to generate .deb and .rpm packages from my build scripts, containing the resulting products. Since everything is written in Python, I'm wondering if anyone k …
1
vote
2answers
229 views
Order of JAR loading inside EAR’s APP-INF/lib
Will adding a MANIFEST.MF file with Class-Path attribute to META-INF directory inside EAR influence the order of loading of JARs located in APP-INF/lib under WebLogic 8.1?
