Page MenuHomePhabricator

Debian Package Repositories
Updated 1,483 Days AgoPublic

Version 7 of 19: You are viewing an older version of this document, as it appeared on Mar 6 2020, 4:15 PM.

Debian and Ubuntu Linux

Install AG Projects software signing key:

sudo curl -o /etc/apt/trusted.gpg.d/agp-debian-key.gpg http://download.ag-projects.com/agp-debian-key.gpg

If you don't have Curl:

sudo wget -O /etc/apt/trusted.gpg.d/agp-debian-key.gpg http://download.ag-projects.com/agp-debian-key.gpg

Depending on your Linux OS version add the following lines to /etc/apt/sources.list:

Debian Unstable:

deb    http://ag-projects.com/debian unstable main 
deb-src http://ag-projects.com/debian unstable main

Debian stable (Buster 10):

deb    http://ag-projects.com/debian buster main 
deb-src http://ag-projects.com/debian buster main

Debian previous stable (Strech 9):

deb    http://ag-projects.com/debian stretch main 
deb-src http://ag-projects.com/debian stretch main

Ubuntu Bionic Beaver (18.04):

deb     http://ag-projects.com/ubuntu bionic main 
deb-src http://ag-projects.com/ubuntu bionic main

Ubuntu Eoan Ermine (19.10)

deb     http://ag-projects.com/ubuntu eoan main 
deb-src http://ag-projects.com/ubuntu eoan main

To install or upgrade a software package:

sudo apt-get update 
sudo apt-get install package_name

Replace package_name with the name of the software package.

Tar Archives

Some packages are available as tar archives:

http://download.ag-projects.com/

Version Control Repositories

The source code is managed using darcs version control tool. The darcs repository can be fetched with:

darcs get http://devel.ag-projects.com/repositories/PACKAGE_NAME
Replace PACKAGE_NAME with the name of the software package.

To obtain the incremental changes after the initial get run:

darcs pull -a

Manual Installation

All python software packages can be installed system-wide using:

sudo python setup.py install

Debian Package Building

Some of the packages are ready to be packaged for Debian like distributions by using this procedure:

Create under each repository a clean distribution file:

python setup.py sdist

Go to the ./dist directory and untar the file created at the step above.

Go to the newly created directory and type:

debuild -us -uc

The .deb and related files are built in the upper directory.

Last Author
adigeo
Last Edited
Mar 6 2020, 4:15 PM

Event Timeline

adigeo published a new version of this document.
adigeo changed the title from Debian Package Repositories to AG Proiects Debian Repositories.Mar 3 2021, 3:22 PM
adigeo edited the content of this document. (Show Details)