Questions tagged [package-management]

The general process of managing and maintaining packages; not to be confused with the related tag, [package-managers], which is focused on the package-management tools themselves.

Packages refers to any archive files containing a computer program as well as necessary metadata for its deployment.

Typical functions of a package management system include:

  • Working with file archivers to extract package archives
  • Ensuring the integrity and authenticity of the package by verifying their digital certificates and checksums
  • Looking up, downloading, installing or updating existing software from a software repository or app store
  • Grouping packages by function to reduce user confusion
  • Managing dependencies to ensure a package is installed with all packages it requires, thus avoiding "dependency hell"
142 questions
3
votes
1 answer

Dart: library and export for web apps

I am experimenting with my first Dart web app and do not expect to make any part of my app a reusable library for other apps/libs. As such, I do not have a lib directory in my project; rather, I have a web directory. I guess my intent is to have my…
3
votes
3 answers

Extending squeak or pharo

Using Monticello package manager does not seem to guarantee that, once you added the interesting package(s), the total image is still coherent. Are there any ways to verify that? Are dependencies verified? Are there guidelines in that direction?
Sharphawk
  • 499
  • 4
  • 8
2
votes
1 answer

Rebuilding a Newer Version of a Deb Package

What's the best way to update (rebuild) a Debian/Ubuntu-package to a more recent version? Should I be using apt source in all cases including when I want to publish it as Personal Package Archive? I would like to have Intel TBB 4.0 instead of 3.0,…
Nordlöw
  • 11,838
  • 10
  • 52
  • 99
2
votes
1 answer

Pacman upgrade causes conflict with not present packages

I'm on Arco Linux(the most basic one). I have installed the nodejs package with pacman. Now when I run sudo pacman -Su I am getting nodejs-lts-gallium and nodejs are in conflict. Remove nodejs? [y/N]. But when I run pacman -Qi nodejs-lts-gallium, it…
2
votes
1 answer

Speeding up import of package installed as develop

I have a package Foo installed as develop (] develop /path/to/Foo) which I use in my Julia scripts and Pluto notebooks. Each experiment begins with using Revise # if a Pluto notebook or REPL using Foo As Foo is a reasonable size it takes around 2…
this_josh
  • 333
  • 2
  • 11
2
votes
1 answer

LDFLAGS not read in Makevars.win when building an Rcpp package

Short and sweet: I'm writing an Rcpp package that uses zlib and sqlite. In the following Makevars.win file, I set Compiler flags and try to set some targets. PKG_CPPFLAGS=-I. -I./lib/sqlite/ -fopenmp -march=native -g -O2 -msse2 -fstack-protector…
2
votes
1 answer

How do I install Cario 1.16.0 for WeasyPrint 51 on Ubuntu 18.04

I need Cario > 1.15.4 to get weasyprint 51 working (https://weasyprint.readthedocs.io/en/latest/install.html), but the docs seem to think it as simple as running: sudo apt-get install build-essential python3-dev python3-pip python3-setuptools…
Robert Johnstone
  • 5,431
  • 12
  • 58
  • 88
2
votes
1 answer

Yocto: custom Image /var/lib/dpkg missing

I am building a custom yocto image based on rocko (2.5.2) for a custom board equiped with a Xilinx Zynq7000.to generate a wic file I am usind sdimage-sota.wks. I added debian package management in my local.conf with PACKAGE_CLASSES ?= "…
2
votes
1 answer

Gentoo package mask not working with exact version number

I installed mysql-5.6.42 on a Gentoo system. There's a newer version 5.7.24, but I don't want to upgrade for that version. So I masked the package under /etc/portage/package.mask =dev-db/mysql-5.6.42 When I want to upgrade for example php portage…
Dragi
  • 57
  • 5
2
votes
2 answers

Using aleph with SWI-prolog: source_sink `library(aleph)' does not exist

I’m trying to import Aleph with SWI-Prolog. When I run my program I get the error below. What do I have to do to import library(aleph)? By the way, I have already downloaded aleph.pl for my program. Here is my test program, I know there must be…
2
votes
1 answer

Why does this script resource not install Chocolatey packages?

I'm trying to write a desired state configuration that installs a package via PackageManagement (aka OneGet). The package, "notepadplusplus", comes from the Chocolatey repository but I want to use PackageManagement rather than the Chocolatey client.…
Vimes
  • 10,577
  • 17
  • 66
  • 86
2
votes
1 answer

JavaScript equivalent to composer

Is there a package dependency manager such as composer, but for JavaScript files. I want to use my js files that are in one project (one repository) in another project (another repository) What do you suggest to use?
Banana
  • 4,010
  • 9
  • 33
  • 49
1
vote
1 answer

installing python libraries

Ok, so i've downloaded the following library: http://www.lag.net/paramiko/ and i can't seem to figure out how to install on my local machine: Mac OS X 10.4.11
SkyLar
  • 93
  • 2
  • 8
1
vote
1 answer

powershell locate and load package .dll

using PowerShell and the iCal.Net package, I want to read an .ics file. # install ical.net dependencies Install-Package NodaTime -Force # install ical.net package Install-Package iCal.Net -Force # variables $icsfile =…
aristosv
  • 75
  • 1
  • 15
1
vote
1 answer

Trouble installing packages from packrat log file

I am trying to work with some code that was written with R/3.6* and its packages. See the lock file at https://gist.github.com/khanna7/cb5791bdf65df55d320fd098d6093b1b. The main package I need, from the lock file, is Package: ergm Source:…