1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 13:32:50 -05:00

Manual Changelog versioning

This commit is contained in:
purian23
2025-12-10 13:52:29 -05:00
parent b2066c60d1
commit 0dbd59b223
12 changed files with 121 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
dms (0.6.2ppa3) questing; urgency=medium
dms (1.0.0ppa4) questing; urgency=medium
* Rebuild for packaging fixes (ppa3)
* Rebuild for packaging fixes (ppa4)
-- Avenge Media <AvengeMedia.US@gmail.com> Sun, 23 Nov 2025 00:40:41 -0500
-- Avenge Media <AvengeMedia.US@gmail.com> Wed, 10 Dec 2025 12:56:23 -0500

View File

@@ -1 +1 @@
dms_0.6.2ppa3_source.buildinfo x11 optional
dms_1.0.0ppa4_source.buildinfo x11 optional

View File

@@ -29,10 +29,15 @@ override_dh_auto_build:
# Extract source tarball for QML files
tar -xzf dms-source.tar.gz
# Find the extracted directory (it might have various names)
# and create a symlink to expected name for consistent install
SOURCE_DIR=$$(find . -maxdepth 1 -type d -name "DankMaterialShell*" | head -n1); \
if [ -n "$$SOURCE_DIR" ]; then \
ln -sf $$SOURCE_DIR DankMaterialShell-$(BASE_VERSION); \
# and rename it to the expected BASE_VERSION name for consistent install
SOURCE_DIR=$$(find . -maxdepth 1 -type d -name "DankMaterialShell-*" ! -name "DankMaterialShell-$(BASE_VERSION)" | head -n1); \
if [ -n "$$SOURCE_DIR" ] && [ "$$SOURCE_DIR" != "./DankMaterialShell-$(BASE_VERSION)" ]; then \
echo "Renaming $$SOURCE_DIR to DankMaterialShell-$(BASE_VERSION)"; \
mv "$$SOURCE_DIR" DankMaterialShell-$(BASE_VERSION); \
elif [ ! -d "DankMaterialShell-$(BASE_VERSION)" ]; then \
echo "ERROR: No DankMaterialShell directory found after extraction!"; \
ls -la; \
exit 1; \
fi
override_dh_auto_install: