]> gitweb.hhaalo.de Git - mv-none-space.git/commitdiff
add changelog
authorBastian Dehn <hhaalo@arcor.de>
Mon, 25 May 2026 09:37:10 +0000 (11:37 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Mon, 25 May 2026 09:51:55 +0000 (11:51 +0200)
src/CMakeLists.txt
src/debian/changelog [new file with mode: 0644]

index 8640ae379d776088fa993125f074165e5d2288b4..24d8a6b964e7b9fdf38ef235aeb6c1b35421cf7e 100644 (file)
@@ -14,6 +14,11 @@ add_executable(${PROJECT_NAME}
        command_validate.c
        rename.c)
 
+add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/changelog.Debian.gz
+       COMMAND gzip --stdout --no-name --best ${CMAKE_CURRENT_SOURCE_DIR}/debian/changelog
+               > ${CMAKE_CURRENT_BINARY_DIR}/changelog.Debian.gz)
+add_custom_target(changelog ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/changelog.Debian.gz)
+
 set(CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS
        OWNER_READ
        OWNER_WRITE
@@ -27,6 +32,7 @@ include(GNUInstallDirs)
 install(TARGETS ${PROJECT_NAME}
        DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
 install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/debian/copyright
+       ${CMAKE_CURRENT_BINARY_DIR}/changelog.Debian.gz
        DESTINATION ${CMAKE_INSTALL_DOCDIR})
 
 set(CPACK_GENERATOR "DEB")
diff --git a/src/debian/changelog b/src/debian/changelog
new file mode 100644 (file)
index 0000000..037bfb4
--- /dev/null
@@ -0,0 +1,18 @@
+mv-none-space (1.1.10) stable; urgency=low
+
+  * refactor and fixes
+  * better allocations
+
+ -- Bastian Dehn <hhaalo@arcor.de>  Wed, 13 May 2026 13:43:29 +0200
+
+mv-none-space (1.1.0) stable; urgency=low
+
+  * add rename back with revert command
+
+ -- Bastian Dehn <hhaalo@arcor.de>  Fri, 19 Jul 2024 09:38:11 +0200
+
+mv-none-space (1.0.0) stable; urgency=low
+
+  * initial release
+
+ -- Bastian Dehn <hhaalo@arcor.de>  Wed, 17 Jul 2024 13:07:16 +0200