All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Kanavin <alex.kanavin@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Alexander Kanavin <alex@linutronix.de>
Subject: [PATCH v2 02/44] dropbear: merge .inc into .bb
Date: Mon,  8 Aug 2022 08:41:55 +0200	[thread overview]
Message-ID: <20220808064237.3975347-2-alex@linutronix.de> (raw)
In-Reply-To: <20220808064237.3975347-1-alex@linutronix.de>

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/recipes-core/dropbear/dropbear.inc       | 128 -----------------
 .../recipes-core/dropbear/dropbear_2022.82.bb | 129 +++++++++++++++++-
 2 files changed, 127 insertions(+), 130 deletions(-)
 delete mode 100644 meta/recipes-core/dropbear/dropbear.inc

diff --git a/meta/recipes-core/dropbear/dropbear.inc b/meta/recipes-core/dropbear/dropbear.inc
deleted file mode 100644
index e170587d08..0000000000
--- a/meta/recipes-core/dropbear/dropbear.inc
+++ /dev/null
@@ -1,128 +0,0 @@
-SUMMARY = "A lightweight SSH and SCP implementation"
-HOMEPAGE = "http://matt.ucc.asn.au/dropbear/dropbear.html"
-DESCRIPTION = "Dropbear is a relatively small SSH server and client. It runs on a variety of POSIX-based platforms. Dropbear is open source software, distributed under a MIT-style license. Dropbear is particularly useful for "embedded"-type Linux (or other Unix) systems, such as wireless routers."
-SECTION = "console/network"
-
-# some files are from other projects and have others license terms:
-#   public domain, OpenSSH 3.5p1, OpenSSH3.6.1p2, PuTTY
-LICENSE = "MIT & BSD-3-Clause & BSD-2-Clause & PD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=25cf44512b7bc8966a48b6b1a9b7605f"
-
-DEPENDS = "zlib virtual/crypt"
-RPROVIDES:${PN} = "ssh sshd"
-RCONFLICTS:${PN} = "openssh-sshd openssh"
-
-DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
-
-SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \
-           file://0001-urandom-xauth-changes-to-options.h.patch \
-           file://init \
-           file://dropbearkey.service \
-           file://dropbear@.service \
-           file://dropbear.socket \
-           file://dropbear.default \
-           ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} \
-           ${@bb.utils.contains('PACKAGECONFIG', 'disable-weak-ciphers', 'file://dropbear-disable-weak-ciphers.patch', '', d)} "
-
-PAM_SRC_URI = "file://0005-dropbear-enable-pam.patch \
-               file://0006-dropbear-configuration-file.patch \
-               file://dropbear"
-
-PAM_PLUGINS = "libpam-runtime \
-	pam-plugin-deny \
-	pam-plugin-permit \
-	pam-plugin-unix \
-	"
-RDEPENDS:${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
-
-inherit autotools update-rc.d systemd
-
-CVE_PRODUCT = "dropbear_ssh"
-
-INITSCRIPT_NAME = "dropbear"
-INITSCRIPT_PARAMS = "defaults 10"
-
-SYSTEMD_SERVICE:${PN} = "dropbear.socket"
-
-SBINCOMMANDS = "dropbear dropbearkey dropbearconvert"
-BINCOMMANDS = "dbclient ssh scp"
-EXTRA_OEMAKE = 'MULTI=1 SCPPROGRESS=1 PROGRAMS="${SBINCOMMANDS} ${BINCOMMANDS}"'
-
-PACKAGECONFIG ?= "disable-weak-ciphers"
-PACKAGECONFIG[system-libtom] = "--disable-bundled-libtom,--enable-bundled-libtom,libtommath libtomcrypt"
-PACKAGECONFIG[disable-weak-ciphers] = ""
-
-EXTRA_OECONF += "\
- ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}"
-
-# This option appends to CFLAGS and LDFLAGS from OE
-# This is causing [textrel] QA warning
-EXTRA_OECONF += "--disable-harden"
-
-# musl does not implement wtmp/logwtmp APIs
-EXTRA_OECONF:append:libc-musl = " --disable-wtmp --disable-lastlog"
-
-do_install() {
-	install -d ${D}${sysconfdir} \
-		${D}${sysconfdir}/init.d \
-		${D}${sysconfdir}/default \
-		${D}${sysconfdir}/dropbear \
-		${D}${bindir} \
-		${D}${sbindir} \
-		${D}${localstatedir}
-
-	install -m 0644 ${WORKDIR}/dropbear.default ${D}${sysconfdir}/default/dropbear
-
-	install -m 0755 dropbearmulti ${D}${sbindir}/
-
-	for i in ${BINCOMMANDS}
-	do
-		# ssh and scp symlinks are created by update-alternatives
-		if [ $i = ssh ] || [ $i = scp ]; then continue; fi
-		ln -s ${sbindir}/dropbearmulti ${D}${bindir}/$i
-	done
-	for i in ${SBINCOMMANDS}
-	do
-		ln -s ./dropbearmulti ${D}${sbindir}/$i
-	done
-	sed -e 's,/etc,${sysconfdir},g' \
-		-e 's,/usr/sbin,${sbindir},g' \
-		-e 's,/var,${localstatedir},g' \
-		-e 's,/usr/bin,${bindir},g' \
-		-e 's,/usr,${prefix},g' ${WORKDIR}/init > ${D}${sysconfdir}/init.d/dropbear
-	chmod 755 ${D}${sysconfdir}/init.d/dropbear
-	if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then
-		install -d ${D}${sysconfdir}/pam.d
-		install -m 0644 ${WORKDIR}/dropbear  ${D}${sysconfdir}/pam.d/
-	fi
-
-	# deal with systemd unit files
-	install -d ${D}${systemd_system_unitdir}
-	install -m 0644 ${WORKDIR}/dropbearkey.service ${D}${systemd_system_unitdir}
-	install -m 0644 ${WORKDIR}/dropbear@.service ${D}${systemd_system_unitdir}
-	install -m 0644 ${WORKDIR}/dropbear.socket ${D}${systemd_system_unitdir}
-	sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \
-		-e 's,@BINDIR@,${bindir},g' \
-		-e 's,@SBINDIR@,${sbindir},g' \
-		${D}${systemd_system_unitdir}/dropbear.socket ${D}${systemd_system_unitdir}/*.service
-}
-
-inherit update-alternatives
-
-ALTERNATIVE_PRIORITY = "20"
-ALTERNATIVE:${PN} = "${@bb.utils.filter('BINCOMMANDS', 'scp ssh', d)}"
-
-ALTERNATIVE_TARGET = "${sbindir}/dropbearmulti"
-
-pkg_postrm:${PN} () {
-  if [ -f "${sysconfdir}/dropbear/dropbear_rsa_host_key" ]; then
-        rm ${sysconfdir}/dropbear/dropbear_rsa_host_key
-  fi
-  if [ -f "${sysconfdir}/dropbear/dropbear_dss_host_key" ]; then
-        rm ${sysconfdir}/dropbear/dropbear_dss_host_key
-  fi
-}
-
-CONFFILES:${PN} = "${sysconfdir}/default/dropbear"
-
-FILES:${PN} += "${bindir}"
diff --git a/meta/recipes-core/dropbear/dropbear_2022.82.bb b/meta/recipes-core/dropbear/dropbear_2022.82.bb
index 154a407a19..e170587d08 100644
--- a/meta/recipes-core/dropbear/dropbear_2022.82.bb
+++ b/meta/recipes-core/dropbear/dropbear_2022.82.bb
@@ -1,3 +1,128 @@
-require dropbear.inc
+SUMMARY = "A lightweight SSH and SCP implementation"
+HOMEPAGE = "http://matt.ucc.asn.au/dropbear/dropbear.html"
+DESCRIPTION = "Dropbear is a relatively small SSH server and client. It runs on a variety of POSIX-based platforms. Dropbear is open source software, distributed under a MIT-style license. Dropbear is particularly useful for "embedded"-type Linux (or other Unix) systems, such as wireless routers."
+SECTION = "console/network"
 
-SRC_URI[sha256sum] = "3a038d2bbc02bf28bbdd20c012091f741a3ec5cbe460691811d714876aad75d1"
+# some files are from other projects and have others license terms:
+#   public domain, OpenSSH 3.5p1, OpenSSH3.6.1p2, PuTTY
+LICENSE = "MIT & BSD-3-Clause & BSD-2-Clause & PD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=25cf44512b7bc8966a48b6b1a9b7605f"
+
+DEPENDS = "zlib virtual/crypt"
+RPROVIDES:${PN} = "ssh sshd"
+RCONFLICTS:${PN} = "openssh-sshd openssh"
+
+DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
+
+SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \
+           file://0001-urandom-xauth-changes-to-options.h.patch \
+           file://init \
+           file://dropbearkey.service \
+           file://dropbear@.service \
+           file://dropbear.socket \
+           file://dropbear.default \
+           ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} \
+           ${@bb.utils.contains('PACKAGECONFIG', 'disable-weak-ciphers', 'file://dropbear-disable-weak-ciphers.patch', '', d)} "
+
+PAM_SRC_URI = "file://0005-dropbear-enable-pam.patch \
+               file://0006-dropbear-configuration-file.patch \
+               file://dropbear"
+
+PAM_PLUGINS = "libpam-runtime \
+	pam-plugin-deny \
+	pam-plugin-permit \
+	pam-plugin-unix \
+	"
+RDEPENDS:${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
+
+inherit autotools update-rc.d systemd
+
+CVE_PRODUCT = "dropbear_ssh"
+
+INITSCRIPT_NAME = "dropbear"
+INITSCRIPT_PARAMS = "defaults 10"
+
+SYSTEMD_SERVICE:${PN} = "dropbear.socket"
+
+SBINCOMMANDS = "dropbear dropbearkey dropbearconvert"
+BINCOMMANDS = "dbclient ssh scp"
+EXTRA_OEMAKE = 'MULTI=1 SCPPROGRESS=1 PROGRAMS="${SBINCOMMANDS} ${BINCOMMANDS}"'
+
+PACKAGECONFIG ?= "disable-weak-ciphers"
+PACKAGECONFIG[system-libtom] = "--disable-bundled-libtom,--enable-bundled-libtom,libtommath libtomcrypt"
+PACKAGECONFIG[disable-weak-ciphers] = ""
+
+EXTRA_OECONF += "\
+ ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}"
+
+# This option appends to CFLAGS and LDFLAGS from OE
+# This is causing [textrel] QA warning
+EXTRA_OECONF += "--disable-harden"
+
+# musl does not implement wtmp/logwtmp APIs
+EXTRA_OECONF:append:libc-musl = " --disable-wtmp --disable-lastlog"
+
+do_install() {
+	install -d ${D}${sysconfdir} \
+		${D}${sysconfdir}/init.d \
+		${D}${sysconfdir}/default \
+		${D}${sysconfdir}/dropbear \
+		${D}${bindir} \
+		${D}${sbindir} \
+		${D}${localstatedir}
+
+	install -m 0644 ${WORKDIR}/dropbear.default ${D}${sysconfdir}/default/dropbear
+
+	install -m 0755 dropbearmulti ${D}${sbindir}/
+
+	for i in ${BINCOMMANDS}
+	do
+		# ssh and scp symlinks are created by update-alternatives
+		if [ $i = ssh ] || [ $i = scp ]; then continue; fi
+		ln -s ${sbindir}/dropbearmulti ${D}${bindir}/$i
+	done
+	for i in ${SBINCOMMANDS}
+	do
+		ln -s ./dropbearmulti ${D}${sbindir}/$i
+	done
+	sed -e 's,/etc,${sysconfdir},g' \
+		-e 's,/usr/sbin,${sbindir},g' \
+		-e 's,/var,${localstatedir},g' \
+		-e 's,/usr/bin,${bindir},g' \
+		-e 's,/usr,${prefix},g' ${WORKDIR}/init > ${D}${sysconfdir}/init.d/dropbear
+	chmod 755 ${D}${sysconfdir}/init.d/dropbear
+	if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then
+		install -d ${D}${sysconfdir}/pam.d
+		install -m 0644 ${WORKDIR}/dropbear  ${D}${sysconfdir}/pam.d/
+	fi
+
+	# deal with systemd unit files
+	install -d ${D}${systemd_system_unitdir}
+	install -m 0644 ${WORKDIR}/dropbearkey.service ${D}${systemd_system_unitdir}
+	install -m 0644 ${WORKDIR}/dropbear@.service ${D}${systemd_system_unitdir}
+	install -m 0644 ${WORKDIR}/dropbear.socket ${D}${systemd_system_unitdir}
+	sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \
+		-e 's,@BINDIR@,${bindir},g' \
+		-e 's,@SBINDIR@,${sbindir},g' \
+		${D}${systemd_system_unitdir}/dropbear.socket ${D}${systemd_system_unitdir}/*.service
+}
+
+inherit update-alternatives
+
+ALTERNATIVE_PRIORITY = "20"
+ALTERNATIVE:${PN} = "${@bb.utils.filter('BINCOMMANDS', 'scp ssh', d)}"
+
+ALTERNATIVE_TARGET = "${sbindir}/dropbearmulti"
+
+pkg_postrm:${PN} () {
+  if [ -f "${sysconfdir}/dropbear/dropbear_rsa_host_key" ]; then
+        rm ${sysconfdir}/dropbear/dropbear_rsa_host_key
+  fi
+  if [ -f "${sysconfdir}/dropbear/dropbear_dss_host_key" ]; then
+        rm ${sysconfdir}/dropbear/dropbear_dss_host_key
+  fi
+}
+
+CONFFILES:${PN} = "${sysconfdir}/default/dropbear"
+
+FILES:${PN} += "${bindir}"
-- 
2.30.2



  reply	other threads:[~2022-08-08  6:42 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-08  6:41 [PATCH v2 01/44] rpm: update 4.17.0 -> 4.17.1 Alexander Kanavin
2022-08-08  6:41 ` Alexander Kanavin [this message]
2022-08-08  6:41 ` [PATCH v2 03/44] dropbear: use git to get sources as the website is down Alexander Kanavin
2022-08-08 16:54   ` [OE-core] " Khem Raj
2022-08-08 17:23     ` Alexander Kanavin
2022-08-08  6:41 ` [PATCH v2 04/44] go: update 1.18.4 -> 1.19 Alexander Kanavin
2022-08-08  6:41 ` [PATCH v2 05/44] rust: update 1.62.0 -> 1.62.1 Alexander Kanavin
2022-08-08  6:41 ` [PATCH v2 06/44] cmake: update 3.23.2 -> 3.24.0 Alexander Kanavin
2022-08-08 16:59   ` [OE-core] " Khem Raj
2022-08-08 17:23     ` Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 07/44] bluez5: update 5.64 -> 5.65 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 08/44] patchelf: update 0.14.5 -> 0.15.0 Alexander Kanavin
2022-08-08 17:07   ` [OE-core] " Khem Raj
2022-08-08 17:28     ` Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 09/44] python3-pip: update 22.2.1 -> 22.2.2 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 10/44] ffmpeg: update 5.0.1 -> 5.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 11/44] iproute2: upgrade 5.18.0 -> 5.19.0 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 12/44] util-linux: upgrade 2.38 -> 2.38.1 Alexander Kanavin
2022-08-13 13:06   ` [OE-core] " Alexandre Belloni
2022-08-13 14:28     ` Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 13/44] harfbuzz: upgrade 4.4.1 -> 5.1.0 Alexander Kanavin
2022-08-08 17:09   ` [OE-core] " Khem Raj
2022-08-08  6:42 ` [PATCH v2 14/44] libwpe: upgrade 1.12.0 -> 1.12.2 Alexander Kanavin
2022-08-08 17:10   ` [OE-core] " Khem Raj
2022-08-08  6:42 ` [PATCH v2 15/44] bind: upgrade 9.18.4 -> 9.18.5 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 16/44] diffoscope: upgrade 218 -> 220 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 17/44] ell: upgrade 0.51 -> 0.52 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 18/44] gnutls: upgrade 3.7.6 -> 3.7.7 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 19/44] iso-codes: upgrade 4.10.0 -> 4.11.0 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 20/44] kea: upgrade 2.0.2 -> 2.2.0 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 21/44] kexec-tools: upgrade 2.0.24 -> 2.0.25 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 22/44] libcap: upgrade 2.64 -> 2.65 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 23/44] libevdev: upgrade 1.12.1 -> 1.13.0 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 24/44] libnotify: upgrade 0.8.0 -> 0.8.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 25/44] libwebp: upgrade 1.2.2 -> 1.2.3 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 26/44] libxcvt: upgrade 0.1.1 -> 0.1.2 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 27/44] mesa: upgrade 22.1.3 -> 22.1.5 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 28/44] mobile-broadband-provider-info: upgrade 20220511 -> 20220725 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 29/44] nettle: upgrade 3.8 -> 3.8.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 30/44] piglit: upgrade to latest revision Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 31/44] puzzles: " Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 32/44] python3: upgrade 3.10.5 -> 3.10.6 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 33/44] python3-dtschema: upgrade 2022.7 -> 2022.8 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 34/44] python3-hypothesis: upgrade 6.50.1 -> 6.54.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 35/44] python3-jsonschema: upgrade 4.9.0 -> 4.9.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 36/44] python3-markdown: upgrade 3.3.7 -> 3.4.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 37/44] python3-setuptools: upgrade 63.3.0 -> 63.4.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 38/44] python3-sphinx: upgrade 5.0.2 -> 5.1.1 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 39/44] python3-urllib3: upgrade 1.26.10 -> 1.26.11 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 40/44] sqlite3: upgrade 3.39.1 -> 3.39.2 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 41/44] stress-ng: upgrade 0.14.02 -> 0.14.03 Alexander Kanavin
2022-08-13 13:06   ` [OE-core] " Alexandre Belloni
2022-08-08  6:42 ` [PATCH v2 42/44] sysklogd: upgrade 2.4.0 -> 2.4.2 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 43/44] webkitgtk: upgrade 2.36.4 -> 2.36.5 Alexander Kanavin
2022-08-08  6:42 ` [PATCH v2 44/44] weston: upgrade 10.0.1 -> 10.0.2 Alexander Kanavin
2022-08-08 17:39   ` [OE-core] " Khem Raj

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220808064237.3975347-2-alex@linutronix.de \
    --to=alex.kanavin@gmail.com \
    --cc=alex@linutronix.de \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.