Compare commits

...

32 Commits

Author SHA1 Message Date
0b61964fb4 Update pika-build-config/amd64-v3.sh 2024-11-15 17:49:03 +01:00
Ward from fusion-voyager-3
d768f8f273 fix pika target detection 2024-07-26 22:39:39 +03:00
Ward from fusion-voyager-3
79678b7fc4 fully fix maintscripts 2024-07-26 01:31:22 +03:00
Ward from fusion-voyager-3
57ab75935d fix maint env 2024-07-26 01:18:20 +03:00
5f49ac639c c 2024-07-25 21:18:16 +01:00
Ward from fusion-voyager-3
2425c38c4b add license 2024-07-25 13:17:22 +03:00
Ward from fusion-voyager-3
6c9f8b65ae fix typo
All checks were successful
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Successful in 19s
2024-07-24 14:31:52 +03:00
Ward from fusion-voyager-3
79f0ccf760 fix main 2024-07-24 14:00:05 +03:00
Ward from fusion-voyager-3
9b8f2aa9f5 add workflows
Some checks failed
PikaOS Package Build Only (amd64-v3) / build (push) Failing after 0s
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Successful in 16s
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 1s
2024-07-24 03:53:40 +03:00
Ward from fusion-voyager-3
1e3dc80ef9 fix main 2024-07-24 00:14:52 +03:00
Ward from fusion-voyager-3
30c04db5fa 2024-07-23 23:44:28 +03:00
Ward from fusion-voyager-3
f470e409ac 2024-07-23 16:30:34 +03:00
Ward from fusion-voyager-3
145bebf69f 2024-07-23 16:27:10 +03:00
Ward from fusion-voyager-3
a73c7274ca Update to PikaOS 4 2024-07-23 16:23:15 +03:00
Ward Nakchbandi (Cosmic Fusion)
ae3f1be369
Update changelog to 0.379 2024-02-22 18:47:25 +03:00
Ward Nakchbandi (Cosmic Fusion)
cff4370d5f
Update git clone to 0.379 2024-02-22 18:46:38 +03:00
Ward Nakchbandi (Cosmic Fusion)
eecab9fd2e
Update changelog 2023-09-29 13:42:49 +03:00
Ward Nakchbandi (Cosmic Fusion)
9d10bb0964
Update to mantic 2023-09-28 23:45:07 +03:00
d3b4cdac16
Update release.yml 2023-09-06 21:23:03 +01:00
583465f806
Update release.sh 2023-09-06 21:22:47 +01:00
5ba73f41cd
Update release.sh 2023-08-30 20:24:59 +01:00
8b99204e38
Update release.yml 2023-08-19 16:13:03 +01:00
ea0073d67a
Update release.yml 2023-06-23 14:11:17 +01:00
5aedf5892f
Update release.yml 2023-06-16 19:11:09 +01:00
3685f0caa9
Update main.sh 2023-06-16 19:10:54 +01:00
Ward Nakchbandi (Cosmic Fusion)
4d054abbb3
Update changelog 2023-05-11 11:53:40 +03:00
Ward Nakchbandi (Cosmic Fusion)
99e83ff577
Update control 2023-05-11 11:53:33 +03:00
Ward Nakchbandi (Cosmic Fusion)
e529650986
Create hwdata-dev.install 2023-05-11 11:05:19 +03:00
Ward Nakchbandi (Cosmic Fusion)
0fb802395f
Create hwdata.install 2023-05-11 11:05:00 +03:00
Ward Nakchbandi (Cosmic Fusion)
6d0c87d830
2023-05-11 10:57:32 +03:00
Ward Nakchbandi (Cosmic Fusion)
dc8244d252
Create release.yml 2023-04-20 22:33:36 +03:00
Ward Nakchbandi (Cosmic Fusion)
157c092c0f
Update to lunar 2023-04-04 01:33:15 +03:00
20 changed files with 246 additions and 66 deletions

1
.github/build-canary-v3 vendored Normal file
View File

@ -0,0 +1 @@
1

1
.github/build-nest-v3 vendored Normal file
View File

@ -0,0 +1 @@
1

1
.github/release-canary-v3 vendored Normal file
View File

@ -0,0 +1 @@
1

1
.github/release-nest-v3 vendored Normal file
View File

@ -0,0 +1 @@
1

37
.github/workflows/build-canaryv3.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: PikaOS Package Build Only (Canary) (amd64-v3)
on:
push:
branches:
- main
paths:
- '.github/build-canary-v3'
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Update APT Cache
run: apt-get update -y
- name: Set Build Config
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./main.sh

37
.github/workflows/build-nestv3.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: PikaOS Package Build Only (amd64-v3)
on:
push:
branches:
- main
paths:
- '.github/build-nest-v3'
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Update APT Cache
run: apt-get update -y
- name: Set Build Config
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./main.sh

40
.github/workflows/release-canaryv3.yml vendored Normal file
View File

@ -0,0 +1,40 @@
name: PikaOS Package Build & Release (Canary) (amd64-v3)
on:
push:
branches:
- main
paths:
- '.github/release-canary-v3'
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Update APT Cache
run: apt-get update -y
- name: Set Build Config
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./main.sh
- name: Release Package
run: ./release.sh

40
.github/workflows/release-nestv3.yml vendored Normal file
View File

@ -0,0 +1,40 @@
name: PikaOS Package Build & Release (amd64-v3)
on:
push:
branches:
- main
paths:
- '.github/release-nest-v3'
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/pikaos-linux/pikaos-builder:nestv3
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Update APT Cache
run: apt-get update -y
- name: Set Build Config
run: cp -vf ./pika-build-config/amd64-v3.sh ./pika-build-config.sh
- name: Build Package
run: ./main.sh
- name: Release Package
run: ./release.sh

View File

@ -1,40 +0,0 @@
name: PikaOS Package Release
on:
workflow_dispatch
jobs:
build:
runs-on: self-hosted
container:
image: ubuntu:22.10
volumes:
- /proc:/proc
options: --privileged -it
steps:
- uses: actions/checkout@v3
- name: Install needed packages
run: apt update && apt install software-properties-common sudo git bc gpg gpg-agent bison build-essential ccache cpio fakeroot flex git kmod libelf-dev libncurses5-dev libssl-dev lz4 qtbase5-dev rsync schedtool wget zstd tar reprepro dpkg-sig devscripts -y
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_KEY }}
name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace
- name: Build Package
run: ./main.sh
- name: Release Package
run: ./release.sh

24
LICENSE.md Normal file
View File

@ -0,0 +1,24 @@
MIT License (With DPKG packaging compatibility)
Copyright (c) 2024 PikaOS
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Notes:
The files covered by this license are any files and directories in the root of this repository (including but not limited to: `main.sh`, `release.sh`, and `.github`), with the exception of the `debian` directory and its contents if `debian/copyright` exists, and declares any files or directories as a different LICENSE/COPYRIGHT.

18
debian/changelog vendored
View File

@ -1,3 +1,21 @@
hwdata (0.384-101pika1) pika; urgency=medium
* New upstream release && update to PikaOS 4.
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 15 Oct 2022 18:58:00 +0300
hwdata (0.379-100pika1) pikauwu; urgency=medium
* New upstream release && update to pikauwuw.
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 15 Oct 2022 18:58:00 +0300
hwdata (0.370-99pika3.lunar) lunar; urgency=medium
* New upstream release && update to lunar.
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 15 Oct 2022 18:58:00 +0300
hwdata (0.367-99pika1) kinetic; urgency=medium hwdata (0.367-99pika1) kinetic; urgency=medium
* New upstream release. * New upstream release.

12
debian/control vendored
View File

@ -12,9 +12,17 @@ Vcs-Git: https://salsa.debian.org/pino/hwdata.git
Package: hwdata Package: hwdata
Architecture: all Architecture: all
Multi-Arch: foreign Multi-Arch: foreign
Depends: ${misc:Depends}, pci.ids Depends: ${misc:Depends}, pci.ids, usb.ids
Provides: hwdata-dev, usb.ids
Description: hardware identification / configuration data Description: hardware identification / configuration data
This package contains various hardware identification and configuration data, This package contains various hardware identification and configuration data,
such as the pci.ids database, or the XFree86/xorg Cards database. such as the pci.ids database, or the XFree86/xorg Cards database.
It is needed for the kudzu hardware detection. It is needed for the kudzu hardware detection.
Package: hwdata-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, hwdata (= ${binary:Version})
Description: hardware identification / configuration data
This package contains various hardware identification and configuration data,
such as the pci.ids database, or the XFree86/xorg Cards database.
It is needed for the kudzu hardware detection (development headers).

1
debian/hwdata-dev.install vendored Normal file
View File

@ -0,0 +1 @@
usr/share/pkgconfig/*

2
debian/hwdata.install vendored Normal file
View File

@ -0,0 +1,2 @@
usr/share/hwdata/*
usr/lib/*/*

1
debian/rules vendored
View File

@ -2,6 +2,7 @@
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1 #export DH_VERBOSE=1
export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch)
override_dh clean: override_dh clean:
echo "disabled" echo "disabled"

View File

@ -1 +1 @@
3.0 (native) 3.0 (quilt)

23
main.sh
View File

@ -1,11 +1,16 @@
# Add dependent repositories #! /bin/bash
wget -q -O - https://ppa.pika-os.com/key.gpg | sudo apt-key add -
add-apt-repository https://ppa.pika-os.com set -e
add-apt-repository ppa:pikaos/pika
add-apt-repository ppa:kubuntu-ppa/backports VERSION="0.384"
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
# Clone Upstream # Clone Upstream
git clone https://github.com/vcrhonek/hwdata git clone https://github.com/vcrhonek/hwdata -b v"$VERSION"
sed -i 's#/usr/bin/env\ python#/usr/bin/env\ python3#' ./* find . -type f ! -path '*' -exec sed -i 's#/usr/bin/env\ python#/usr/bin/env\ python3#' {} \;
cp -rvf ./debian ./hwdata/ cp -rvf ./debian ./hwdata/
cd ./hwdata cd ./hwdata
@ -13,8 +18,8 @@ cd ./hwdata
apt-get build-dep ./ -y apt-get build-dep ./ -y
# Build package # Build package
dh_make --createorig LOGNAME=root dh_make --createorig -y -l -p hwdata_"$VERSION" || echo "dh-make: Ignoring Last Error"
dpkg-buildpackage dpkg-buildpackage --no-sign
# Move the debs to output # Move the debs to output
cd ../ cd ../

10
pika-build-config/amd64-v3.sh Executable file
View File

@ -0,0 +1,10 @@
#! /bin/bash
export PIKA_BUILD_ARCH="amd64-v3"
export DEBIAN_FRONTEND="noninteractive"
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto=auto"
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto=auto"
export DEB_BUILD_OPTIONS="nocheck notest terse"
export DPKG_GENSYMBOLS_CHECK_LEVEL=0

5
pika-build-config/i386.sh Executable file
View File

@ -0,0 +1,5 @@
#! /bin/bash
export PIKA_BUILD_ARCH="i386"
export DEBIAN_FRONTEND="noninteractive"
export DEB_BUILD_OPTIONS="nocheck notest terse"
export DPKG_GENSYMBOLS_CHECK_LEVEL=0

View File

@ -1,14 +1,2 @@
# Sign the packages # send debs to server
dpkg-sig --sign builder ./output/hwdata*.deb rsync -azP --include './' --include '*.deb' --exclude '*' ./output/ ferreo@direct.pika-os.com:/srv/www/cockatiel-incoming/
# Pull down existing ppa repo db files etc
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
# Remove our existing package from the repo
reprepro -V --basedir ./output/repo/ removefilter kinetic 'Package (% hwdata*)'
# Add the new package to the repo
reprepro -V --basedir ./output/repo/ includedeb kinetic ./output/hwdata*.deb
# Push the updated ppa repo to the server
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/