Skip to content

Commit

Permalink
notes on ppa
Browse files Browse the repository at this point in the history
  • Loading branch information
eidelen committed Aug 6, 2023
1 parent 79aea08 commit 21b7955
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
8 changes: 7 additions & 1 deletion HowToPPA.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 4 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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) <adrian.schneider.pr@gmail.com> Wed, 04 September 2019 09:21:16 +0200
-- Adrian Schneider (eidelen) <adrian.schneider.pr@gmail.com> Sun, 06 Aug 2023 22:02:16 +0200
8 changes: 4 additions & 4 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Source: dicom2mesh
Section: devel
Priority: optional
Maintainer: Adrian Schneider <adrian.schneider.pr@gmail.com>
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.
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.

0 comments on commit 21b7955

Please sign in to comment.