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 index 6d8d068..316f43c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ -upstream-name (1.0-101pika1) pika; urgency=medium +papirus-colors (20220526git-101pika1) pika; urgency=medium - * Initial release. (Closes: #nnnn) + * New upstream changes 20220526 + - Removes Network icons favoring symbolic - -- ferreo Wed, 18 Jan 2023 21:48:14 +0000 + -- Evil Monkey diff --git a/debian/control b/debian/control index 0bcd8e0..3e43c17 100644 --- a/debian/control +++ b/debian/control @@ -1,19 +1,19 @@ -Source: upstream-name -Section: admin +Source: papirus-colors +Section: x11 Priority: optional -Maintainer: name -Standards-Version: 4.6.1 +Maintainer: Erich Eickmeyer Build-Depends: debhelper-compat (= 13) +Standards-Version: 4.6.0 +Homepage: https://github.com/varlesh/papirus-colors Rules-Requires-Root: no -Package: pkgname1 -Architecture: linux-any -# Delete any of these lines if un-used -Depends: ${misc:Depends}, depends -Recommends: high priority optdepends -Conflicts: conflicts -Suggests: low priority optdepends -Breaks: also conflicts!? -Provides: provides -# -Description: pkgdesc +Package: papirus-colors +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, + papirus-icon-theme +Description: Papirus folders with KDE Color Scheme support + Papirus is a SVG-based icon theme, drawing inspiration from + Material Design and flat design. + . + This package contains the folder icons which follow + KDE Color Schemes. diff --git a/debian/copyright b/debian/copyright index e69de29..e86f0a9 100644 --- a/debian/copyright +++ b/debian/copyright @@ -0,0 +1,28 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: papirus-colors +Upstream-Contact: Alexey Varfolomeev +Source: https://github.com/varlesh/papirus-colors + +Files: * +Copyright: 2021 Alexey Varfolomeev +License: GPL-3 + +Files: debian/* +Copyright: 2022 Erich Eickmeyer +License: GPL-3 + +License: GPL-3 + This package 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". diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..040c1ec --- /dev/null +++ b/debian/install @@ -0,0 +1,2 @@ +Papirus-Colors usr/share/icons +Papirus-Colors-Dark usr/share/icons \ No newline at end of file diff --git a/debian/rules b/debian/rules index 64a084a..cbe925d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,67 +1,3 @@ -#! /usr/bin/make -f - -## See debhelper(7) (uncomment to enable). -## Output every command that modifies files on the build system. -export DH_VERBOSE = 1 -export PIKA_BUILD_ARCH = $(shell cat ../pika-build-arch) - -## === the chain of command === -## debuild runs a chain of dh functions in the following order: -## dh_testdir -## dh_clean -## dh_auto_clean -## dh_update_autotools_config -## dh_autoreconf -## dh_auto_configure -## dh_prep -## dh_build -## dh_auto_build -## dh_install -## dh_auto_install -## dh_installdocs -## dh_installchangelogs -## dh_perl -## dh_link -## dh_strip_nondeterminism -## dh_compress -## dh_fixperms -## dh_missing -## dh_dwz -## dh_strip -## dh_makeshlibs -## dh_shlibdeps -## dh_installdeb -## dh_gencontrol -## but you are most likely to only need to override the following: -## dh_clean -## dh_auto_configure -## dh_build -## dh_install - -## === End end of region === - -## === overriding dh functions === -## by default all dh functions will run a specific command based on the build system selected by "dh $@" -## if you have a makefile that does everything you need this is fine, -## but most likely you have no MakeFile and you want to add your own commands -## Note : overrides must be places above %: -## So here's a few examples: - -## overriding dh_clean to make it not delete rust vendor files: -#override_dh_clean: -# echo "disabled" - -## overriding dh_auto_configure to add custom configs: -#override_dh_auto_configure: -# $(srcdir)/configure -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_DATADIR=/usr/share -DCMAKE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu -DBUILD_PLUGIN=OFF - -## overriding dh_install to install files to a package: -#override_dh_auto_configure: -# mkdir -p debian/pikman/usr/bin -# cp pikman debian/pikman/usr/bin/ - -## === End end of region === - -## This here will start the build: +#!/usr/bin/make -f %: dh $@ diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..d2aed1e --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 + +opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/papirus-colors-$1\.tar\.gz/ \ + https://github.com/varlesh/papirus-colors/tags .*/v?(\d\S*)\.tar\.gz diff --git a/main.sh b/main.sh index d80ca48..96c7429 100755 --- a/main.sh +++ b/main.sh @@ -6,15 +6,15 @@ set -e echo "$PIKA_BUILD_ARCH" > pika-build-arch -VERSION="1.0" +VERSION="20220526git" # Clone Upstream -mkdir -p ./src-pkg-name -cp -rvf ./debian ./src-pkg-name/ -cd ./src-pkg-name/ +git clone --depth=1 https://github.com/varlesh/papirus-colors +cp -rvf ./debian ./papirus-colors/ +cd ./papirus-colors/ # Get build deps -LOGNAME=root dh_make --createorig -y -l -p src-pkg-name_"$VERSION" || echo "dh-make: Ignoring Last Error" +LOGNAME=root dh_make --createorig -y -l papirus-colors_"$VERSION" || echo "dh-make: Ignoring Last Error" apt-get build-dep ./ -y # Build package