Update package version to 0.7.1
This commit is contained in:
@@ -1,26 +1,29 @@
|
||||
name: bpm
|
||||
description: The official package manager for Tide Linux
|
||||
version: 0.6.1
|
||||
version: 0.7.1
|
||||
revision: 1
|
||||
url: https://github.com/EnumeratedDev/bpm
|
||||
license: MIT
|
||||
maintainers:
|
||||
- [email protected]
|
||||
architecture: any
|
||||
type: source
|
||||
keep:
|
||||
- etc/bpm.conf
|
||||
- etc/bpm-compilation.conf
|
||||
depends:
|
||||
- gnupg
|
||||
optional_depends:
|
||||
- bash
|
||||
- coreutils
|
||||
- fakeroot
|
||||
- git
|
||||
- tar
|
||||
- unzip
|
||||
- bash:For package compilation
|
||||
- coreutils:For package compilation
|
||||
- fakeroot:For package compilation
|
||||
- git:For git downloads during package compilation
|
||||
- tar:For tarball downloads during package compilation
|
||||
- unzip:For zip downloads during package compilation
|
||||
make_depends:
|
||||
- golang
|
||||
- git
|
||||
downloads:
|
||||
- url: https://github.com/EnumeratedDev/bpm/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz
|
||||
extract_to: ${BPM_SOURCE}
|
||||
extract_strip_components: 1
|
||||
checksum: d0bdbeb029e7df27e74b84ba584314b35462b735881c27c60c403b0d6a160710
|
||||
checksum: 6d8801d760a17e6a3581e9ae5d014d550c5e2899b0ff165a38f30cf13a79ab5f
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Initialize BPM keyring
|
||||
bpm keyring -i
|
||||
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Initialize BPM keyring
|
||||
bpm keyring -i
|
||||
@@ -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
|
||||
@@ -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"
|
||||
@@ -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/
|
||||
@@ -15,7 +15,11 @@ package() {
|
||||
make DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc install
|
||||
|
||||
# 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 -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/bpm/LICENSE
|
||||
|
||||
Reference in New Issue
Block a user