Why rpm and deb package formats are not unified into one standard system?
I had this question asked on stackoverflow, but it was closed “as not a real question”.
What do I need to learn to decide on rename/recompile source package names because of company rebranding?
My company is currently at a rebranding process and the brand names have been used in the sources’ package names but these names are only visible to developers who maintain this code so nobody from project management is really interested in changing them considering also that it would imply the recompiling of several old components.
Complex Release Vehicle Management
I’m looking into improving our build and release system. We are a .Net/Windows shop, and I don’t see any really good tools for Windows for generating the files that are to be dropped in patch or hotfix. We are currently using TFSBuild 2010 with Windows Workflows for our continuous integration builds as well as our daily full build which includes an Installshield package for deployment.
What package name to choose for a small, open-source Java project? [closed]
Closed 8 years ago.
What should I use for a package name if I don’t have a domain? [duplicate]
Possible Duplicate:
What is the point of Java’s package naming convention?
What package name to choose for a small, open-source Java project?
Java-style package naming and second-level country domains
I own a .co.uk domain, and I whenever I’ve dealt with Java-style package naming, I’ve gone with uk.co.domainname
. Once I encountered package that did the following: co.uk.domainname
.
When did the standard for packaging Linux source code become .tar.gz?
When browsing open-source projects that are primarily developed for Linux systems and downloading the latest packages, the source code is always stored in a .tar.gz or .tar.bz2 file.
How to solve circular package dependencies
I am refactoring a large codebase where most of the classes are located in one package. For better modularity, I am creating subpackages for each functionality.
Understanding Package Management Systems
I am attempting to understand what a Package Management System. I grasp the main concept of it but I have some queries.
Is it ‘safe’ to expect myClasses to agree not to only call package Scope methods from other Package scope methods?
The questions says it all, but a quick overview of the situation. I’m creating a Model which contains classes (all inherriting myObject) which have a large amount of interconnection. I want the controller to be able to create any of these objects any time, without modifying the Model. Only an explicit cal to the model to “AddToModel” would ‘install’ the object into the model (including updating all the connected objects). myObjects will use a factory pattern, if a user tries to create something already represented in the Model the already-instanced object in the model will be returned instead of constructing a new one.