From 170215aa3991377c070f8b2a00befcd58fb86485 Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Wed, 27 Nov 2024 21:05:18 +0300 Subject: [PATCH] attempt 1 --- .github/release-nest-v3 | 2 +- debian/changelog | 5 ----- debian/control | 19 ------------------- debian/copyright | 23 ----------------------- debian/rules | 17 ----------------- debian/source/format | 1 - main.sh | 8 +++----- 7 files changed, 4 insertions(+), 71 deletions(-) delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/rules delete mode 100755 debian/source/format diff --git a/.github/release-nest-v3 b/.github/release-nest-v3 index 56a6051..0cfbf08 100644 --- a/.github/release-nest-v3 +++ b/.github/release-nest-v3 @@ -1 +1 @@ -1 \ No newline at end of file +2 diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 4a9000d..0000000 --- a/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -apx (2.4.3) pika; urgency=medium - - * First Release - - -- Ward Nakchbandi Fri, 09 Oct 2022 21:38:00 +0300 diff --git a/debian/control b/debian/control deleted file mode 100644 index 4d3b21e..0000000 --- a/debian/control +++ /dev/null @@ -1,19 +0,0 @@ -Source: apx -Section: devel -Priority: extra -Maintainer: Ward Nakchbandi -Build-Depends: debhelper-compat (= 13), - dh-golang, - golang-go -Standards-Version: 3.9.6 -Homepage: https://github.com/vanilla-os/apx -Vcs-Browser: https://github.com/vanilla-os/apx -Vcs-Git: git://github.com/vanilla-os/apx.git - -Package: apx -Architecture: linux-any -Depends: ${shlibs:Depends}, - ${misc:Depends}, - podman -Built-Using: ${misc:Built-Using} -Description: Apx is the default package manager in Vanilla OS. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index a5762d6..0000000 --- a/debian/copyright +++ /dev/null @@ -1,23 +0,0 @@ -Format: http://dep.debian.net/deps/dep5 -Upstream-Name: Vanilla OS First Setup -Source: https://github.com/vanilla-os/ - -Files: * -Copyright: 2023 Vanilla-OS contributors -License: GPL-3.0 - -License: GPL-3.0 - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License. - . - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see . - . - On Debian systems, the complete text of the GNU General - Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/debian/rules b/debian/rules deleted file mode 100644 index 9310303..0000000 --- a/debian/rules +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/make -f - -export DH_GOPKG := github.com/vanilla-os/apx -export GO111MODULE := on -export GOPROXY := https://proxy.golang.org,direct - -%: - dh $@ - -override_dh_install: - dh_install - ln -sf /usr/bin/apx debian/apx/usr/bin/apx2 - make install-manpages DESTDIR=debian/apx/ - -override_dh_auto_build: - go mod download - dh_auto_build -- diff --git a/debian/source/format b/debian/source/format deleted file mode 100755 index 89ae9db..0000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (native) diff --git a/main.sh b/main.sh index dd0ecd9..638940f 100755 --- a/main.sh +++ b/main.sh @@ -2,16 +2,14 @@ set -e -VERSION="2.4.3" - source ./pika-build-config.sh echo "$PIKA_BUILD_ARCH" > pika-build-arch # Clone Upstream -git clone --recurse-submodules https://github.com/Vanilla-OS/apx -b v"$VERSION" -cp -rvf ./debian ./apx/ -cd ./apx +git clone --recurse-submodules --depth=1 https://github.com/linuxmint/webapp-manager +cp -rvf ./debian ./webapp-manager/ +cd ./webapp-manager # Get build deps apt-get build-dep ./ -y