Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDuartePT authored Oct 6, 2023
2 parents d2b37c6 + d01f137 commit 35c5fa0
Show file tree
Hide file tree
Showing 37 changed files with 206 additions and 140 deletions.
8 changes: 6 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ assignees: ''

---

**Problem Descripition**
???
**Problem Description**
<Please describe your problem here>
Has the bug occurred following steps described in the README?
What steps did you take?
What commands did you enter?
What was the (full) error you received and what command or action did lead to it?

**Model and Debug Info**

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
apt-ftparchive release . > Release
gpg --default-key "${{ secrets.GPG_ID }}" -abs -o - Release > Release.gpg
gpg --default-key "${{ secrets.GPG_ID }}" --clearsign -o - Release > InRelease
echo "deb [signed-by=/usr/share/keyrings/lll-ppa.gpg] https:/johnfanv2.github.io/LenovoLegionLinux/package_repo/ubuntu ./" > lll-ppa.list
echo "deb [signed-by=/usr/share/keyrings/lll-ppa.gpg] https://johnfanv2.github.io/LenovoLegionLinux/package_repo/ubuntu ./" > lll-ppa.list
shell: bash

- name: Commit changes
Expand Down
2 changes: 1 addition & 1 deletion deploy/build_packages/build_rpm_LLL.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ mkdir -p rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS}
cp -r ${REPODIR}/kernel_module ./lenovolegionlinux-kmod-${TAG}-x86_64

#Dkms change version
sudo sed -i "s/_VERSION/${TAG}/g" ./lenovolegionlinux-kmod-${TAG}-x86_64/dkms.conf
sudo sed -i "s/DKMS_VERSION/${TAG}/g" ./lenovolegionlinux-kmod-${TAG}-x86_64/dkms.conf
mv lenovolegionlinux-kmod-${TAG}-x86_64/lenovolegionlinux.spec rpmbuild/SPECS
#Change version according to tag
sed -i "s/_VERSION/${TAG}/g" rpmbuild/SPECS/lenovolegionlinux.spec
Expand Down
4 changes: 2 additions & 2 deletions deploy/dependencies/install_dependencies_fedora.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
set -ex
sudo dnf install -y kernel-headers kernel-devel dmidecode lm_sensors PyQt5 python3-yaml python3-pip python3-argcomplete polkit
sudo dnf install -y kernel-headers kernel-devel dmidecode lm_sensors PyQt5 python3-yaml python3-pip python3-argcomplete python3-wheel polkit
sudo dnf groupinstall -y "Development Tools"
# sudo dnf group install -y "C Development Tools and Libraries"
sudo dnf install -y dkms openssl mokutil
sudo dnf install -y dkms openssl mokutil
10 changes: 5 additions & 5 deletions deploy/dependencies/install_dependencies_suse.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/bin/bash
set -ex
# refresh, otherwise sometimes we get "digest failure" because mirror/version changed from last time
sudo zypper refresh
sudo zypper refresh
set +e
sudo zypper --non-interactive install make gcc kernel-devel kernel-default-devel git libopenssl-devel sensors dmidecode python3-qt5 python3-pip python3-PyYAML pkexec
sudo zypper --non-interactive install make gcc kernel-devel kernel-default-devel git libopenssl-devel sensors dmidecode python3-qt5 python3-pip python3-wheel python3-PyYAML pkexec
ecode=$?
if [ "$ecode" != 0 -a "$ecode" != 107 -a "$ecode" != 130 ]; then
exit 1
exit 1
fi
set -e
# allow post-script install to fail (107) because it will try to update initramfs which is not possible inside container
sudo zypper --non-interactive install python3-argcomplete
sudo zypper --non-interactive install dkms openssl mokutil
sudo zypper --non-interactive install python3-argcomplete
sudo zypper --non-interactive install dkms openssl mokutil
4 changes: 2 additions & 2 deletions deploy/dependencies/install_dependencies_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -ex
sudo apt-get update
sudo apt-get install -y make gcc linux-headers-$(uname -r) build-essential git lm-sensors wget python3-pyqt5 python3-yaml python3-venv python3-pip python3-argcomplete policykit-1
sudo apt-get install -y dkms openssl mokutil
sudo apt-get install -y make gcc linux-headers-$(uname -r) build-essential git lm-sensors wget python3-pyqt5 python3-yaml python3-venv python3-pip python3-wheel python3-argcomplete policykit-1
sudo apt-get install -y dkms openssl mokutil
25 changes: 20 additions & 5 deletions deploy/python_install_installer_pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@
set -ex
DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
REPODIR="${DIR}/.."

#Install python darkdetect
cp --recursive ${REPODIR}/deploy/build_packages/{setup.cfg,setup.py} ${REPODIR}/subprojects/darkdetect
cd ${REPODIR}/subprojects/darkdetect

TAG=$(git describe --tags --abbrev=0 | sed 's/[^0-9.]*//g')
sed -i "s/version = _VERSION/version = ${TAG}/g" setup.cfg
python3 -m build --wheel --no-isolation

if [ "$EUID" -ne 0 ]; then
echo "Please run as root to install"
exit
else
python3 -m installer --destdir="/" dist/*.whl
fi

#Install LenovoLegionLinux python package
cd ${REPODIR}
TAG=$(git describe --tags --abbrev=0 | sed 's/[^0-9.]*//g')

cd ${REPODIR}/python/legion_linux
Expand All @@ -16,11 +34,8 @@ if [ "$EUID" -ne 0 ]; then
exit
else
python3 -m installer --destdir="/" dist/*.whl
#Create config folder
cp -r /usr/share/legion_linux /etc/legion_linux
#Create config folder (not overwrite old folder)
#cp -r /usr/share/legion_linux /etc/legion_linux
fi
# sudo cp legion_linux/legion_gui.desktop /usr/share/applications/
# sudo cp legion_linux/legion_gui_user.desktop /usr/share/applications/
# sudo cp legion_linux/legion_cli.policy /usr/share/polkit-1/actions/

echo "Done"
33 changes: 23 additions & 10 deletions deploy/python_install_pip_pkg.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
#!/bin/bash
#!/bin/bash
set -ex
DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
REPODIR="${DIR}/.."
TAG=$(git describe --tags --abbrev=0 | sed 's/[^0-9.]*//g')

cd ${REPODIR}/python/legion_linux
#Install python darkdetect
cp --recursive ${REPODIR}/deploy/build_packages/{setup.cfg,setup.py} ${REPODIR}/subprojects/darkdetect
cd ${REPODIR}/subprojects/darkdetect

TAG=$(git describe --tags --abbrev=0 | sed 's/[^0-9.]*//g')
sed -i "s/version = _VERSION/version = ${TAG}/g" setup.cfg

# Build and install python package
python3 -m pip install --upgrade build installer
python3 -m build

Expand All @@ -16,14 +19,24 @@ if [ "$EUID" -ne 0 ]; then
exit
else
python3 -m installer --destdir="/" dist/*.whl
#Create config folder
fi

#Install LenovoLegionLinux python package
cd ${REPODIR}
TAG=$(git describe --tags --abbrev=0 | sed 's/[^0-9.]*//g')

cd ${REPODIR}/python/legion_linux
sed -i "s/version = _VERSION/version = ${TAG}/g" setup.cfg

python3 -m build --wheel --no-isolation

if [ "$EUID" -ne 0 ]; then
echo "Please run as root to install"
exit
else
python3 -m installer --destdir="/" dist/*.whl
#Create config folder (not overwrite old folder)
#cp -r /usr/share/legion_linux /etc/legion_linux
cp -r /usr/local/share/legion_linux /etc/legion_linux
fi
# Desktop files
# sudo cp legion_linux/legion_gui.desktop /usr/share/applications/
# sudo cp legion_linux/legion_gui_user.desktop /usr/share/applications/
# sudo mkdir -p /usr/share/icons/
# sudo cp legion_linux/legion_logo.png /usr/share/icons/legion_logo.png

echo "Done"
8 changes: 4 additions & 4 deletions package_repo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ A PPA repository for my packages:
Debian/Ubuntu:
```bash
sudo apt-get install curl gpg
sudo curl -s https:/johnfanv2.github.io/LenovoLegionLinux/package_repo/ubuntu/KEY.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/lll-ppa.gpg > /dev/null
sudo curl -SsL -o /etc/apt/sources.list.d/lll-ppa.list https:/johnfanv2.github.io/LenovoLegionLinux/package_repo/ubuntu/lll-ppa.list
sudo curl -s https://johnfanv2.github.io/LenovoLegionLinux/package_repo/ubuntu/KEY.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/lll-ppa.gpg > /dev/null
sudo curl -SsL -o /etc/apt/sources.list.d/lll-ppa.list https://johnfanv2.github.io/LenovoLegionLinux/package_repo/ubuntu/lll-ppa.list
sudo apt update
sudo apt install lenovolegionlinux-dkms python3-darkdetect python3-legion-linux
```

Fedora/rpm base distros:

```bash
sudo curl -s https:/johnfanv2.github.io/LenovoLegionLinux/package_repo/fedora/LLL.repo | sudo tee /etc/yum.repos.d/LLL.repo > /dev/null
sudo curl -s https://johnfanv2.github.io/LenovoLegionLinux/package_repo/fedora/LLL.repo | sudo tee /etc/yum.repos.d/LLL.repo > /dev/null
sudo dnf config-manager --add-repo /etc/yum.repos.d/LLL.repo
sudo dnf config-manager --set-enabled LLL-pkg-repo
sudo dnf install dkms-lenovolegionlinux python3-darkdetect python3-lenovolegionlinux
```
```
4 changes: 2 additions & 2 deletions package_repo/fedora/LLL.repo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[LLL-pkg-repo]
name=LLL-pkg-repo
baseurl=baseurl=https:/johnfanv2.github.io/LenovoLegionLinux/package_repo/fedora/packages
baseurl=baseurl=https://johnfanv2.github.io/LenovoLegionLinux/package_repo/fedora/packages
enabled=1
gpgcheck=1
gpgkey=https:/johnfanv2.github.io/LenovoLegionLinux/package_repo/fedora/pgp-key.public
gpgkey=https://johnfanv2.github.io/LenovoLegionLinux/package_repo/fedora/pgp-key.public
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
70 changes: 35 additions & 35 deletions package_repo/fedora/packages/repodata/repomd.xml
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<repomd xmlns="http://linux.duke.edu/metadata/repo" xmlns:rpm="http://linux.duke.edu/metadata/rpm">
<revision>1693690576</revision>
<revision>1696586318</revision>
<data type="primary">
<checksum type="sha256">1db326605fc4ebe21f0fcdba060223a8938a648ad8ef0c68e1daa66581c26f9b</checksum>
<open-checksum type="sha256">686883dd61e9826da3277a882d55b5695216586be643b01c218eb5c96165ee18</open-checksum>
<location href="repodata/1db326605fc4ebe21f0fcdba060223a8938a648ad8ef0c68e1daa66581c26f9b-primary.xml.gz"/>
<timestamp>1693690575</timestamp>
<size>2760</size>
<open-size>10690</open-size>
<checksum type="sha256">1bde5e9a11fbda79a312a65f742c6baaaea66e709c54d2263f0e4860a70963e8</checksum>
<open-checksum type="sha256">492f9d8971738ac82b20ee7f6801ed6742316dbd7fc651880d0770f25d4804e3</open-checksum>
<location href="repodata/1bde5e9a11fbda79a312a65f742c6baaaea66e709c54d2263f0e4860a70963e8-primary.xml.gz"/>
<timestamp>1696586318</timestamp>
<size>2969</size>
<open-size>14017</open-size>
</data>
<data type="filelists">
<checksum type="sha256">bf5df835a082d710c2c5f4fe035f9f437fe325414efd5e97f9e6bef4a10b2183</checksum>
<open-checksum type="sha256">197ee60aac6064aad067b1069406c81948412faecab4bd5f234cadd6a0025a5b</open-checksum>
<location href="repodata/bf5df835a082d710c2c5f4fe035f9f437fe325414efd5e97f9e6bef4a10b2183-filelists.xml.gz"/>
<timestamp>1693690575</timestamp>
<size>1181</size>
<open-size>10333</open-size>
<checksum type="sha256">8a8e60819d800df3ecc5829a10caae7bf949ef79ea7fadeb70a0f4203f8f80ca</checksum>
<open-checksum type="sha256">a82ddd46e8fbce948e71c4a0bc061a97f46217748aad516e5d408e78ac3c33e4</open-checksum>
<location href="repodata/8a8e60819d800df3ecc5829a10caae7bf949ef79ea7fadeb70a0f4203f8f80ca-filelists.xml.gz"/>
<timestamp>1696586318</timestamp>
<size>1363</size>
<open-size>14402</open-size>
</data>
<data type="other">
<checksum type="sha256">bd95d4d7795ce5755a937850578ff739983634d12a0d36047b04ee9ac04bbcfa</checksum>
<open-checksum type="sha256">ce571caf6738a730135c4e78b9bf766a589f3bdd4d0555f2c84ce276305bbf83</open-checksum>
<location href="repodata/bd95d4d7795ce5755a937850578ff739983634d12a0d36047b04ee9ac04bbcfa-other.xml.gz"/>
<timestamp>1693690575</timestamp>
<size>463</size>
<open-size>1028</open-size>
<checksum type="sha256">2c96f2fc1a1d06d654dab4155ea5ca590f60e9155c81085685b8f1265392bf6a</checksum>
<open-checksum type="sha256">c2e4aa028f9e4aa7af9a464423cd9823883ac10af38f7e20c74322810b65ce71</open-checksum>
<location href="repodata/2c96f2fc1a1d06d654dab4155ea5ca590f60e9155c81085685b8f1265392bf6a-other.xml.gz"/>
<timestamp>1696586318</timestamp>
<size>548</size>
<open-size>1393</open-size>
</data>
<data type="primary_db">
<checksum type="sha256">353b3fd6f60aa3200229da91b5c372400e975f17d5f9ce720bb31286e97714ad</checksum>
<open-checksum type="sha256">4924d496e8871bf602984660e5d3bf51bc010466791dca5f3419cda3e5973e80</open-checksum>
<location href="repodata/353b3fd6f60aa3200229da91b5c372400e975f17d5f9ce720bb31286e97714ad-primary.sqlite.bz2"/>
<timestamp>1693690576</timestamp>
<size>5082</size>
<checksum type="sha256">a0689b87349fe436ef83cc0f5d9029690ef2c01a017c0a3bb54cc4e133773373</checksum>
<open-checksum type="sha256">f0b47bddc38b183d15b5db0c8c4a70597acc1beb46b2ebf74a6607f2bc7bab9d</open-checksum>
<location href="repodata/a0689b87349fe436ef83cc0f5d9029690ef2c01a017c0a3bb54cc4e133773373-primary.sqlite.bz2"/>
<timestamp>1696586318</timestamp>
<size>5725</size>
<open-size>114688</open-size>
<database_version>10</database_version>
</data>
<data type="filelists_db">
<checksum type="sha256">c053093d12ece3396492c9ca44ce0b86934a8e2b46c16ad47cbcc69baa6e39f9</checksum>
<open-checksum type="sha256">b81fa41b38839f8bf6b60d8e6cbbcd06778cba6f34f2d5381e89387a3c5bcffb</open-checksum>
<location href="repodata/c053093d12ece3396492c9ca44ce0b86934a8e2b46c16ad47cbcc69baa6e39f9-filelists.sqlite.bz2"/>
<timestamp>1693690575</timestamp>
<size>2450</size>
<open-size>28672</open-size>
<checksum type="sha256">0e5f0762b7df333556a65ac0feba42f4bda7af9d87f935ab27ca05894f0edea5</checksum>
<open-checksum type="sha256">0160073f28f2eda278b0c116ddc2c1249a15b64950284228cb5d0e223e3263a5</open-checksum>
<location href="repodata/0e5f0762b7df333556a65ac0feba42f4bda7af9d87f935ab27ca05894f0edea5-filelists.sqlite.bz2"/>
<timestamp>1696586318</timestamp>
<size>2874</size>
<open-size>36864</open-size>
<database_version>10</database_version>
</data>
<data type="other_db">
<checksum type="sha256">14af4597267960877c80d02f7e8b4f13098429beba7be81e0cd479805c8072c5</checksum>
<open-checksum type="sha256">e485b82a64e171043c90ba84def074bcbadaec95c77f115b45a58a62298ee4c7</open-checksum>
<location href="repodata/14af4597267960877c80d02f7e8b4f13098429beba7be81e0cd479805c8072c5-other.sqlite.bz2"/>
<timestamp>1693690575</timestamp>
<size>965</size>
<checksum type="sha256">1d8e0c80bb3d42497de125553131620df8789e3784d80831d23709bfa91db900</checksum>
<open-checksum type="sha256">28a7c0a42f98a9713caa3eef6c38d644f1cd72684e48ad3fd61c766cde2a9038</open-checksum>
<location href="repodata/1d8e0c80bb3d42497de125553131620df8789e3784d80831d23709bfa91db900-other.sqlite.bz2"/>
<timestamp>1696586318</timestamp>
<size>1082</size>
<open-size>24576</open-size>
<database_version>10</database_version>
</data>
Expand Down
26 changes: 13 additions & 13 deletions package_repo/fedora/packages/repodata/repomd.xml.asc
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
-----BEGIN PGP SIGNATURE-----

iQIzBAABCAAdFiEEVMtdhasRVShrpPBmBtIAP2//ddMFAmTzqtAACgkQBtIAP2//
ddMxuA/9G3+E167/0dkbQIK1o8miElFjXln65VyJ1eVrPvj1+45nUa5IbTVfhK9y
EbqUdwuqTWD28S3bUyKuM22IQCz0MAjDnCXMUIQ+VMJJiv7Jymm+JaHzKuIL3vXY
cGMiMxtzl0vM01fcFIQKT0tjFx+z9YAjO7sYg+nU+Vrb8F1jnqCuSSQ3IS6EmiH0
vyUZnh2DOhyp3tgl4SKYnCxVkcfGw4EAh/16KFACxUcjZCjDHVUq4/jddHUu+F7G
RtZyWmZT9DB2lZcy+gwPl5UQPPJgsSF4bdlDg4F3uIZn0RwUiGOXTwZeoN4N6NBC
Uxw8kLSMz+o7pb0BRNvt3DFZ8eU4+G+LPVjhBfHd+r74f/uvbrwrrcziRuXZ+TmH
eC8o08bJZr+cqH8+ynGKGaU5fmovf5ODA1qJNIsFyZl4p+YSP3Dmp7RRZPngwIkZ
x5X0yBqYyVlVDV9Zmgd8Pvz5CdcwYeBfmG631A7aAefAejmlEX1EU/mP3zJAW+CD
bU3n5B4mCwyQg2Zegy6nqfjio+QjdDu9P6fDrKRS47E9OAQISq3cxiRkHsjV2kq8
ux4SA+cxx84Iz0GLwCHMCCw7rlDxRGQQpukycDWalSEFn4Zs7x5zAKGAEpak2bbG
mR9xnjG5P5CIX2Y81WN5HVrUL7H5GwKtMJH+8hpJsFeT+K+l+7M=
=F5TN
iQIzBAABCAAdFiEEVMtdhasRVShrpPBmBtIAP2//ddMFAmUf2k4ACgkQBtIAP2//
ddNogw//RKdEitOhgizKoM+vL9hO/7Pw5K0hXkdMULv2rBTFsIT/XNzjHmYLuwo3
e5hRBuETiYPhmWox/4iiPyHXSQDWqHfUTuUd+8hLKwSQgpM4Sa57XDvjS+kjC29F
ZAmBQdQB3AtgUuXNvX1hmQ/5dYqP7nYhDuaDmCxqKO5liPEr+TTE/u04BP8NEaGS
jQTydNN7vRbyxcD0+CyKMJa4866Yhz6WP4611xL/NKH7uZWkU7xG4qpdP6a4TRYZ
OgcEKwFj0ZtYbSsuZoJFrWhoBkFKlRkiHS/j2MtrZqaB6yIFKAue1oSKUItjIARo
fkKGLkefR7AEKFxa4iDYXgsR3KnFKrg0UArtRyw3/p3/y3cZhFiEop40XCQ822dG
7uF/SARr4JJEIw0jJxJ1Z8+jOPJptdNkyXIWIWTD+g1meEesc2H2cZErUVVFwAsj
w5WDyt+StLj3KicXjsmFvQcpdQ3pUAkzb24gx3zSNxZYuwYDnEPBLJhI0DBYu61q
CtYUJWIySg2HnTJO9EBTDEW1ejy3/dFMPi/HGfcueg1kT8g2FCluHzjmlKCG1e0Z
CZLcSk6oc+d+Tr8lfveJ3Cou89fGUKS79brpxJTfrh0sReJrvanvQ3MhMEwfgYMx
/yz7M/LgWxzAUIHmlbvpEX4s3mcxJTnwjQC5fNNMORJ4I+etQJU=
=VE+B
-----END PGP SIGNATURE-----
52 changes: 26 additions & 26 deletions package_repo/ubuntu/InRelease
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Date: Sat, 02 Sep 2023 21:34:43 +0000
Date: Fri, 06 Oct 2023 09:59:27 +0000
MD5Sum:
081aae065f13e1dd4ed6ed474a3d417c 3809 Packages
07c06f7348aecb74746f021d7fffe6a3 1600 Packages.gz
f2b98beae3ba22590277599c3c704f86 38 Release
15c66eb98b7684163367d730de342b65 4984 Packages
f93e49dc53e86a24ecbcb95d9ed9df20 1818 Packages.gz
d526da5825c5451a1f8537e809266dba 38 Release
SHA1:
204eca0ee2abd20cac29edd93ceae97b9b93a1b0 3809 Packages
95947ff3c7504a1bbce62746d0aabce7260acd16 1600 Packages.gz
35235858757b642b88e3f33d736c55944609328f 38 Release
c43d50ccc073213ff0b6881ba869f390e91cbd6f 4984 Packages
acd317e975b343029d0fbfd738953afa9a99bcc0 1818 Packages.gz
52d290b7af86562f2db41bbacf80f2840327a62c 38 Release
SHA256:
f32e47ffae82706cef4d6569e2b7f06cf21ed0595bcab3f647728c1972ce84ab 3809 Packages
ea823c1c3c65f9293d512b9c9c593acb9699561a6f44c4f3fc7774043d37c64d 1600 Packages.gz
8651c6ddf4a386ccc702618355602572a19475f9a4d94fbcab0ac99f2095d701 38 Release
b72389fc8fa34d13f21162ec653d00181f5fbd3b038506e558c99fbf4aa9278d 4984 Packages
18319c275be114e27ce11a0106c1b01981f7c1ab544079a7df03a23992601bc4 1818 Packages.gz
fe6a2df05da8ee4a7f78ac3620f297028863b0a41d950355152d1cb6761169af 38 Release
SHA512:
3e4ecc22e7705217d143497753dfa71db6d1f99e385d7f1f7f99f33aff42421b54fc91abcd3dc47911c6819213a34a7f44a6214843fa7a71237aaa55edccb26a 3809 Packages
bc0cc4ac955adeaaa91cd496b7ad529a55f3148a51f6decac396159d09ec6b9583cfa4603c829d85d9808bcd70f0c666174cf84aab784d1f28358db74b62cc5b 1600 Packages.gz
470f98dda2775dcf569fa3b5908f20b663783da7980c4a16b5cc222c74b20ae360099fac104b0f549fdab68547a4d87fffc926e5222239e18890fcb8114dea59 38 Release
0a6f97c29045805bdcc0d0ada4de7625e7410825f8c48617e1450e6bdd4fee7aafe73faa29f7b82e7cb775762d39b496fe2873a2fb16df7cc11210e53a6fcabd 4984 Packages
11d1f9c79555111266e07ecb71633b0d6a2e6bb059f43e3784f988a7856d2183b325091bff8d8ed304bda905a98cc43a88b4d1df958e2b94427f77c037f16941 1818 Packages.gz
a1cfb2cbaae4ef13b16ff8f68d04df3fc2cc9f04dfc376f95bd9fc01f093c92f71540e035aeaf771fce75dc4c386d365c5cede7269b045cbf7ba4a36340d918b 38 Release
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEVMtdhasRVShrpPBmBtIAP2//ddMFAmTzqnMACgkQBtIAP2//
ddOsWhAAqlLXx80Du0AIWq0b8NwwZHo/zHKqU5UJy4tZsZlTrYjits6RpxXgFxrb
U+zvDDs5ZYsrumE14w/On+VpzprSvuIhfCvGMYJTktVPVNqOiKewNtYGWhCK6wTG
gc77O3gc53sW9uwVASP4BB2IIcxsJZzClU04y6wKAks3TglkFNqg3QKGaSDco+DP
IOO0xjGbsM8vfjOqky9JBpAdD7s+jvMbZdmYpTa89g28RS76ldBcfQM7x5ekXGs4
3rxorqPohrTiLzK0sN33yr9JoWJU3u/muDMMcnpaWcqKbtjGhaRGQR8EklpZNHh1
xcz0uQcmM9F8cqmzzgf4EHSa8DFImBiSL969n4hU0m9chfYJj6fkhA7rJSYtLD29
cQtrzfOAYncNAfOuJaCUJjvs3SIvCu5pwnbZSaOfo5au2pMVE9H4j9N/S+NQXtWx
ZTWPxqRofCJaSMfKOLQxr2worRTjfThsOAjbXvk2aitH/dBO7FFfy27QjIdH1lLa
0g6dNsiAaWT9DBbKEna7EPTwaz3YkcSnsmUt9ow8MJzWFzgfpUsSrsJG04nP4MSu
05bK2LUCnRNsbRFc3O0zbl/npuCM+agV2Qx4iar+xmEcdWzXFkUxWv/36bB3EAnw
bgytRj+nHpt1vu6nUshp01Q+YFEh2c7fwTtOgSusElQnB9y91xQ=
=7TMD
iQIzBAEBCgAdFiEEVMtdhasRVShrpPBmBtIAP2//ddMFAmUf2n8ACgkQBtIAP2//
ddOTfQ/9GRZ5Y2tohkkHlaS9F9Fok2qjnPicwyOxpNaGBJ7IMiSuFvKxivLKHpqs
VRDaaC95GviLWn2YoWMfLhzsC49yjr6C8fN1S/UlhRoOES1fOCQyX7MWBmfJvTev
VA96d4V6GPQR5+Nns3hliOgvYOiXVWzYHZ1rU+ZHTXPw307zXp/aLa9HIItJG9/A
KA33ZPo+97TwYWjT3HmpYGGVgWszNZb/P65KaTYn+pWNf3HvIA28GlpYPmjOdBNm
elFO2gZcrzezgwmaisfQTzVyF7/qVJW7d49G1gI7/UFe8hA7kDdJ62Wcmia5Sjm7
RRiCrDweHQHNSzxQm/uvPIlMefRVitYWM/VWNZBgjpkYfx4IH/IRw17ufrsO0hdH
gZu9/abHsTyrsPMSKIguovTBQwyYNC0GdZtpLH+a99bF/E8Az/ljTST8F6XV0UZw
pBtzYU/ZqBKZu1gf4D8EErMtjXIJe3oRwCnsZvFocO8ipf0/2+3O8bBZU0zVUZln
FtL59yMNn7XLE5GWF1njewIbMCvX8SCa02CVKt5IkjBPxawOj6nJAdpPlaJoPlbh
bDFlHnKb/QYA3Hglxp+Dw5Wm8rd7xTS3fbOnYNGxgmkQGZbxR7v+i3alcFe8KMhU
yYzmnUHRrW4xha2wHu6gNq9uDyQXgWB8WDT5udIhgT9g4uQyZkA=
=ZnHA
-----END PGP SIGNATURE-----
Loading

0 comments on commit 35c5fa0

Please sign in to comment.