[neon/backports-focal/kcolorpicker/Neon/unstable] debian: copy from launchpad

Jonathan Riddell null at kde.org
Wed Dec 2 14:32:51 GMT 2020


Git commit 75bdfccfe22de4b90dadf28568491515bdef8485 by Jonathan Riddell.
Committed on 02/12/2020 at 14:32.
Pushed by jriddell into branch 'Neon/unstable'.

copy from launchpad

A  +24   -0    debian/changelog
A  +37   -0    debian/control
A  +29   -0    debian/copyright
A  +1    -0    debian/libkcolorpicker-dev.docs
A  +1    -0    debian/libkcolorpicker-dev.examples
A  +3    -0    debian/libkcolorpicker-dev.install
A  +1    -0    debian/libkcolorpicker0.install
A  +23   -0    debian/rules
A  +1    -0    debian/source/format
A  +4    -0    debian/watch

https://invent.kde.org/neon/backports-focal/kcolorpicker/commit/75bdfccfe22de4b90dadf28568491515bdef8485

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2e6f2cf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,24 @@
+kcolorpicker (0.1.4-1) unstable; urgency=medium
+
+  * New upstream release. 
+
+ -- Boyuan Yang <byang at debian.org>  Wed, 24 Jun 2020 11:01:07 -0400
+
+kcolorpicker (0.1.1-3) unstable; urgency=high
+
+  * debian/control: Add missing build-dependency from dev package
+    to library package.
+
+ -- Boyuan Yang <byang at debian.org>  Thu, 09 Apr 2020 14:48:13 -0400
+
+kcolorpicker (0.1.1-2) unstable; urgency=medium
+
+  * Source-only upload to allow testing migration. 
+
+ -- Boyuan Yang <byang at debian.org>  Thu, 09 Apr 2020 14:06:21 -0400
+
+kcolorpicker (0.1.1-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #955296)
+
+ -- Boyuan Yang <byang at debian.org>  Sun, 29 Mar 2020 10:08:44 -0400
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c643ac9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,37 @@
+Source: kcolorpicker
+Section: libs
+Priority: optional
+Maintainer: Boyuan Yang <byang at debian.org>
+Build-Depends:
+ debhelper-compat (= 13),
+ cmake (>= 3.5),
+ qtbase5-dev,
+Rules-Requires-Root: no
+Standards-Version: 4.5.0
+Homepage: https://github.com/ksnip/kcolorpicker
+Vcs-Git: https://salsa.debian.org/debian/kcolorpicker.git
+Vcs-Browser: https://salsa.debian.org/debian/kcolorpicker
+
+Package: libkcolorpicker-dev
+Architecture: any
+Multi-Arch: same
+Depends:
+ libkcolorpicker0 (= ${binary:Version}),
+ ${misc:Depends},
+Description: QToolButton-like widget with color selection popup menu (dev)
+ The kColorPicker library provides a QToolButton-like widget with color
+ selection popup menu. This library is used by the ksnip project.
+ .
+ This package provides the development files.
+
+Package: libkcolorpicker0
+Architecture: any
+Multi-Arch: same
+Depends:
+ ${misc:Depends},
+ ${shlibs:Depends},
+Description: QToolButton-like widget with color selection popup menu (lib)
+ The kColorPicker library provides a QToolButton-like widget with color
+ selection popup menu. This library is used by the ksnip project.
+ .
+ This package provides the shared library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..666bb41
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: kColorPicker
+Source: https://github.com/ksnip/kColorPicker
+
+Files: *
+Copyright: 2018 Damir Porobic <damir.porobic at gmx.com>
+License: LGPL-3.0+
+
+Files: debian/*
+Copyright: Boyuan Yang <byang at debian.org>
+License: public-domain
+ These files are release to the public domain.
+
+License: LGPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser 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 Lesser General
+ Public License version 3 can be found in "/usr/share/common-licenses/LGPL-3".
diff --git a/debian/libkcolorpicker-dev.docs b/debian/libkcolorpicker-dev.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/libkcolorpicker-dev.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/libkcolorpicker-dev.examples b/debian/libkcolorpicker-dev.examples
new file mode 100644
index 0000000..90c978b
--- /dev/null
+++ b/debian/libkcolorpicker-dev.examples
@@ -0,0 +1 @@
+example/
diff --git a/debian/libkcolorpicker-dev.install b/debian/libkcolorpicker-dev.install
new file mode 100644
index 0000000..a4c010d
--- /dev/null
+++ b/debian/libkcolorpicker-dev.install
@@ -0,0 +1,3 @@
+usr/include
+usr/lib/*/cmake/*
+usr/lib/*/lib*.so
diff --git a/debian/libkcolorpicker0.install b/debian/libkcolorpicker0.install
new file mode 100644
index 0000000..3ddde58
--- /dev/null
+++ b/debian/libkcolorpicker0.install
@@ -0,0 +1 @@
+usr/lib/*/lib*.so.*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..60339eb
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+# export DH_VERBOSE=1
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# see ENVIRONMENT in dpkg-buildflags(1)
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+# package maintainers to append LDFLAGS
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+export QT_SELECT := 5
+
+
+%:
+	dh $@
+
+override_dh_auto_configure:
+	dh_auto_configure -- \
+	        -DBUILD_SHARED_LIBS=ON
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)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..dfee5db
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%kcolorpicker-$1.tar.gz%" \
+ https://github.com/ksnip/kcolorpicker/releases \
+ (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate



More information about the Neon-commits mailing list