Compare commits
No commits in common. "main" and "kinetic" have entirely different histories.
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 @@
|
|||||||
1
|
|
1
.github/release-nest-v3
vendored
1
.github/release-nest-v3
vendored
@ -1 +0,0 @@
|
|||||||
4
|
|
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
|
23
main.sh
23
main.sh
@ -1,24 +1,19 @@
|
|||||||
#! /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="4.0.0"
|
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-gnome-desktop
|
cd ./pika-desktop
|
||||||
|
|
||||||
# Get build deps
|
# Get build deps
|
||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
LOGNAME=root dh_make --createorig -y -l -p pika-gnome-desktop_"$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 ../
|
||||||
mkdir -p ./output
|
mkdir -p ./output
|
||||||
mv ./*.deb ./output/
|
mv ./*.deb ./output/
|
||||||
|
@ -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 -fuse-linker-plugin -falign-functions=32"
|
|
||||||
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
|
||||||
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
|
||||||
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
|
||||||
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
|
|
||||||
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
|
|
56
pika-desktop/debian/changelog
Normal file
56
pika-desktop/debian/changelog
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
pika-desktop (3.6.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Add pika-theme
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
||||||
|
|
||||||
|
pika-desktop (3.4.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Add gir1.2-gmenu-3.0
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-desktop (3.3.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Make the package non essential
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
|
||||||
|
pika-desktop (3.2.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Move firefox to recommends
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-desktop (3.1.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Fix broken deps
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
|
||||||
|
pika-desktop (3.0.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Adapt to BaseOS
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-desktop (2.0.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Replace Adwaita with papirus
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
|
||||||
|
pika-desktop (1.0.1) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* Change office depends to pika-meta
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
||||||
|
|
||||||
|
pika-desktop (1.0.0) kinetic; urgency=medium
|
||||||
|
|
||||||
|
* First release
|
||||||
|
|
||||||
|
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
@ -1,4 +1,4 @@
|
|||||||
Source: pika-gnome-desktop
|
Source: pika-desktop
|
||||||
Section: metapackages
|
Section: metapackages
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Ward Nakchbandi <hotrod.master@hotmail.com>
|
Maintainer: Ward Nakchbandi <hotrod.master@hotmail.com>
|
||||||
@ -6,111 +6,108 @@ Standards-Version: 4.6.1
|
|||||||
Build-Depends: debhelper-compat (= 13)
|
Build-Depends: debhelper-compat (= 13)
|
||||||
Rules-Requires-Root: no
|
Rules-Requires-Root: no
|
||||||
|
|
||||||
Package: pika-gnome-desktop
|
Package: pika-gnome-desktop-minimal
|
||||||
Architecture: linux-any
|
Architecture: linux-any
|
||||||
Depends:
|
Depends: ${misc:Depends},
|
||||||
${misc:Depends},
|
# BaseOS
|
||||||
# PikaOS Basic
|
|
||||||
pika-baseos,
|
pika-baseos,
|
||||||
pika-gnome-settings | pika-settings,
|
# Basic Session
|
||||||
# Basic Desktop
|
pika-session,
|
||||||
|
pika-settings,
|
||||||
gdm3,
|
gdm3,
|
||||||
gnome-shell,
|
gnome-shell,
|
||||||
gnome-session,
|
# Gnome VRR Session
|
||||||
gnome-session-xsession,
|
gnome-shell-vrr,
|
||||||
|
mutter-vrr,
|
||||||
# Fonts
|
# Fonts
|
||||||
fonts-cantarell,
|
fonts-cantarell,
|
||||||
fonts-dejavu-core,
|
fonts-dejavu-core,
|
||||||
fonts-freefont-ttf,
|
fonts-freefont-ttf,
|
||||||
fonts-inter-variable,
|
|
||||||
fonts-liberation,
|
fonts-liberation,
|
||||||
fonts-noto-color-emoji,
|
|
||||||
# Theming
|
# Theming
|
||||||
adwaita-icon-theme,
|
gnome-themes-standard,
|
||||||
adw-gtk3-theme,
|
|
||||||
gnome-themes-extra,
|
gnome-themes-extra,
|
||||||
sound-theme-freedesktop,
|
adwaita-icon-theme-full,
|
||||||
|
adw-gtk3-theme,
|
||||||
papirus-icon-theme,
|
papirus-icon-theme,
|
||||||
# Desktop Libs
|
sound-theme-freedesktop,
|
||||||
appmenu-gtk2-module,
|
pika-theme,
|
||||||
appmenu-gtk3-module,
|
pika-gdm-theme,
|
||||||
at-spi2-core,
|
# Plugins
|
||||||
baobab,
|
|
||||||
brltty,
|
|
||||||
chrome-gnome-shell,
|
chrome-gnome-shell,
|
||||||
dconf-cli,
|
|
||||||
dconf-gsettings-backend,
|
|
||||||
ghostscript-x,
|
ghostscript-x,
|
||||||
gir1.2-gmenu-3.0,
|
gnome-bluetooth,
|
||||||
gkbd-capplet,
|
gnome-online-miners,
|
||||||
glib-networking,
|
gnome-menus,
|
||||||
gsettings-desktop-schemas,
|
gnome-video-effects,
|
||||||
gstreamer1.0-packagekit,
|
|
||||||
gstreamer1.0-plugins-base,
|
|
||||||
gstreamer1.0-plugins-good,
|
|
||||||
gucharmap,
|
|
||||||
gvfs-backends,
|
|
||||||
gvfs-fuse,
|
|
||||||
ibus-table-emoji,
|
|
||||||
inputattach,
|
inputattach,
|
||||||
libatk-adaptor,
|
libatk-adaptor,
|
||||||
libcanberra-pulse,
|
libcanberra-gtk-module,
|
||||||
libglib2.0-bin,
|
|
||||||
libpam-gnome-keyring,
|
libpam-gnome-keyring,
|
||||||
libproxy1-plugin-gsettings,
|
network-manager-pptp-gnome,
|
||||||
libproxy1-plugin-webkit,
|
network-manager-openvpn-gnome,
|
||||||
librsvg2-common,
|
appmenu-gtk2-module,
|
||||||
system-config-printer-common,
|
appmenu-gtk3-module,
|
||||||
system-config-printer-udev,
|
brltty,
|
||||||
tracker,
|
language-selector-gnome,
|
||||||
xdg-desktop-portal-gnome,
|
gnome-remote-desktop,
|
||||||
# Apps
|
gnome-shell-extension-legacy-gtk3-theme-scheme-auto-switcher,
|
||||||
gnome-bluetooth,
|
gnome-shell-extension-supergfxctl-gex,
|
||||||
gnome-calculator,
|
nautilus-share,
|
||||||
gnome-calendar,
|
gir1.2-gmenu-3.0,
|
||||||
gnome-characters,
|
# Applications
|
||||||
gnome-clocks,
|
|
||||||
gnome-console | kgx | gnome-terminal,
|
|
||||||
gnome-contacts,
|
|
||||||
gnome-control-center,
|
gnome-control-center,
|
||||||
gnome-disk-utility,
|
gnome-disk-utility,
|
||||||
gnome-firmware,
|
|
||||||
gnome-font-viewer,
|
|
||||||
gnome-keyring,
|
|
||||||
gnome-logs,
|
|
||||||
gnome-menus,
|
|
||||||
gnome-online-accounts,
|
|
||||||
gnome-photos,
|
|
||||||
gnome-power-manager,
|
|
||||||
gnome-remote-desktop,
|
|
||||||
gnome-settings-daemon,
|
|
||||||
gnome-shell-extension-manager,
|
|
||||||
gnome-software,
|
|
||||||
gnome-sushi,
|
|
||||||
gnome-system-monitor,
|
gnome-system-monitor,
|
||||||
gnome-text-editor,
|
gnome-terminal | kgx,
|
||||||
gnome-tweaks,
|
|
||||||
gnome-user-docs,
|
|
||||||
gnome-user-share,
|
|
||||||
gnome-video-effects,
|
|
||||||
gnome-weather,
|
|
||||||
loupe,
|
|
||||||
nautilus,
|
nautilus,
|
||||||
pavucontrol,
|
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,
|
pika-welcome,
|
||||||
seahorse,
|
seahorse,
|
||||||
simple-scan,
|
simple-scan,
|
||||||
totem,
|
|
||||||
zenity,
|
|
||||||
yelp,
|
yelp,
|
||||||
# Extensions
|
pavucontrol,
|
||||||
gnome-shell-extension-supergfxctl-gex,
|
## Last to replace mime information
|
||||||
gnome-software-plugin-deb,
|
file-roller,
|
||||||
gnome-software-plugin-flatpak,
|
Description: PikaOS Minimal Gnome Desktop Metapackage
|
||||||
gnome-software-plugin-fwupd,
|
Recommends: firefox
|
||||||
nautilus-share,
|
|
||||||
network-manager-openvpn-gnome,
|
Package: pika-gnome-desktop
|
||||||
network-manager-pptp-gnome,
|
Architecture: linux-any
|
||||||
gnome-bluetooth-sendto,
|
Depends: ${misc:Depends},
|
||||||
|
# Pull minimal desktop
|
||||||
|
pika-gnome-desktop-minimal,
|
||||||
|
# Essential Apps
|
||||||
|
build-essential,
|
||||||
|
wget,
|
||||||
|
git,
|
||||||
|
curl,
|
||||||
|
# Gaming Utils
|
||||||
|
pika-gameutils-meta,
|
||||||
|
# AMDGPU Utils
|
||||||
|
pika-amdgpu-switcher,
|
||||||
|
pika-rocm-meta,
|
||||||
|
Recommends:
|
||||||
|
va-driver-all,
|
||||||
|
vdpau-driver-all,
|
||||||
|
vlc,
|
||||||
|
pika-codecs-meta,
|
||||||
|
pika-office-meta,
|
||||||
Description: PikaOS Gnome Desktop Metapackage
|
Description: PikaOS Gnome Desktop Metapackage
|
||||||
Recommends: firefox, pika-gnome-settings
|
|
0
pika-gnome-desktop/debian/rules → pika-desktop/debian/rules
Normal file → Executable file
0
pika-gnome-desktop/debian/rules → pika-desktop/debian/rules
Normal file → Executable file
1
pika-desktop/debian/source/format
Normal file
1
pika-desktop/debian/source/format
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.0 (native)
|
@ -1,87 +0,0 @@
|
|||||||
pika-gnome-desktop (4.0.0-101pika1) pika; urgency=medium
|
|
||||||
|
|
||||||
* Update to OS 4
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.7.2-100pika1) pikauwu; urgency=medium
|
|
||||||
|
|
||||||
* Use new settings model
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.7.0-100pika1) pikauwu; urgency=medium
|
|
||||||
|
|
||||||
* Return to ibus
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
|
||||||
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.6.4-99pika3.lunar) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Add pika-theme
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.6.2-99pika2.lunar) lunar; urgency=medium
|
|
||||||
|
|
||||||
* Add pika-theme
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.6.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Add pika-theme
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 12 Jan 2023 16:48:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.4.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Add gir1.2-gmenu-3.0
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.3.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Make the package non essential
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.2.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Move firefox to recommends
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.1.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Fix broken deps
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
|
|
||||||
pika-gnome-desktop (3.0.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Adapt to BaseOS
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (2.0.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Replace Adwaita with papirus
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
|
|
||||||
pika-gnome-desktop (1.0.1) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* Change office depends to pika-meta
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
||||||
|
|
||||||
pika-gnome-desktop (1.0.0) kinetic; urgency=medium
|
|
||||||
|
|
||||||
* First release
|
|
||||||
|
|
||||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0300
|
|
@ -1 +0,0 @@
|
|||||||
3.0 (quilt)
|
|
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-gnome-desktop*.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-gnome-desktop*)'
|
||||||
|
|
||||||
|
# Add the new package to the repo
|
||||||
|
reprepro -V --basedir ./output/repo/ includedeb kinetic ./output/pika-gnome-desktop*.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