mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
211a19f9d1
Changes since 2023.4: * Add automatic signing keys for trixie * Add Debian Stable Release Key (13/trixie) (ID: 762F67A0B2C39DE4) * Clean up maintscript removal of ancient archive certificates * Get rid of team-members/ and signature verification * Remove buster keys * Rename keyrings from .gpg to .pgp * Use OpenPGP instead of GnuPG when referring to the specification Link: https://salsa.debian.org/release-team/debian-archive-keyring/-/blob/debian/2025.1/debian/changelog Signed-off-by: Daniel Golle <daniel@makrotopia.org>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=debian-archive-keyring
|
|
PKG_VERSION:=2025.1
|
|
PKG_HASH:=9ea7778e443144ca490668737a8ab22dd3e748bb99e805e22ec055abeb3c7fac
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION)_all.deb
|
|
PKG_SOURCE_URL:=https://ftp.debian.org/debian/pool/main/d/$(PKG_NAME)/
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=Unique
|
|
PKG_LICENSE_FILES:=usr/share/doc/debian-archive-keyring/copyright
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/debian-archive-keyring
|
|
SECTION:=admin
|
|
CATEGORY:=Administration
|
|
TITLE:=Debian Archive keyring
|
|
URL:=https://salsa.debian.org/release-team/debian-archive-keyring
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(AR) p $(DL_DIR)/$(PKG_SOURCE) data.tar.xz | $(TAR) -xJC $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/debian-archive-keyring/install
|
|
$(INSTALL_DIR) $(1)/usr/share/keyrings
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/keyrings/*.gpg $(1)/usr/share/keyrings
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,debian-archive-keyring))
|