[neon/neon-packaging/mauikit-calendar/Neon/unstable] debian: initial packaging
Carlos De Maine
null at kde.org
Thu Feb 23 22:52:27 GMT 2023
Git commit 8d4a096a0e0f483ce5a79c8b9b322d7244200fb1 by Carlos De Maine.
Committed on 23/02/2023 at 22:52.
Pushed by carlosdem into branch 'Neon/unstable'.
initial packaging
A +5 -0 debian/changelog
A +1 -0 debian/compat
A +51 -0 debian/control
A +36 -0 debian/copyright
A +3 -0 debian/libmauikitcalendar-dev.install
A +2 -0 debian/libmauikitcalendar1.install
A +1 -0 debian/qml-module-org-mauikit-calendar.install
A +4 -0 debian/rules
A +1 -0 debian/source/format
https://invent.kde.org/neon/neon-packaging/mauikit-calendar/commit/8d4a096a0e0f483ce5a79c8b9b322d7244200fb1
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..64e8f50
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+mauikit-calendar (0.0) unstable; urgency=medium
+
+ * Initial release
+
+ -- Jonathan Riddell <jr at jriddell.org> Tue, 04 May 2020 19:57:31 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b4de394
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+11
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8860901
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,51 @@
+Source: mauikit-calendar
+Section: kde
+Priority: optional
+Maintainer: Jonathan Riddell <jr at jriddell.org>
+Build-Depends: cmake,
+ debhelper (>= 11),
+ extra-cmake-modules,
+ libkf5coreaddons-dev,
+ libkf5i18n-dev,
+ libkf5kio-dev,
+ mauiman-dev,
+ mauikit-dev,
+ qtbase5-dev,
+ qtdeclarative5-dev
+Standards-Version: 4.2.1
+Homepage: https://mauikit.org/
+
+Package: qml-module-org-mauikit-calendar
+Architecture: any
+Depends: libmauikit,
+ libmauikitcalendar1,
+ qml-module-org-kde-kirigami2,
+ qml-module-org-kde-mauikit,
+ qml-module-qt-labs-settings,
+ qml-module-qtquick-controls2,
+ qml-module-qtquick-shapes,
+ ${misc:Depends},
+ ${shlibs:Depends}
+Description: MauiKit File Browsing utilities and controls
+ MauiKit File Browsing controls and utils.
+ .
+ This package contains the mauikit filebrowsing qml module.
+
+Package: libmauikitcalendar1
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: MauiKit File Browsing utilities and controls
+ MauiKit File Browsing controls and utils.
+ .
+ This package contains the mauikit filebrowsing library.
+
+Package: libmauikitcalendar-dev
+Architecture: any
+Depends: libmauikitcalendar1 (= ${binary:Version}),
+ qml-module-org-mauikit-filebrowsing,
+ ${misc:Depends},
+ ${shlibs:Depends}
+Description: MauiKit File Browsing utilities and controls
+ MauiKit File Browsing controls and utils.
+ .
+ This package contains mauikit filebrowsing development files.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..000076e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: mauikit
+Source: https://github.com/maui-project/mauikit
+
+Files: *
+Copyright: 2018, Camilo Higuita
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2018, Jonah BrĂ¼chert <jbb at kaidan.im>
+License: GPL-3.0+
+
+License: GPL-3+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 3 dated June, 2007, or (at
+ your option) any later version.
+ On Debian systems, the complete text of version 3 of the GNU General
+ Public License can be found in '/usr/share/common-licenses/GPL-3'.
+
+License: GPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
diff --git a/debian/libmauikitcalendar-dev.install b/debian/libmauikitcalendar-dev.install
new file mode 100644
index 0000000..2391cbb
--- /dev/null
+++ b/debian/libmauikitcalendar-dev.install
@@ -0,0 +1,3 @@
+/usr/include/
+/usr/lib/*/cmake/MauiKitCalendar/
+/usr/lib/*/libMauiKitCalendar.so
diff --git a/debian/libmauikitcalendar1.install b/debian/libmauikitcalendar1.install
new file mode 100644
index 0000000..d35601e
--- /dev/null
+++ b/debian/libmauikitcalendar1.install
@@ -0,0 +1,2 @@
+/usr/lib/*/libMauiKitCalendar.so.1
+/usr/lib/*/libMauiKitCalendar.so.1*
diff --git a/debian/qml-module-org-mauikit-calendar.install b/debian/qml-module-org-mauikit-calendar.install
new file mode 100644
index 0000000..865e7ea
--- /dev/null
+++ b/debian/qml-module-org-mauikit-calendar.install
@@ -0,0 +1 @@
+/usr/lib/*/qt5
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the Neon-commits
mailing list