Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2d3f445e68 | ||
|
66bc8c2fb5 | ||
|
f479466bb2 |
1
.github/build-canary-v3
vendored
1
.github/build-canary-v3
vendored
@ -1 +0,0 @@
|
|||||||
1
|
|
1
.github/build-nest-v3
vendored
1
.github/build-nest-v3
vendored
@ -1 +0,0 @@
|
|||||||
1
|
|
1
.github/release-canary-v3
vendored
1
.github/release-canary-v3
vendored
@ -1 +0,0 @@
|
|||||||
2
|
|
1
.github/release-nest-v3
vendored
1
.github/release-nest-v3
vendored
@ -1 +0,0 @@
|
|||||||
2
|
|
37
.github/workflows/build-canaryv3.yml
vendored
37
.github/workflows/build-canaryv3.yml
vendored
@ -1,37 +0,0 @@
|
|||||||
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
37
.github/workflows/build-nestv3.yml
vendored
@ -1,37 +0,0 @@
|
|||||||
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
40
.github/workflows/release-canaryv3.yml
vendored
@ -1,40 +0,0 @@
|
|||||||
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
40
.github/workflows/release-nestv3.yml
vendored
@ -1,40 +0,0 @@
|
|||||||
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
|
|
40
.github/workflows/release.yml
vendored
Normal file
40
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
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
24
LICENSE.md
@ -1,24 +0,0 @@
|
|||||||
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.
|
|
19
main.sh
19
main.sh
@ -1,13 +1,8 @@
|
|||||||
#! /bin/bash
|
# Add dependent repositories
|
||||||
|
wget -q -O - https://ppa.pika-os.com/key.gpg | sudo apt-key add -
|
||||||
set -e
|
add-apt-repository https://ppa.pika-os.com
|
||||||
|
add-apt-repository ppa:pikaos/pika
|
||||||
VERSION="3.0.7"
|
add-apt-repository ppa:kubuntu-ppa/backports
|
||||||
|
|
||||||
source ./pika-build-config.sh
|
|
||||||
|
|
||||||
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
||||||
|
|
||||||
# Clone Upstream
|
# Clone Upstream
|
||||||
cd ./pika-baseos
|
cd ./pika-baseos
|
||||||
|
|
||||||
@ -15,8 +10,8 @@ cd ./pika-baseos
|
|||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
LOGNAME=root dh_make --createorig -y -l -p pika-baseos_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
dh_make --createorig
|
||||||
dpkg-buildpackage --no-sign
|
dpkg-buildpackage
|
||||||
|
|
||||||
# Move the debs to output
|
# Move the debs to output
|
||||||
cd ../
|
cd ../
|
||||||
|
@ -1,112 +1,9 @@
|
|||||||
pika-baseos (3.0.7-101pika2) pika; urgency=medium
|
pika-baseos (2.3.4-kinetic) kinetic; urgency=medium
|
||||||
|
|
||||||
* Add basic network config
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.7-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* Add basic network config
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.6-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* Add basic network config
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.5-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* zram-tools
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.4-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* remove cups
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.3-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* fix some depends
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.1-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* fix autocomplete and PATH
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (3.0.0-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* PikaOS 4
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.5.4-100pika8) pikauwu; urgency=medium
|
|
||||||
|
|
||||||
* Remove ACPI-CALL-DKMS as it is built into the kernel
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.5.4-100pika7) pikauwu; urgency=medium
|
|
||||||
|
|
||||||
* Add optimus commands
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
|
|
||||||
pika-baseos (2.5.0-100pika1) pikauwu; urgency=medium
|
|
||||||
|
|
||||||
* pikauwu release
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.4.6-99pika1.lunar) lunar; urgency=medium
|
|
||||||
|
|
||||||
* booster
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.4.5-99pika1.lunar) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Add new gpu configs
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
|
|
||||||
pika-baseos (2.4.4-99pika1.lunar) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Add new Mesas
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.3.7) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Add ananicy-cpp + rules
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.3.6) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Add refind
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.3.5) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Use generic xdg
|
* Use generic xdg
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
||||||
|
|
||||||
pika-baseos (2.3.3) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Just rebuild in lunar
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +030
|
|
||||||
|
|
||||||
pika-baseos (2.3.2) kinetic; urgency=medium
|
pika-baseos (2.3.2) kinetic; urgency=medium
|
||||||
|
|
||||||
|
@ -9,93 +9,22 @@ Rules-Requires-Root: no
|
|||||||
Package: pika-baseos
|
Package: pika-baseos
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Essential: yes
|
Essential: yes
|
||||||
Pre-Depends:
|
|
||||||
## Basic minimal setup
|
|
||||||
adduser,
|
|
||||||
apt,
|
|
||||||
apt-utils,
|
|
||||||
base-files,
|
|
||||||
console-setup,
|
|
||||||
debconf,
|
|
||||||
debconf-i18n,
|
|
||||||
dhcpcd-base,
|
|
||||||
e2fsprogs,
|
|
||||||
eject,
|
|
||||||
init,
|
|
||||||
iproute2,
|
|
||||||
iputils-ping,
|
|
||||||
kbd,
|
|
||||||
kmod,
|
|
||||||
less,
|
|
||||||
locales,
|
|
||||||
lsb-release,
|
|
||||||
mawk,
|
|
||||||
mount,
|
|
||||||
netbase,
|
|
||||||
netcat-openbsd,
|
|
||||||
netplan.io,
|
|
||||||
passwd,
|
|
||||||
procps,
|
|
||||||
python3,
|
|
||||||
sensible-utils,
|
|
||||||
sudo,
|
|
||||||
tzdata,
|
|
||||||
udev,
|
|
||||||
vim-tiny,
|
|
||||||
whiptail,
|
|
||||||
rsyslog,
|
|
||||||
zram-tools,
|
|
||||||
Depends: ${misc:Depends},
|
Depends: ${misc:Depends},
|
||||||
# Base
|
# Base
|
||||||
## Basic minimal setup
|
|
||||||
adduser,
|
|
||||||
apt,
|
|
||||||
apt-utils,
|
|
||||||
base-files,
|
|
||||||
console-setup,
|
|
||||||
debconf,
|
|
||||||
debconf-i18n,
|
|
||||||
dhcpcd-base,
|
|
||||||
e2fsprogs,
|
|
||||||
eject,
|
|
||||||
init,
|
|
||||||
iproute2,
|
|
||||||
iputils-ping,
|
|
||||||
kbd,
|
|
||||||
kmod,
|
|
||||||
less,
|
|
||||||
locales,
|
|
||||||
lsb-release,
|
|
||||||
mawk,
|
|
||||||
mount,
|
|
||||||
netbase,
|
|
||||||
netcat-openbsd,
|
|
||||||
netplan.io,
|
|
||||||
passwd,
|
|
||||||
procps,
|
|
||||||
python3,
|
|
||||||
sensible-utils,
|
|
||||||
sudo,
|
|
||||||
tzdata,
|
|
||||||
udev,
|
|
||||||
vim-tiny,
|
|
||||||
whiptail,
|
|
||||||
rsyslog,
|
|
||||||
## General
|
## General
|
||||||
desktop-base,
|
ubuntu-minimal,
|
||||||
libglib2.0-bin,
|
libglib2.0-bin,
|
||||||
pika-package-manager,
|
pika-package-manager,
|
||||||
apt-transport-https,
|
apt-transport-https,
|
||||||
software-properties-common,
|
software-properties-common,
|
||||||
refind,
|
|
||||||
avahi-autoipd,
|
avahi-autoipd,
|
||||||
avahi-daemon,
|
avahi-daemon,
|
||||||
dbus-user-session,
|
dbus-user-session,
|
||||||
pika-sources,
|
pika-sources,
|
||||||
openssh-server,
|
openssh-server,
|
||||||
|
ppa-purge,
|
||||||
nano,
|
nano,
|
||||||
bash-completion,
|
bash-completion,
|
||||||
auto-complete-el,
|
|
||||||
wget,
|
wget,
|
||||||
curl,
|
curl,
|
||||||
git,
|
git,
|
||||||
@ -105,19 +34,19 @@ Depends: ${misc:Depends},
|
|||||||
libapr1,
|
libapr1,
|
||||||
libaprutil1,
|
libaprutil1,
|
||||||
libxcb-cursor0,
|
libxcb-cursor0,
|
||||||
ananicy-rules,
|
|
||||||
booster,
|
|
||||||
python3-cairo,
|
|
||||||
python3-gi-cairo,
|
|
||||||
## gvfs backends
|
## gvfs backends
|
||||||
gvfs-backends,
|
gvfs-backends,
|
||||||
gvfs-fuse,
|
gvfs-fuse,
|
||||||
|
ibus-table,
|
||||||
## XDG
|
## XDG
|
||||||
policykit-1,
|
policykit-desktop-privileges,
|
||||||
xdg-desktop-portal,
|
xdg-desktop-portal,
|
||||||
xdg-user-dirs,
|
xdg-user-dirs,
|
||||||
xdg-utils,
|
xdg-utils,
|
||||||
|
xdg-terminal,
|
||||||
## Filesystems
|
## Filesystems
|
||||||
|
libblockdev-crypto2,
|
||||||
|
libblockdev-mdraid2,
|
||||||
lvm2,
|
lvm2,
|
||||||
ecryptfs-utils,
|
ecryptfs-utils,
|
||||||
ntfs-3g,
|
ntfs-3g,
|
||||||
@ -132,26 +61,53 @@ Depends: ${misc:Depends},
|
|||||||
fwupd,
|
fwupd,
|
||||||
fwupdate,
|
fwupdate,
|
||||||
pcmciautils,
|
pcmciautils,
|
||||||
|
ubuntu-drivers-common,
|
||||||
mousetweaks,
|
mousetweaks,
|
||||||
## Display and Graphics
|
## Display and Graphics
|
||||||
|
libegl-mesa0,
|
||||||
|
libvdpau-va-gl1,
|
||||||
|
mesa-vulkan-drivers,
|
||||||
pika-amdgpu-core,
|
pika-amdgpu-core,
|
||||||
pika-amdgpu-config,
|
|
||||||
pika-nvidia-config,
|
|
||||||
pika-i915-config,
|
|
||||||
xorg,
|
xorg,
|
||||||
mesa-hybrid | mesa-stable | mesa-git | mesa-custom | mesa-hybrid-no-march | mesa-stable-no-march | mesa-git-no-march | mesa-custom-no-march,
|
libd3dadapter9-mesa,
|
||||||
|
libegl-mesa0,
|
||||||
|
libegl1-mesa,
|
||||||
|
libgl1-mesa-dri,
|
||||||
|
libgl1-mesa-glx,
|
||||||
|
libglapi-mesa,
|
||||||
|
libgles2-mesa,
|
||||||
|
libglu1-mesa,
|
||||||
|
libglw1-mesa,
|
||||||
|
libwayland-egl1-mesa,
|
||||||
|
mesa-utils,
|
||||||
wayland-protocols,
|
wayland-protocols,
|
||||||
xwayland,
|
xwayland,
|
||||||
|
hidpi-daemon,
|
||||||
## Power saving and laptops
|
## Power saving and laptops
|
||||||
laptop-detect,
|
laptop-detect,
|
||||||
supergfxctl,
|
supergfxctl,
|
||||||
switcheroo-control,
|
|
||||||
acpi,
|
acpi,
|
||||||
## Firmware
|
acpi-call-dkms,
|
||||||
linux-firmware,
|
## Printing
|
||||||
firmware-sof-signed,
|
cups-bsd,
|
||||||
|
cups,
|
||||||
|
openprinting-ppds,
|
||||||
|
printer-driver-brlaser,
|
||||||
|
printer-driver-c2esp,
|
||||||
|
printer-driver-foo2zjs,
|
||||||
|
printer-driver-gutenprint,
|
||||||
|
printer-driver-m2300w,
|
||||||
|
printer-driver-min12xxw,
|
||||||
|
printer-driver-ptouch,
|
||||||
|
printer-driver-pxljr,
|
||||||
|
printer-driver-sag-gdi,
|
||||||
|
printer-driver-splix,
|
||||||
|
cups-client,
|
||||||
|
cups-filters,
|
||||||
|
cups-pk-helper,
|
||||||
## Networking and Bluetooth
|
## Networking and Bluetooth
|
||||||
bluez,
|
bluez,
|
||||||
|
bluez-cups,
|
||||||
ifupdown,
|
ifupdown,
|
||||||
network-manager,
|
network-manager,
|
||||||
resolvconf,
|
resolvconf,
|
||||||
@ -162,12 +118,205 @@ Depends: ${misc:Depends},
|
|||||||
wireless-tools,
|
wireless-tools,
|
||||||
rfkill,
|
rfkill,
|
||||||
gstreamer1.0-plugins-base-apps,
|
gstreamer1.0-plugins-base-apps,
|
||||||
|
alsa-base,
|
||||||
glib-networking,
|
glib-networking,
|
||||||
nfs-common,
|
nfs-common,
|
||||||
samba-common-bin,
|
samba-common-bin,
|
||||||
wpasupplicant,
|
wpasupplicant,
|
||||||
## Audio and codecs
|
## Audio and codecs
|
||||||
pika-audio-pipewire | pika-audio-legacy
|
pika-audio-pipewire | pika-audio-legacy
|
||||||
Recommends: power-profiles-daemon
|
Recommends: power-profiles-daemon, network-manager-wireguard-plugin
|
||||||
Conflicts: nvidia-prime
|
|
||||||
Description: The backbone of PikaOS
|
Description: The backbone of PikaOS
|
||||||
|
Suggests:
|
||||||
|
## Make pika-gnome-desktop-minimal deps not go to autoremove
|
||||||
|
# Basic Session
|
||||||
|
pika-session,
|
||||||
|
pika-settings,
|
||||||
|
gdm3,
|
||||||
|
gnome-shell,
|
||||||
|
# Gnome VRR Session
|
||||||
|
gnome-shell-vrr,
|
||||||
|
mutter-vrr,
|
||||||
|
# Fonts
|
||||||
|
fonts-cantarell,
|
||||||
|
fonts-dejavu-core,
|
||||||
|
fonts-freefont-ttf,
|
||||||
|
fonts-liberation,
|
||||||
|
# Theming
|
||||||
|
gnome-themes-standard,
|
||||||
|
gnome-themes-extra,
|
||||||
|
adwaita-icon-theme-full,
|
||||||
|
adw-gtk3-theme,
|
||||||
|
papirus-icon-theme,
|
||||||
|
sound-theme-freedesktop,
|
||||||
|
# Plugins
|
||||||
|
chrome-gnome-shell,
|
||||||
|
ghostscript-x,
|
||||||
|
gnome-bluetooth,
|
||||||
|
gnome-online-miners,
|
||||||
|
gnome-menus,
|
||||||
|
gnome-video-effects,
|
||||||
|
inputattach,
|
||||||
|
libatk-adaptor,
|
||||||
|
libcanberra-gtk-module,
|
||||||
|
libpam-gnome-keyring,
|
||||||
|
network-manager-pptp-gnome,
|
||||||
|
network-manager-openvpn-gnome,
|
||||||
|
appmenu-gtk2-module,
|
||||||
|
appmenu-gtk3-module,
|
||||||
|
brltty,
|
||||||
|
language-selector-gnome,
|
||||||
|
gnome-remote-desktop,
|
||||||
|
gnome-shell-extension-legacy-gtk3-theme-scheme-auto-switcher,
|
||||||
|
gnome-shell-extension-supergfxctl-gex,
|
||||||
|
nautilus-share,
|
||||||
|
# Applications
|
||||||
|
gnome-control-center,
|
||||||
|
gnome-disk-utility,
|
||||||
|
gnome-system-monitor,
|
||||||
|
gnome-terminal | kgx,
|
||||||
|
nautilus,
|
||||||
|
fonts-noto-color-emoji,
|
||||||
|
gnome-shell-extension-manager,
|
||||||
|
gnome-tweaks,
|
||||||
|
baobab,
|
||||||
|
eog,
|
||||||
|
firmware-manager,
|
||||||
|
geary,
|
||||||
|
gnome-text-editor,
|
||||||
|
gnome-calculator,
|
||||||
|
gnome-calendar,
|
||||||
|
gnome-contacts,
|
||||||
|
gnome-font-viewer,
|
||||||
|
gnome-power-manager,
|
||||||
|
gnome-weather,
|
||||||
|
gnome-photos,
|
||||||
|
gnome-sushi,
|
||||||
|
gucharmap,
|
||||||
|
ibus-table-emoji,
|
||||||
|
pika-welcome,
|
||||||
|
seahorse,
|
||||||
|
simple-scan,
|
||||||
|
yelp,
|
||||||
|
pavucontrol,
|
||||||
|
## Last to replace mime information
|
||||||
|
file-roller,
|
||||||
|
## Make pika-kde-desktop-minimal deps not go to autoremove
|
||||||
|
# Basic Session
|
||||||
|
kde-plasma-desktop,
|
||||||
|
kamera,
|
||||||
|
kgamma5,
|
||||||
|
svgpart,
|
||||||
|
plasma-pa,
|
||||||
|
plasma-nm,
|
||||||
|
pika-kde-settings,
|
||||||
|
plasma-workspace-wayland,
|
||||||
|
kwin-x11,
|
||||||
|
sddm,
|
||||||
|
# Fonts
|
||||||
|
fonts-cantarell,
|
||||||
|
fonts-dejavu-core,
|
||||||
|
fonts-freefont-ttf,
|
||||||
|
fonts-liberation,
|
||||||
|
fonts-indic,
|
||||||
|
fonts-kacst-one,
|
||||||
|
fonts-khmeros-core,
|
||||||
|
fonts-lao,
|
||||||
|
fonts-liberation,
|
||||||
|
fonts-lklug-sinhala,
|
||||||
|
fonts-noto-cjk,
|
||||||
|
fonts-noto-color-emoji,
|
||||||
|
fonts-sil-abyssinica,
|
||||||
|
fonts-sil-padauk,
|
||||||
|
fonts-thai-tlwg,
|
||||||
|
fonts-tibetan-machine,
|
||||||
|
fonts-ubuntu,
|
||||||
|
# Theming
|
||||||
|
breeze,
|
||||||
|
breeze-icon-theme,
|
||||||
|
breeze-gtk-theme,
|
||||||
|
sddm-theme-breeze,
|
||||||
|
papirus-icon-theme,
|
||||||
|
sound-theme-freedesktop,
|
||||||
|
# Plugins
|
||||||
|
ghostscript-x,
|
||||||
|
inputattach,
|
||||||
|
libatk-adaptor,
|
||||||
|
libcanberra-gtk-module,
|
||||||
|
appmenu-gtk2-module,
|
||||||
|
appmenu-gtk3-module,
|
||||||
|
kdenetwork-filesharing,
|
||||||
|
kde-zeroconf,
|
||||||
|
dolphin-plugins,
|
||||||
|
kdegraphics-mobipocket,
|
||||||
|
kdegraphics-thumbnailers,
|
||||||
|
kdeconnect,
|
||||||
|
kde-cli-tools,
|
||||||
|
baloo-kf5,
|
||||||
|
frameworkintegration,
|
||||||
|
inputattach,
|
||||||
|
khelpcenter,
|
||||||
|
khotkeys,
|
||||||
|
kinfocenter,
|
||||||
|
kio,
|
||||||
|
kio-extras,
|
||||||
|
kmenuedit,
|
||||||
|
kwrited,
|
||||||
|
language-selector-common,
|
||||||
|
bluedevil,
|
||||||
|
powerdevil,
|
||||||
|
desktop-file-utils,
|
||||||
|
kde-config-gtk-style,
|
||||||
|
kde-config-gtk-style-preview,
|
||||||
|
kde-config-sddm,
|
||||||
|
xdg-desktop-portal-kde,
|
||||||
|
kde-config-tablet,
|
||||||
|
polkit-kde-agent-1,
|
||||||
|
go-mtpfs,
|
||||||
|
kdialog,
|
||||||
|
kimageformat-plugins,
|
||||||
|
kio-audiocd,
|
||||||
|
krdc,
|
||||||
|
kscreen,
|
||||||
|
kdialog,
|
||||||
|
kio-fuse,
|
||||||
|
kaccounts-integration,
|
||||||
|
plasma-supergfxctl,
|
||||||
|
plasma-browser-integration,
|
||||||
|
dbus-x11,
|
||||||
|
plasma-widgets-addons,
|
||||||
|
plasma-wallpapers-addons,
|
||||||
|
plasma-runners-addons,
|
||||||
|
plasma-dataengines-addons,
|
||||||
|
plasma-calendar-addons,
|
||||||
|
kwin-addons,
|
||||||
|
kdeplasma-addons-data,
|
||||||
|
libunity9,
|
||||||
|
# Applications
|
||||||
|
kwalletmanager,
|
||||||
|
print-manager,
|
||||||
|
fonts-noto-color-emoji,
|
||||||
|
firmware-manager,
|
||||||
|
gucharmap,
|
||||||
|
ibus-table-emoji,
|
||||||
|
pika-welcome,
|
||||||
|
pavucontrol-qt,
|
||||||
|
filelight,
|
||||||
|
kgpg,
|
||||||
|
gwenview,
|
||||||
|
kde-spectacle,
|
||||||
|
okular,
|
||||||
|
mpv,
|
||||||
|
kcalc,
|
||||||
|
dolphin,
|
||||||
|
kate,
|
||||||
|
konsole,
|
||||||
|
plasma-disks,
|
||||||
|
plasma-firewall,
|
||||||
|
plasma-systemmonitor,
|
||||||
|
plasma-vault,
|
||||||
|
ksystemlog,
|
||||||
|
partitionmanager,
|
||||||
|
gwenview,
|
||||||
|
## Last to replace mime information
|
||||||
|
ark,
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[com.system76.hidpi]
|
[com.system76.hidpi]
|
||||||
enable = false
|
enable = true
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
systemctl disable --now gpu-manager || true
|
|
||||||
systemctl mask gpu-manager || true
|
|
||||||
systemctl enable --now nvidia-pika-prime || true
|
|
||||||
apt-mark hold snapd || true
|
|
||||||
echo "" >> /etc/hosts
|
|
||||||
echo "127.0.1.1 ${HOSTNAME}" >> /etc/hosts
|
|
@ -1,4 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
systemctl disable --now nvidia-pika-prime || true
|
|
||||||
systemctl unmask gpu-manager || true
|
|
||||||
systemctl enable --now gpu-manager || true
|
|
@ -1,6 +1,3 @@
|
|||||||
#! /usr/bin/make -f
|
#! /usr/bin/make -f
|
||||||
|
|
||||||
export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch)
|
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@
|
dh $@
|
||||||
|
@ -1 +1 @@
|
|||||||
3.0 (quilt)
|
3.0 (native)
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
127.0.0.1 localhost
|
|
||||||
::1 localhost ip6-localhost ip6-loopback
|
|
||||||
fe00::0 ip6-localnet
|
|
||||||
ff00::0 ip6-mcastprefix
|
|
||||||
ff02::1 ip6-allnodes
|
|
||||||
ff02::2 ip6-allrouters
|
|
4
pika-baseos/etc/modprobe.d/nvidia-pika-config.conf
Normal file
4
pika-baseos/etc/modprobe.d/nvidia-pika-config.conf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
options nvidia-drm modeset=1
|
||||||
|
options nvidia NVreg_UsePageAttributeTable=1
|
||||||
|
options nvidia NVreg_RegistryDwords="OverrideMaxPerf=0x1"
|
||||||
|
options nvidia NVreg_PreserveVideoMemoryAllocations=1 NVreg_TemporaryFilePath=/var/tmp
|
@ -1,2 +0,0 @@
|
|||||||
#! /bin/sh
|
|
||||||
export PATH="/usr/local/sbin:/usr/local/bin:/usr/local/libexec:/usr/sbin:/usr/bin:/sbin:/bin:/usr/libexec:/usr/local/games:/usr/games:$PATH"
|
|
@ -1 +0,0 @@
|
|||||||
/usr/bin/prime-run
|
|
@ -13,7 +13,8 @@ else
|
|||||||
echo '#! /bin/bash -l' > /usr/local/bin/"$1"login
|
echo '#! /bin/bash -l' > /usr/local/bin/"$1"login
|
||||||
echo "exec -l $1" $(echo -e '"$@"') >> /usr/local/bin/"$1"login
|
echo "exec -l $1" $(echo -e '"$@"') >> /usr/local/bin/"$1"login
|
||||||
echo "/usr/local/bin/"$1"login" | tee -a /etc/shells
|
echo "/usr/local/bin/"$1"login" | tee -a /etc/shells
|
||||||
chmod 755 /usr/local/bin/"$1"login
|
chmod -x /usr/local/bin/"$1"login
|
||||||
fi
|
fi
|
||||||
|
|
||||||
chsh -s /usr/local/bin/"$1"login $2
|
chsh -s /usr/local/bin/"$1"login $2
|
||||||
fi
|
fi
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
__GLX_VENDOR_LIBRARY_NAME=nvidia __NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only LIBVA_DRIVER_NAME=nvidia "$@"
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
/usr/bin/prime-run
|
|
@ -1,9 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=Nvidia prime offload pika-style.
|
|
||||||
Conflicts=gpu-manager.service
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
ExecStart=rm -rfv /usr/share/X11/xorg.conf.d/11-nvidia-prime.conf
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
@ -1,10 +0,0 @@
|
|||||||
#! /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
|
|
@ -1,5 +0,0 @@
|
|||||||
#! /bin/bash
|
|
||||||
export PIKA_BUILD_ARCH="i386"
|
|
||||||
export DEBIAN_FRONTEND="noninteractive"
|
|
||||||
export DEB_BUILD_OPTIONS="nocheck notest terse"
|
|
||||||
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
|
|
16
release.sh
16
release.sh
@ -1,2 +1,14 @@
|
|||||||
# send debs to server
|
# Sign the packages
|
||||||
rsync -azP --include './' --include '*.deb' --exclude '*' ./output/ ferreo@direct.pika-os.com:/srv/www/cockatiel-incoming/
|
dpkg-sig --sign builder ./output/pika-baseos*.deb
|
||||||
|
|
||||||
|
# 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 (% pika-baseos*)'
|
||||||
|
|
||||||
|
# Add the new package to the repo
|
||||||
|
reprepro -V --basedir ./output/repo/ includedeb kinetic ./output/pika-baseos*.deb
|
||||||
|
|
||||||
|
# Push the updated ppa repo to the server
|
||||||
|
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|
||||||
|
Loading…
Reference in New Issue
Block a user