Skip to content

Commit

Permalink
Porting Qt 6 : first steps. Over minor updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles PIGNEROL committed Dec 13, 2023
1 parent e5483fd commit e4c30eb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions meshing/packages/guitoolkitsvariables/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class Guitoolkitsvariables(CMakePackage):
maintainers = ['meshing_team']

version('develop', branch='main')
version('1.4.1', sha256='9670a0f383aa70b3005c85bf2e48b1b843084be172d150efc5268ab5c8dfdf1d')
version('1.3.3', sha256='8b0cfa94d892af453bb2f6672a2f4ffcc8129ec20ae045a8f6f4e13c2b4a96de')
version('1.3.2', sha256='3e8621469763e3216c4cea9197eba3361fb1cd4e060f0295a65e99e9262250f4')
version('1.3.0', sha256='bc8844a6b13b35eea8cb99676e23824d6e437f7cfe3bc7aedea62a7b3e93bb64')
Expand Down
4 changes: 4 additions & 0 deletions meshing/packages/lima/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class Lima(CMakePackage):
git = 'https://github.com/LIHPC-Computational-Geometry/lima.git'
maintainers = ['meshing_team']

extends("python", when='+scripting') # For the PYTHONPATH in the generated modules

# depends_on('sumesh +shared', type=('build', 'link'))
depends_on('swig', type=('build'), when='+scripting')
depends_on('python +shared', type=('build', 'link'), when='+scripting')
Expand All @@ -36,6 +38,8 @@ class Lima(CMakePackage):
patch('cmake-7.6.0.patch', when='@7.6.0')

version('main', branch='main')
version('7.9.6', sha256='650f071afb420cab80cfb4f25913b59f2cff68f6ceb921ea91f58d6985460cba')
version('7.9.5', sha256='48d06f71cefb7253d24b4ae5f9803219ab861281806521d97f335d6a2a209ccd')
version('7.9.4', sha256='ab2fae0938b08c86685b0b2809dff5f6f69bb139e50179c952b391447d5833ec')
version('7.9.3', sha256='4ef65333269ad9ba3a522a4b82d621b4a9ae6d920042a67361fe0a404c4fd0c1')
version('7.9.2', sha256='fee1d16d12b6b2beaa6680903f67feba0fe10a0b1159a61dd926816f89e635fa')
Expand Down
1 change: 1 addition & 0 deletions meshing/packages/pythonutil/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class Pythonutil(CMakePackage):

variant('shared', default=True, description='Creation de bibliotheques dynamiques (defaut:shared, annuler le defaut par ~shared)')

version('6.2.2', sha256='71d74499b53cbf865cc0d161e59358c5d535be407bde44e7fbca30e9232051b0')
version('6.2.1', sha256='14425325f2627bb410d9effb022aa0d1f7d7ee490766093668e3552630809acb')
version('6.2.0', sha256='6c513802336821be8895bc7f46bc580d80a564e2d7ec6c4ee2b1c7d6383a383f')
version('5.6.6', sha256='6edd64ff6ac22ea3483a551c49e490f77071aebe50d5586ece6f8ff929d6e84f')
Expand Down
6 changes: 5 additions & 1 deletion meshing/packages/tkutil/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@


class Tkutil(CMakePackage):
"""Bibliotheque d'utilitaires C++"""
"""Bibliothèque d'utilitaires C++"""

homepage = 'https://github.com/LIHPC-Computational-Geometry/tkutil'
url = 'https://github.com/LIHPC-Computational-Geometry/tkutil/archive/refs/tags/6.5.1.tar.gz'
git = 'https://github.com/LIHPC-Computational-Geometry/tkutil.git'
maintainers = ['meshing_team']

extends("python") # For the PYTHONPATH in the generated modules

depends_on('guitoolkitsvariables', type=('build', 'link'))
# 5.7.6 is the last python2 only version
depends_on('python@:2.999', type=('build', 'link'), when='@:5.7.6')
Expand All @@ -25,6 +27,8 @@ class Tkutil(CMakePackage):
depends_on('libiconv', type=('build', 'link'))

version('develop', branch='main')
version('6.6.1', sha256='1f65b2628992d455cdd0fb9b1e3e791432a3051ac2b138d4a7ef73dabc9e5d76')
version('6.6.0', sha256='9ae89bf5da6ed5af88e11325862df528c16166df49419b518c1c51a80019d0b8')
version('6.5.1', sha256='877ca71cc84cb4d948db8f5ecf65bae775cd33d83b2208c2d8260313238cc285')
version('6.5.0', sha256='a1f1dc27fd0f5bcb8ddeee3f9d895c793f97e21d1cf395d1f607e29a47d0363e')
version('5.14.0', sha256='e9fdc04f5a8efa4a95648a80422cfaccbb6733b79af2d49fe1af3ace4c748cb3')
Expand Down

0 comments on commit e4c30eb

Please sign in to comment.