-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0be47b4
Showing
18,602 changed files
with
107,191 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Build Package | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: [ "*" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Send Hooks BigLinux Build Package | ||
shell: bash | ||
run: | | ||
curl -X POST -H "Accept: application/json" -H "Authorization: token ${{ secrets.WEBHOOK_TOKEN }}" --data '{"event_type": "${{ github.repository }}", "client_payload": { "branch": "${{ github.ref_name }}", "url": "https://github.com/${{ github.repository }}"}}' https://api.github.com/repos/BigLinux-Package-Build/build-package/dispatches | ||
curl -X POST -H "Accept: application/json" -H "Authorization: token ${{ secrets.WEBHOOK_TOKEN }}" --data '{"event_type": "${{ github.repository }}", "client_payload": { "branch": "${{ github.ref_name }}", "url": "https://github.com/${{ github.repository }}"}}' https://api.github.com/repos/BigLinux-Package-Build/build-package-ARM/dispatches | ||
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Maintainer: Barnabé di Kartola <[email protected]> | ||
|
||
pkgname=bigicons-papient | ||
pkgdesc="Package icons for biglinux based in Papirus and Fluent" | ||
depends=('papirus-icon-theme') | ||
# makedepends=('') | ||
# conflicts=('') | ||
pkgver=$(date +%y.%m.%d) | ||
pkgrel=$(date +%H%M) | ||
arch=('any') | ||
license=('GPL3') | ||
url="https://github.com/biglinux/$pkgname" | ||
provides=("$pkgname") | ||
source=("git+${url}.git") | ||
md5sums=('SKIP') | ||
if [ -e "${pkgname}.install" ];then | ||
install=${pkgname}.install | ||
elif [ -e "pkgbuild.install" ];then | ||
install=pkgbuild.install | ||
fi | ||
|
||
package() { | ||
# Verify default folder | ||
if [ -d "${srcdir}/${pkgname}/${pkgname}" ]; then | ||
InternalDir="${srcdir}/${pkgname}/${pkgname}" | ||
else | ||
InternalDir="${srcdir}/${pkgname}" | ||
fi | ||
|
||
# Copy files | ||
if [ -d "${InternalDir}/usr" ]; then | ||
cp -r "${InternalDir}/usr" "${pkgdir}/" | ||
fi | ||
|
||
if [ -d "${InternalDir}/etc" ]; then | ||
cp -r "${InternalDir}/etc" "${pkgdir}/" | ||
fi | ||
|
||
if [ -d "${InternalDir}/opt" ]; then | ||
cp -r "${InternalDir}/opt" "${pkgdir}/" | ||
fi | ||
|
||
# Generate light theme from dark theme | ||
mkdir -p "${pkgdir}/usr/share/icons/bigicons-papient" | ||
cd "${pkgdir}/usr/share/icons/bigicons-papient" | ||
cp -R ../bigicons-papient-dark/16 . | ||
cp -R ../bigicons-papient-dark/22 . | ||
cp -R ../bigicons-papient-dark/symbolic . | ||
ln -s 16 16@2x | ||
ln -s 16 16@3x | ||
ln -s 22 22@3x | ||
ln -s 22 22@2x | ||
ln -s symbolic symbolic16 | ||
ln -s symbolic symbolic22 | ||
ln -s ../bigicons-papient-dark/scalable scalable | ||
ln -s ../bigicons-papient-dark/scalable scalable@2x | ||
ln -s ../bigicons-papient-dark/scalable scalable@3x | ||
# Change index.theme | ||
cp ../bigicons-papient-dark/index.theme . | ||
sed -i 's|breeze-dark|breeze|g;s|bigicons-papient-dark|bigicons-papient-light|g;s|Papirus-Dark|Papirus-Light|g' index.theme | ||
# Change color of all icons | ||
find 16 -type f -name '*.svg' -exec sed -i 's|#fcfcfc|#232629|g' {} \; | ||
find 22 -type f -name '*.svg' -exec sed -i 's|#fcfcfc|#232629|g' {} \; | ||
find symbolic -type f -name '*.svg' -exec sed -i 's|#fcfcfc|#232629|g' {} \; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## arg 1: the new package version | ||
#pre_install() { | ||
# do something here | ||
#} | ||
|
||
## arg 1: the new package version | ||
#post_install() { | ||
# do something here | ||
#} | ||
|
||
## arg 2: the old package version | ||
#pre_upgrade() { | ||
# do something here | ||
#} | ||
|
||
## arg 2: the old package version | ||
#post_upgrade() { | ||
#post_install | ||
#} | ||
|
||
## arg 1: the old package version | ||
#pre_remove() { | ||
# do something here | ||
#} | ||
|
||
## arg 1: the old package version | ||
#post_remove() { | ||
# do something here | ||
#} | ||
|
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/CVnamespace.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
system-run.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dialog-ok-apply.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/Info-amarok.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
run-build.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/PrePostCondition.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/SuggestionTM.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
database-index.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/accept_signal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/accept_time_event.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
appointment-new.svg |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/action-albumfolder-importdir2.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
folder-new.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/action-rss_tag.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tag.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/action-unavailable-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/action-unavailable.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/activities.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/activity-fork.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fork.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
im-user.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/add-files-to-archive.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
archive-insert.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/add-folder-to-archive.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
folder-new.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/add-placemark.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
flag-red.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/add-subtitle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
list-add.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/address-book-new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/addressbook-details.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
address-book-new.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/adjustcol.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/adjustrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/adress-book-new.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
address-book-new.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/adw-expander-arrow-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions
8
usr/share/icons/bigicons-papient-dark/16/actions/adw-external-link-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions
8
usr/share/icons/bigicons-papient-dark/16/actions/adw-mail-send-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
usr/share/icons/bigicons-papient-dark/16/actions/aggregation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/akonadi-phone-home.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
go-home.svg |
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/alarm-centered-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/alarm-symbolic.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
alarm-centered-symbolic.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/albumfolder-importdir.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
folder-new.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/albumfolder-importimages.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
document-import.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/albumfolder-new.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
folder-new.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/albumfolder-properties.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
configure.svg |
1 change: 1 addition & 0 deletions
1
usr/share/icons/bigicons-papient-dark/16/actions/albumfolder-user-trash.svg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
edit-delete.svg |
8 changes: 8 additions & 0 deletions
8
...e/icons/bigicons-papient-dark/16/actions/align-horizontal-baseline-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/align-horizontal-baseline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/align-horizontal-bottom-out.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
...are/icons/bigicons-papient-dark/16/actions/align-horizontal-center-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/align-horizontal-center.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
usr/share/icons/bigicons-papient-dark/16/actions/align-horizontal-left-out.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
...share/icons/bigicons-papient-dark/16/actions/align-horizontal-left-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.