Questions tagged [packaging]

Packaging is a configuration management process involved with capturing the knowledge needed to install or uninstall software on a target system.

Packaging is a configuration management process involved with capturing the knowledge needed to install or uninstall software on a target system. This involves describing where the software and data should be installed on the target system, as well as any preprocessing or post-processing activities that need to be carried out when installing or uninstalling.

Resources:

  • RPM - The Red Hat Package Manager
  • APT - Debian's Advanced Package Tool
  • PyPI - The Python Package Index
  • Django Packages - Index of Django Packages
1933 questions
0
votes
2 answers

Force java version in debian packaging

I try to build a debian package of a java application. I've created all needed file. The only problem I have, I think, is to force the java version while using jh_build in the debian/rules Indeed, here my current file: #!/usr/bin/make -f %: dh…
lock
  • 411
  • 4
  • 15
0
votes
1 answer

Application deployment with 3rd-party dependencies for both Linux and Windows, using CMake and Conan

I'm working on a project, which targets both Windows and Linux (and possible in the future MacOS). It consists of some applications with several shared libraries. It is written in modern C++ and modern CMake. It also uses 3rd-party libraries like…
akowalew
  • 48
  • 4
0
votes
1 answer

Create multi-target nuget package from several csproj contained in different folders from nuspec file

I am trying to create a nuget package for a library which exists in 2 versions, each of them targeting two different .NET versions. Here is my folder structure: As you can see my nuspec file is one directory above my csproj (which are in the …
Toto
  • 736
  • 9
  • 33
0
votes
1 answer

Is there a way to ship the Python psutil module over ssh to a computer without internet access?

I am making a remote Linux artifact collection script and would like to use the psutil module as it includes a lot of handy functions that would be a pain to rewrite. The issue is that the computers this would be working on are not necessarily…
drop table
  • 37
  • 6
0
votes
2 answers

Run maven project with main() method in imported dependency in pom

Is there a way in which we import dependency in the pom for a maven project. Then when we package it and run the jar, the Main() method is provided by the dependency we imported and not in the project we are developing ourselves. Is there a…
Shabirmean
  • 2,341
  • 4
  • 21
  • 34
0
votes
1 answer

Build Netdata deb package for Ubuntu16

I need to build a Netdata deb package for Ubuntu16 and I'm getting some troubles. I'm using fpm-cookery to try to build it but it is difficult to analyze how many things have to configure. Do you know any recipe and/or some other tool to build it?
0
votes
1 answer

Is there an alternative way to identify the parameter or arguments that is used with rpm command in the rpm spec file

In the rpm spec file, I need to identify the user has used rpm -ivh or rpm -Uvh. In general, $1 value will be verified in the %pre. But in my case in the new rpm, we are modifying install location. In this case, when is check $1 is showing the same…
0
votes
0 answers

What is the relative path to this file within my .jar file?

I have a keystore that is located on the top level of my .jar file. To build a TLS SSLSocket from it I need to set it as SystemProperty using Properties systemProperties = System.getProperties(); systemProperties.put("javax.net.ssl.keyStore",…
Samaranth
  • 385
  • 3
  • 16
0
votes
1 answer

Maven assembly plugin produces undeployable war file

I'm working on a multi module project using Spring, Hibernate, GWT and Maven 3 and try to deploy a war-file distribution to a servlet container (preferably Tomcat 7 or Jetty 8). I create the war-file using maven-assembly-plugin 2.2.1 (I'm running…
holger
  • 1
  • 1
  • 1
0
votes
1 answer

Change appxupload file name in Windows Application Packaging Project

I am preparing an appxupload package file for submission to Microsoft Store using Windows Application Packaging Project in Visual Studio 2017. In my solution, there are following projects. MyApp (WPF desktop application project) MyApp.Packager…
emoacht
  • 2,764
  • 1
  • 13
  • 24
0
votes
1 answer

How to get the next version from packaging.version?

I have the following from packaging import version current_ver = version.parse(ver_string) this gives me a Version object containing something like 0.0.0.9. Now I want the next version, meaning 0.0.0.10. How do I get it? I tried next_ver =…
Gulzar
  • 23,452
  • 27
  • 113
  • 201
0
votes
0 answers

Debian package for a python program

I need to create a Debian package for a python library, but I want to install the python library dependencies in a virtualenv, what will be best way to do that 1) I cannot install the dependencies in pre-install as I need to to create the…
Arushix
  • 171
  • 4
0
votes
0 answers

How to make a debian package with a binary AND .so files?

I know how to create a simple debian package that includes a single binary. I use "dpkg-deb --build" command. However, I now need to add multiple binaries AND multiple shared libraries (.so) files and make a single debian package. How do I add…
0
votes
2 answers

Flutter package targeting min version

I published a package to pub.dev that uses the Flutter SDK version 1.6.3 which as of today is the beta channel However the pub analyser uses v1.5.4-hotfix.2 which does not have those API changes just yet, presummably because it is using on the…
aqwert
  • 10,559
  • 2
  • 41
  • 61
0
votes
0 answers

Can't open Package.appxmanifest in Visual Studio 2019

I have a problem while opening the freshly created Package.appxmanifest by Microsoft Visual Studio 2019 community (with a new project Windows Application Packaging Project for Windows 10) on Windows 7. I have an error message in a popup : Unable to…
cactuschibre
  • 1,908
  • 2
  • 18
  • 36
1 2 3
99
100