diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | debian/control | 4 | ||||
| -rwxr-xr-x | debian/rules | 24 |
3 files changed, 23 insertions, 12 deletions
diff --git a/debian/changelog b/debian/changelog index 3d115ac..3894f52 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ayatana-indicator-datetime (26.6.0) unstable; urgency=medium + + * Upstream-provided Debian package for ayatana-indicator-datetime. See + upstream ChangeLog for recent changes. + + -- UBports developers <developers@ubports.com> Thu, 11 Jun 2026 22:22:10 +0200 + ayatana-indicator-datetime (25.4.0-0) unstable; urgency=medium * Upstream-provided Debian package for ayatana-indicator-datetime. diff --git a/debian/control b/debian/control index 64d69f6..c9e2b98 100644 --- a/debian/control +++ b/debian/control @@ -14,11 +14,11 @@ Build-Depends: cmake, libgstreamer1.0-dev, libmessaging-menu-dev, uuid-dev, -# for non-Lomiri ICS data storage backend +# for EDS data storage backend libecal2.0-dev (>= 3.16), libical-dev (>= 1.0), libedataserver1.2-dev (>= 3.5), -# for Lomiri ICS data storage backend +# for mkcal data storage backend libkf5calendarcore-dev, libmkcal-qt5-dev, # more Lomiri features diff --git a/debian/rules b/debian/rules index 932a8d8..779c82b 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,7 @@ #!/usr/bin/make -f +NULL = + # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 @@ -24,47 +26,49 @@ override_dh_auto_configure: -- \ $(DEB_CMAKE_EXTRA_FLAGS) \ -DENABLE_LOMIRI_FEATURES=ON \ - .. + -DENABLE_MKCAL=ON \ + $(NULL) dh_auto_configure --builddirectory=ayatana-variant \ --buildsystem=cmake \ -- \ $(DEB_CMAKE_EXTRA_FLAGS) \ -DENABLE_LOMIRI_FEATURES=OFF \ - .. + -DENABLE_MKCAL=OFF \ + $(NULL) override_dh_auto_build: dh_auto_build --builddirectory=lomiri-variant \ --buildsystem=cmake \ - .. + $(NULL) dh_auto_build --builddirectory=ayatana-variant \ --buildsystem=cmake \ - .. + $(NULL) override_dh_auto_test: dh_auto_test --no-parallel \ --builddirectory=lomiri-variant \ --buildsystem=cmake \ - .. + $(NULL) dh_auto_test --no-parallel \ --builddirectory=ayatana-variant \ --buildsystem=cmake \ - .. + $(NULL) override_dh_auto_install: dh_auto_install --builddirectory=lomiri-variant \ --buildsystem=cmake \ - .. + $(NULL) dh_auto_install --builddirectory=ayatana-variant \ --buildsystem=cmake \ - .. + $(NULL) override_dh_auto_clean: dh_auto_clean --builddirectory=lomiri-variant \ --buildsystem=cmake \ - .. + $(NULL) dh_auto_clean --builddirectory=ayatana-variant \ --buildsystem=cmake \ - .. + $(NULL) override_dh_missing: dh_missing --fail-missing |
