commit a03eb088499aac9feb10ecd7d8ba51fd6c7664c5 Author: EnumDev Date: Fri Apr 17 15:19:29 2026 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d96df7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Ignore BPM archives and signatures +*.bpm +*.bpm.sig diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..b090a94 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Git repository +REPO="https://git.dpkg.org/git/dpkg/dpkg.git" + +# Get tag name using 'git ls-remote' +TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | tail -1 | cut -d'/' -f3) + +echo "$TAG_NAME" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..47db509 --- /dev/null +++ b/pkg.info @@ -0,0 +1,33 @@ +name: dpkg +description: The Debian package manager +version: 1.23.7 +revision: 1 +url: https://tracker.debian.org/pkg/dpkg +license: GPL2-or-later +maintainers: + - enumdev@enumerated.dev +architecture: any +type: source +depends: + - bzip2 + - gcc-libs + - glibc + - libmd + - ncurses + - perl + - xz-utils + - zlib + - zstd +make_depends: + - git + - perl-io-string + - perl-timedate +check_depends: + - perl-io-string + - perl-test-pod +downloads: + - url: https://git.dpkg.org/git/dpkg/dpkg.git + type: git + clone_to: ${BPM_SOURCE} + git_branch: ${BPM_PKG_VERSION} + checksum: ef4d59f5925661818484ac666014ee3e665aadcf diff --git a/source-files/origin.tidelinux b/source-files/origin.tidelinux new file mode 100644 index 0000000..9b62281 --- /dev/null +++ b/source-files/origin.tidelinux @@ -0,0 +1,3 @@ +Vendor: TideLinux +Vendor-URL: https://git.enumerated.dev/tide-linux +Bugs: https://git.enumerated.dev/tide-linux/dpkg/issues diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..d3802ec --- /dev/null +++ b/source.sh @@ -0,0 +1,39 @@ +# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE +# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT + +# The prepare function is executed in the root of the temp directory +# This function is used for putting downloaded files to the correct location or applying patches +prepare() { + cd "$BPM_SOURCE" + # Fix zsh completions install location + sed -i 's|zsh/vendor-completions|zsh/site-functions|' configure.ac + ./autogen +} + +# The build function is executed in the source directory +# This function is used to compile the source code +build() { + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-start-stop-daemon + make +} + +# The check function is executed in the source directory +# This function is used to run tests to verify the package has been compiled correctly +check() { + make check +} + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + make DESTDIR="$BPM_OUTPUT" install + + install -Dm644 /dev/null "$BPM_OUTPUT"/var/lib/dpkg/status + install -Dm644 /dev/null "$BPM_OUTPUT"/var/lib/dpkg/available + install -Dm644 "$BPM_WORKDIR"/origin.tidelinux "$BPM_OUTPUT"/etc/dpkg/origins/tidelinux + ln -sf tidelinux "$BPM_OUTPUT"/etc/dpkg/origins/default + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/dpkg/COPYING +}