From 21b7955fa5f3520299ec068b128203b663af6ad5 Mon Sep 17 00:00:00 2001 From: Adrian Schneider Date: Sun, 6 Aug 2023 22:56:43 +0200 Subject: [PATCH] notes on ppa --- HowToPPA.txt | 8 +++++++- debian/changelog | 7 ++++--- debian/control | 8 ++++---- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/HowToPPA.txt b/HowToPPA.txt index 7b6fcb7..b4834da 100644 --- a/HowToPPA.txt +++ b/HowToPPA.txt @@ -1,9 +1,15 @@ How to update ppa package (apt-get install ...) +0) Prepare +gpg --gen-key # make a key +gpg --keyserver keyserver.ubuntu.com --send-keys XXXXXXXXX # add the key to the key server +add the key also to launchpad + 1) Update the version in file changelog 2) Create package -tar -acf dicom2mesh_0.1.orig.tar.gz DicomToMesh; cd DicomToMesh; debuild -S -sa; cd ..; +tar -acf dicom2mesh_0.1.orig.tar.gz DicomToMesh; cd DicomToMesh; debuild -S -sa -kXXXXXX; cd ..; +... where XXXXX is the key id 3) Upload to server dput ppa:eidelen/d2m dicom2mesh_0.1-0ppa0_source.changes diff --git a/debian/changelog b/debian/changelog index 38eabc8..7122b45 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ -dicom2mesh (0.8-0ppa0~disco) disco; urgency=low +dicom2mesh (0.812-0ppa0~jammy) jammy; urgency=low - * Disco version + * Jammy version * Upper segmentation threshold * Volume rendering visualization + * VTK9 - -- Adrian Schneider (eidelen) Wed, 04 September 2019 09:21:16 +0200 + -- Adrian Schneider (eidelen) Sun, 06 Aug 2023 22:02:16 +0200 diff --git a/debian/control b/debian/control index ac384b1..59389c7 100644 --- a/debian/control +++ b/debian/control @@ -2,11 +2,11 @@ Source: dicom2mesh Section: devel Priority: optional Maintainer: Adrian Schneider -Build-Depends: cmake, build-essential, libvtk6-dev (>= 6.3.0) -Homepage: https://github.com/AOT-AG/DicomToMesh +Build-Depends: cmake, build-essential, libvtk9-dev, qtbase5-dev, libqt5opengl5-dev +Homepage: https://github.com/eidelen/DicomToMesh Package: dicom2mesh Architecture: any -Depends: vtk6 (>= 6.3.0) +Depends: vtk9, qtbase5-dev, libqt5opengl5-dev Description: DICOM to 3D mesh - Dicom2Mesh is a command line tool to create 3D surface meshs from a set of 2D DICOM images. The supported 3D mesh formats are STL, OBJ and PLY. Several mesh processing routines can be applied. \ No newline at end of file + Dicom2Mesh is a command line tool to create 3D surface meshs from a set of 2D DICOM images. The supported 3D mesh formats are STL, OBJ and PLY. Several mesh processing routines can be applied.