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
0 answers

Outlook VBA - How to Deliver VBA and UserForms?

In Outlook 2010 I coded a VBA and also have 2 user forms with some code. How can I deliver the Module and the two forms as a package to my colleagues? So they can easily add the VBA to Outlook 2010 and I can send them updates of my VBA.
OLLI_S
  • 67
  • 2
  • 10
0
votes
1 answer

How to change man page section of debian software?

The package's manual page is in section 1 but I want it in section 8. What kind of changes do I have to do in git? I tried renaming the package.1 file to package.8, but it did not help at least when I created the package by dpkg-buildpackage.
jarno
  • 787
  • 10
  • 21
0
votes
0 answers

Node.js application -- how to build and package for production deployment?

I have a node.js application with package.json which in turn have devDependencies and dependencies. The node application also has tests. In the build machine, I run 'npm install' so that dev-dependencies are installed, then tests are run (tests need…
gjegadesh
  • 144
  • 10
0
votes
1 answer

Cannot find module robotjs

I am using robotjs for remote control in angular electron app, it loads up fine in development mode(npm run electron) but when I do packaging (.exe) using electron packager then after generating exe file I get "Cannot find module robotjs" upon…
Shoib Mohammed A
  • 298
  • 4
  • 12
0
votes
1 answer

What is the most Pythonic way to organise constants?

I use marshmallow and have a series of object serialization. Because of technical reasons, the names of the field and class can be the same. For example, class Sample(Schema): SampleField = fields.Nested(SampleField) class SampleField(Schema): …
Dmytro Chasovskyi
  • 3,209
  • 4
  • 40
  • 82
0
votes
1 answer

Official PyPI vs unofficial binaries

Is there any point of installing packages from unofficial binaries (https://www.lfd.uci.edu/~gohlke/pythonlibs/) if the official PyPI doesn't give me issues? I installed numpy+mkl from there because intel-numpy wasn't available for my Python…
Akababa
  • 327
  • 3
  • 21
0
votes
0 answers

Gadle - Include jar files into jar file

Now this may be a bit weird but hear me out. I need to include some jar files (as they are without unpacking them) into a jar file I'm generating with gradle. I need it so I can unpack them when needed later. (Why exactly I need that is a different…
BrainStone
  • 3,028
  • 6
  • 32
  • 59
0
votes
1 answer

ImportError python module

I have a python module that I have added a new file to. When I try to import the new file as from my_module.new_file import new_class it throws up an import error, where as the same thing works fine for the original files that were in there. I'm…
abinitio
  • 609
  • 6
  • 20
0
votes
1 answer

Single executable binary of Ruby gem

What options are available to create a single binary that contains my Ruby gem along with a Ruby runtime? My goal is to be able to share the executable with another developer and they could simply run the executable from their command line passing…
codematix
  • 1,317
  • 1
  • 16
  • 30
0
votes
1 answer

pkg_resources.get_distribution("mymodule").version not updated after reload

I'm checking if a package is out of date using pkg_resources.get_distribution("mymodule").version If the version isn't matching the latest, I'm running pip install --upgrade git+.... Doing reload('mymodule') is correctly representing the changes,…
user1767754
  • 23,311
  • 18
  • 141
  • 164
0
votes
2 answers

OpenShift - Application packaging

I have a NodeJS API that sits behind a Nginx reverse proxy and connects to a Redis instance. To deploy this on to OpenShift cluster, I need the following: Nginx image e.g. registry.access.redhat.com/rhscl/nginx-114-rhel7 Redis image e.g.…
cogitoergosum
  • 2,309
  • 4
  • 38
  • 62
0
votes
1 answer

How do you make an entry point to a script in a virtual environment available system-wide?

I'm using setuptools for python packaging where I define console script entry points the usual way in the setup.py file: setup.py # -*- coding: utf-8 -*- from setuptools import setup, find_packages setup(... name='my_project', …
cornas
  • 41
  • 1
  • 7
0
votes
0 answers

Alternatives to makepkg command in Solaris 11 that does not use SVR4

Currently I am packaging my libraries and binaries using makepkg, since this uses SVR4 set of commands I wanted to get rid off this. I am looking for such packaging that support in Solaris 11 which is as simple as makepkg. I know IPS is available,…
Puneeth
  • 419
  • 1
  • 6
  • 18
0
votes
1 answer

How to include files downloadable from a server into a pip installation?

I want to create a pip-installable (this is important, we already have a mostly-working easy-install version, but we want to switch to PIP) python package, which is essentially a wrapper for some C functions. As I understand it, I cannot count on…
0
votes
0 answers

How do I package a deb file for my python3 project?

I've created a python3 application which is dependent on, python3 dateparser python3 is easy enough for a deb to automatically resolve, but dateparser is installed via pip. How can I package my deb when my dependencies come from 2 different…
DeepDeadpool
  • 1,441
  • 12
  • 36
1 2 3
99
100