summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 11:27:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 11:27:03 +0000
commitfaaa3eaa51d83f8d785b4b51b6e5c0ce759084c8 (patch)
tree3f595da2242d92af82fa1c823486d442dffe7ec1
parentAdding upstream version 0.1.1. (diff)
downloadarchitecture-properties-debian.tar.xz
architecture-properties-debian.zip
Adding debian version 0.1.1.debian/0.1.1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/changelog11
-rw-r--r--debian/control28
-rw-r--r--debian/copyright7
-rwxr-xr-xdebian/rules9
-rw-r--r--debian/source/format1
5 files changed, 56 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..183bd28
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,11 @@
+architecture-properties (0.1.1) unstable; urgency=medium
+
+ * Upload to unstable.
+
+ -- Niels Thykier <niels@thykier.net> Mon, 19 Dec 2022 20:52:18 +0000
+
+architecture-properties (0.1) experimental; urgency=medium
+
+ * Initial release.
+
+ -- Niels Thykier <niels@thykier.net> Wed, 14 Dec 2022 14:00:16 +0000
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..27168e4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: architecture-properties
+Section: devel
+Priority: optional
+Maintainer: Architecture Properties Maintainers <achitecture-properties@packages.debian.org>
+Uploaders: Niels Thykier <niels@thykier.net>,
+Build-Depends: debhelper-compat (= 13)
+Rules-Requires-Root: no
+Standards-Version: 4.6.1
+Vcs-Git: https://salsa.debian.org/debian/architecture-properties.git
+Vcs-Browser: https://salsa.debian.org/debian/architecture-properties
+
+Package: architecture-properties
+Architecture: any
+Multi-Arch: same
+Provides: architecture-is-${DEB-HOST-ARCH-BITS}-bit,
+ architecture-is-${DEB-HOST-ARCH-ENDIAN}-endian
+Description: Declarative architecture constraints
+ This is a meta package that provide declarative architecture
+ constraints like "architecture-is-64-bit" or
+ "architecture-is-little-endian" for cases where architecture
+ wildcard support in the Architecture field is insufficient.
+ .
+ Example usage: "Build-Depends: architecture-is-64-bit".
+ .
+ This package is provided solely for the purpose of being used
+ in build-dependencies to simplify management of architecture
+ support.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..619658e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,7 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: 2022 Niels Thykier <niels@thykier.net>
+License: GPL-2+
+ The full text of the GPL version 2 is distributed in
+ /usr/share/common-licenses/GPL-2 on Debian systems.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..46fda55
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
+
+execute_before_dh_gencontrol:
+ echo "DEB-HOST-ARCH-BITS=$(DEB_HOST_ARCH_BITS)" >> debian/architecture-properties.substvars
+ echo "DEB-HOST-ARCH-ENDIAN=$(DEB_HOST_ARCH_ENDIAN)" >> debian/architecture-properties.substvars
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..89ae9db
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (native)