[neon/neon-packaging/kweathercore/Neon/unstable] debian: initial package

Jonathan Riddell null at kde.org
Mon Jun 12 07:42:32 BST 2023


Git commit 7d1f30dbf31276b991ef7ec9fde057f006134f99 by Jonathan Riddell.
Committed on 20/05/2021 at 15:02.
Pushed by carlosdem into branch 'Neon/unstable'.

initial package

A  +1    -0    debian/.gitattributes
A  +5    -0    debian/changelog
A  +32   -0    debian/control
A  +53   -0    debian/copyright
A  +4    -0    debian/libkf5kweathercore-dev.install
A  +2    -0    debian/libkf5kweathercore5.install
A  +4    -0    debian/rules
A  +1    -0    debian/source/format

https://invent.kde.org/neon/neon-packaging/kweathercore/-/commit/7d1f30dbf31276b991ef7ec9fde057f006134f99

diff --git a/debian/.gitattributes b/debian/.gitattributes
new file mode 100644
index 0000000..6a03163
--- /dev/null
+++ b/debian/.gitattributes
@@ -0,0 +1 @@
+changelog merge=dpkg-mergechangelogs
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0092bad
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+kweathercore (0.0-0neon) focal; urgency=medium
+
+  * New release
+
+ -- Neon CI <neon at kde.org>  Mon, 19 Apr 2021 10:27:05 +0000
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..ee15dd5
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: kweathercore
+Section: kde
+Maintainer: Jonathan Riddell <jr at jriddell.org>
+Priority: optional
+Build-Depends: cmake (>= 2.8.12~),
+               debhelper-compat (= 13),
+               extra-cmake-modules (>= 5.24.0~),
+               qtbase5-dev (>= 5.4.0~),
+	       libkf5i18n-dev,
+	       qtpositioning5-dev
+Standards-Version: 4.1.3
+Homepage: http://www.kde.org/
+
+Package: libkf5kweathercore-dev
+Section: libdevel
+Architecture: any
+Depends: libkf5kweathercore5 (= ${binary:Version}),
+         qtbase5-dev (>= 5.4.0~),
+         ${misc:Depends}
+Description: retrieval of weather information including forecasts and alerts
+ Library to facilitate retrieval of weather information including
+ forecasts and alerts.
+ .
+ This package contains the development files.
+
+Package: libkf5kweathercore5
+Section: libs
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: retrieval of weather information including forecasts and alerts
+ Library to facilitate retrieval of weather information including
+ forecasts and alerts.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..47df074
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: libkweathercore
+Upstream-Contact: kde-multimedia at kde.org
+Source: ftp.kde.org
+
+Files: *
+Copyright: 2020-2021 Han Young <hanyoung at protonmail.com>
+           2021 Anjani Kumar <anjanik012 at gmail.com>
+           2020 Devin Lin <espidev at gmail.com>
+License: LGPL-2.0-or-later
+
+Files: debian/*
+Copyright: 2021, Jonathan Riddell <jr at jriddell.org>
+License: GPL-2+
+
+License: GPL-2+
+ 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 2 of the License, or (at your option) any later
+ version.
+ .
+ This program 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 package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public License
+ version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.
+
+License: LGPL-2.0-or-later
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+ .
+ This library 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
+ Library General Public License for more details.
+ .
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the Free Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU Library General Public License
+ version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'.
diff --git a/debian/libkf5kweathercore-dev.install b/debian/libkf5kweathercore-dev.install
new file mode 100644
index 0000000..30b2d1a
--- /dev/null
+++ b/debian/libkf5kweathercore-dev.install
@@ -0,0 +1,4 @@
+usr/include/KF5/
+usr/lib/*/cmake/
+usr/lib/*/libKF5KWeatherCore.so
+usr/lib/*/qt5/mkspecs/modules/
diff --git a/debian/libkf5kweathercore5.install b/debian/libkf5kweathercore5.install
new file mode 100644
index 0000000..237cd31
--- /dev/null
+++ b/debian/libkf5kweathercore5.install
@@ -0,0 +1,2 @@
+usr/lib/x86_64-linux-gnu/libKF5KWeatherCore.so.0.*
+usr/lib/x86_64-linux-gnu/libKF5KWeatherCore.so.5
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