mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 04:19:55 +01:00
The debian and rpm changelogs contain no useful information, so let's fill them automatically
This commit is contained in:
parent
05b6c8fe71
commit
724fa9539f
@ -136,6 +136,7 @@ endif (NOT APPLE)
|
||||
add_subdirectory(3rdparty/universalchardet)
|
||||
add_subdirectory(tests)
|
||||
add_subdirectory(dist)
|
||||
add_subdirectory(debian)
|
||||
|
||||
if (WIN32 OR APPLE)
|
||||
message(STATUS "Building static qsqlite plugin")
|
||||
|
@ -1,7 +1,4 @@
|
||||
# Change this file when releasing a new version.
|
||||
# You'll also need to add a new changelog entry in:
|
||||
# debian/changelog
|
||||
# dist/clementine.spec.in
|
||||
|
||||
# Version numbers. For m.n rc, use m.(n-1).99
|
||||
set(CLEMENTINE_VERSION_MAJOR 0)
|
||||
|
5
debian/CMakeLists.txt
vendored
Normal file
5
debian/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
execute_process(COMMAND date "+%a, %-d %b %Y %H:%M:%S %z"
|
||||
OUTPUT_VARIABLE DEB_DATE OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/changelog.in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/changelog)
|
41
debian/changelog
vendored
41
debian/changelog
vendored
@ -1,41 +0,0 @@
|
||||
clementine (0.3.90) unstable; urgency=low
|
||||
|
||||
* Development build
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Mon, 7 Jun 2010 00:00:00 -0800
|
||||
|
||||
clementine (0.3) unstable; urgency=low
|
||||
|
||||
* Version 0.3
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Thu, 6 May 2010 00:00:00 -0800
|
||||
|
||||
clementine (0.2.99) unstable; urgency=low
|
||||
|
||||
* Version 0.3 RC 1
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Mon, 29 Apr 2010 00:00:00 -0800
|
||||
|
||||
clementine (0.2) unstable; urgency=low
|
||||
|
||||
* Version 0.2
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Mon, 22 Mar 2010 00:00:00 -0800
|
||||
|
||||
clementine (0.1-6) unstable; urgency=low
|
||||
|
||||
* Add dependency on libqt4-sql-sqlite
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Tue, 23 Feb 2010 06:22:53 -0800
|
||||
|
||||
clementine (0.1-5) unstable; urgency=low
|
||||
|
||||
* Various bugfixes
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Sun, 21 Feb 2010 22:55:00 -0800
|
||||
|
||||
clementine (0.1-1) unstable; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
||||
-- David Sansome <me@davidsansome.com> Mon, 18 Jan 2010 11:16:00 -0800
|
5
debian/changelog.in
vendored
Normal file
5
debian/changelog.in
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
clementine (${CLEMENTINE_VERSION}) unstable; urgency=low
|
||||
|
||||
* Version ${CLEMENTINE_VERSION_STRING}
|
||||
|
||||
-- David Sansome <me@davidsansome.com> ${DEB_DATE}
|
3
dist/CMakeLists.txt
vendored
3
dist/CMakeLists.txt
vendored
@ -1,3 +1,6 @@
|
||||
execute_process(COMMAND date "+%a %b %Y"
|
||||
OUTPUT_VARIABLE RPM_DATE OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/clementine.spec.in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/clementine.spec)
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Info.plist.in
|
||||
|
16
dist/clementine.spec.in
vendored
16
dist/clementine.spec.in
vendored
@ -52,17 +52,5 @@ make clean
|
||||
%{_datadir}/clementine/projectm-presets
|
||||
|
||||
%changelog
|
||||
* Thu May 6 2010 David Sansome <me@davidsansome.com> - 0.3
|
||||
- Version 0.3
|
||||
|
||||
* Thu Apr 29 2010 David Sansome <me@davidsansome.com> - 0.2.99
|
||||
- Version 0.3 rc 1
|
||||
|
||||
* Mon Mar 22 2010 David Sansome <me@davidsansome.com> - 0.2
|
||||
- Version 0.2
|
||||
|
||||
* Sun Feb 21 2010 David Sansome <me@davidsansome.com> - 0.1-5
|
||||
- Various last-minute bugfixes
|
||||
|
||||
* Sun Jan 17 2010 David Sansome <me@davidsansome.com> - 0.1-1
|
||||
- Initial package
|
||||
* ${RPM_DATE} David Sansome <me@davidsansome.com> - ${CLEMENTINE_VERSION}
|
||||
- Version ${CLEMENTINE_VERSION_STRING}
|
||||
|
Loading…
Reference in New Issue
Block a user