Update package version to 0.7.1

This commit is contained in:
2026-05-13 09:31:59 +03:00
parent dcad781e71
commit 1ab4237ff8
8 changed files with 62 additions and 10 deletions
+12 -9
View File
@@ -1,26 +1,29 @@
name: bpm name: bpm
description: The official package manager for Tide Linux description: The official package manager for Tide Linux
version: 0.6.1 version: 0.7.1
revision: 1 revision: 1
url: https://github.com/EnumeratedDev/bpm url: https://github.com/EnumeratedDev/bpm
license: MIT license: MIT
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
keep: keep:
- etc/bpm.conf - etc/bpm.conf
- etc/bpm-compilation.conf - etc/bpm-compilation.conf
depends:
- gnupg
optional_depends: optional_depends:
- bash - bash:For package compilation
- coreutils - coreutils:For package compilation
- fakeroot - fakeroot:For package compilation
- git - git:For git downloads during package compilation
- tar - tar:For tarball downloads during package compilation
- unzip - unzip:For zip downloads during package compilation
make_depends: make_depends:
- golang - golang
- git
downloads: downloads:
- url: https://github.com/EnumeratedDev/bpm/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz - url: https://github.com/EnumeratedDev/bpm/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: d0bdbeb029e7df27e74b84ba584314b35462b735881c27c60c403b0d6a160710 checksum: 6d8801d760a17e6a3581e9ae5d014d550c5e2899b0ff165a38f30cf13a79ab5f
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
# Initialize BPM keyring
bpm keyring -i
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
# Initialize BPM keyring
bpm keyring -i
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
# Remove BPM installed package database
rm -rf /var/lib/bpm/installed/
# Remove BPM gnupg directory
rm -rf /var/lib/bpm/gpg/
# Remove BPM cache directory
rm -rf /var/cache/bpm
+7
View File
@@ -0,0 +1,7 @@
privilege_escalator_cmd: "sudo"
compilation_jobs: 0 # Set to 0 to automatically use all threads
compilation_env:
- "CARCH=x86_64"
- "CHOST=x86_64-pc-linux-gnu"
- "CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe"
- "CXXFLAGS=-march=x86-64 -mtune=generic -O2 -pipe"
@@ -0,0 +1,3 @@
trigger_actions: ["install", "upgrade", "remove"]
targets: ["var/lib/bpm/keyrings/*"]
run: "/usr/sbin/bpm keyring -p"
+17
View File
@@ -0,0 +1,17 @@
ignore_packages: [] # Packages that should not be installed as dependencies or upgraded
ignore_paths: [] # Files and directories that should not be installed, replaced or removed
show_source_package_contents: always # When to list source package source code (Possible values: "always", "install-only", "never")
cleanup_make_dependencies: false # Whether make dependencies should be cleaned up when running `bpm cleanup` or 'bpm remove --cleanup'
databases:
- name: tidelinux-main
verification_level: trusted
source: http://tidelinux.com/repositories/tidelinux-main/binary/
- name: tidelinux-extra
verification_level: trusted
source: http://tidelinux.com/repositories/tidelinux-extra/source/
- name: tidelinux-kde
verification_level: trusted
source: http://tidelinux.com/repositories/tidelinux-kde/binary/
- name: tidelinux-installation-media
verification_level: trusted
source: http://tidelinux.com/repositories/tidelinux-installation-media/binary/
+5 -1
View File
@@ -15,7 +15,11 @@ package() {
make DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc install make DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc install
# Install configuration files # Install configuration files
make DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc install-config install -Dm644 "$BPM_WORKDIR"/bpm.conf "$BPM_OUTPUT"/etc/bpm.conf
install -Dm644 "$BPM_WORKDIR"/bpm-compilation.conf "$BPM_OUTPUT"/etc/bpm-compilation.conf
# Install bpm hook
install -Dm644 "$BPM_WORKDIR"/bpm-populate-keyring.bpmhook "$BPM_OUTPUT"/var/lib/bpm/hooks/bpm-populate-keyring.bpmhook
# Install package license # Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/bpm/LICENSE install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/bpm/LICENSE