Giter VIP home page Giter VIP logo

cachyos-pkgbuilds's Introduction

CachyOS logo

CachyOS

CachyOS PKGBUILDS

CachyOS PKGBUILDS is a collection of PKGBUILD scripts for building and installing packages on any Arch Linux-based operating system.

Prerequisites

In order to use these PKGBUILD scripts, you will need to have the following tools and libraries installed on your system:

Usage

To build and install a package using one of the PKGBUILD scripts in this repository, follow these steps:

  1. Clone this repository: git clone https://github.com/CachyOS/cachyos-pkgbuilds.git
  2. Navigate to the directory of the PKGBUILD script you want to use: cd cachyos-pkgbuilds/<package>
  3. Build the package: makepkg -si
  4. Install the package: sudo pacman -U <packagename>.pkg.tar.zst

Contributions

If you would like to contribute to CachyOS PKGBUILDS, please fork this repository and submit a pull request with your changes. Please be sure to follow the ArchLinux Packaging Guidelines when creating or modifying PKGBUILD scripts.

cachyos-pkgbuilds's People

Contributors

1naim avatar aarrayy avatar blueswordm avatar csutcliff avatar github-actions[bot] avatar h0x32 avatar likdev-256 avatar loathingkernel avatar lseman avatar nextwork123 avatar nycko123 avatar pogogo007 avatar ptr1337 avatar sirlucjan avatar soongvilda avatar soulharsh007 avatar thewyn avatar username404-59 avatar ventureoo avatar vnepogodin avatar xeome avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

cachyos-pkgbuilds's Issues

julia: version is different

Version is different for julia.

CachyOS: 1.10.0-2
Upstream: 1.10

Please update the package.

Bip bop, I'm a bot.

sqlite: version is different

Version is different for sqlite.

CachyOS: 3.44.2-3
Upstream: 3.45.0

Please update the package.

Bip bop, I'm a bot.

ripgrep: version is different

Version is different for ripgrep.

CachyOS: 14.0.3-2
Upstream: 14.1.0

Please update the package.

Bip bop, I'm a bot.

Fixing Themes + PKGBUILDs for stable release

@rkstrdee

We need to fix our themings. The new theme does not install correctly, also would be nice, if it includes console themes/wallpapers.
You can also include your own themes thats no problem ๐Ÿ‘

I believe that xorg-xwayland is optional for hyprland

I installed hyprland from the CachyOS repos without xorg-xwayland (on KDE live) this way: sudo pacman -Syy hyprland --asume-installed xorg-xwayland and it started without problems, so I believe that xorg-xwayland should be an optional dependency.

dkms: version is different

Version is different for dkms.

CachyOS: 3.0.11-2
Upstream: 3.0.12

Please update the package.

Bip bop, I'm a bot.

python: version is different

Version is different for python.

CachyOS: 3.11.7-2
Upstream: 3.12

Please update the package.

Bip bop, I'm a bot.

dwl-git: version is different

Version is different for dwl-git.

CachyOS: 0.2.1.r34.2d9740c-1
AUR: 0.3.1.r27.d969289-1

Please update the package.

Bip bop, I'm a bot.

kodi: version is different

Version is different for kodi.

CachyOS: 20.3-7
Upstream: 20.4

Please update the package.

Bip bop, I'm a bot.

xz: version is different

Version is different for xz.

CachyOS: 5.4.6-2
Upstream: 5.5.2

Please update the package.

Bip bop, I'm a bot.

esdm-git: version is different

Version is different for esdm-git.

CachyOS: 0.6.0.r188.gbfb31be-1
AUR: 1.0.1.r4.g346953a-1

Please update the package.

Bip bop, I'm a bot.

nice code

not skidded not wheelchair good code quality

uksmd-git: version is different

Version is different for uksmd-git.

CachyOS: 1.2.2.r0.g553dc79-1
AUR: 6.4.1.r0.gb698d76-3

Please update the package.

Bip bop, I'm a bot.

julia: version is different

Version is different for julia.

CachyOS: 1.10.0-1
ArchLinux: 2:1.10.0-1

Please update the package.

Bip bop, I'm a bot.

kodi: version is different

Version is different for kodi.

CachyOS: 20.2-6
Upstream: 20.3

Please update the package.

Bip bop, I'm a bot.

python: version is different

Version is different for python.

CachyOS: 3.11.7-2
Upstream: 3.12.1

Please update the package.

Bip bop, I'm a bot.

xz: version is different

Version is different for xz.

CachyOS: 5.4.6-2
Upstream: 5.4.6

Please update the package.

Bip bop, I'm a bot.

Changing bot behavior

Proposing to change the bot behavior to:

  • First try upstream version, scraping urls and sources of PKGBUILD.
    -- Given a set of rules and regex, in the end it will accept the found version by means of an weighted distance between the current version and the incumbent one, as:
def calculate_weighted_distance(v1, v2, weights):
    return sum(w * abs(a - b) for a, b, w in zip(v1, v2, weights))
def is_version_format_similar_weighted(found_version, current_version, threshold=10):
    tokenize_regex = r"(\d+)"
    found_tokens = [int(n) for n in re.findall(tokenize_regex, found_version)]
    current_tokens = [int(n) for n in re.findall(tokenize_regex, current_version)]

    # Pad versions with zeros to make them the same length
    max_length = max(len(found_tokens), len(current_tokens))
    found_tokens = pad_version(found_tokens, max_length)
    current_tokens = pad_version(current_tokens, max_length)

    # Define weights for major, minor, and patch version components
    weights = [5, 3, 1]  # we need to adjust !!!!

    # Ensure we have enough weights for all components
    weights += [1] * (max_length - len(weights))

    # Calculate weighted distance
    distance = calculate_weighted_distance(found_tokens, current_tokens, weights)
    #print(found_tokens, current_tokens, distance)

    return distance <= threshold
  • If no version is found by the web scrapper, it will fallback to the Arch Repo.
  • If no version is found in the Arch Repo, it will fallback to AUR.

There is a sample run:
https://paste.cachyos.org/p/20ee607

If the bot find a change in version it can:
a) Open an issue;
or
b) Fill a PR.

[cachyos-gaming-meta] gamescope-git support?

Is it possible to use gamescope-git package without having to remove cachyos-gaming-meta?

โฏ yay -S gamescope-git
Sync Explicit (1): gamescope-git-3.12.0.beta3.r29.gb778e53-1
resolving dependencies...
looking for conflicting packages...
:: gamescope-git and gamescope are in conflict. Remove gamescope? [y/N] N


โฏ sudo pacman -R gamescope
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: removing gamescope breaks dependency 'gamescope' required by cachyos-gaming-meta

glibc: version is different

Version is different for glibc.

CachyOS: 2.38-13
Upstream: 2.39

Please update the package.

Bip bop, I'm a bot.

glibc: version is different

Version is different for glibc.

CachyOS: 2.38-11
Upstream: 2.40

Please update the package.

Bip bop, I'm a bot.

Put action in operation

Putting the action in operation in the main repo, going to see it if is working correctly during the next few days, so it can work alone.

TODO:

  • Please enable the action in the brach updater
  • Please add an API key in the workspace for it

Currently watching just a few packages, going to add more as soon as we decide which packages stay and which go.

wcm: version is different

Version is different for wcm.

CachyOS: 0.8.0-5
Upstream: 0.11

Please update the package.

Bip bop, I'm a bot.

clang: version is different

Version is different for clang.

CachyOS: 15.0.7-11
ArchLinux: 16.0.6-1

Please update the package.

Bip bop, I'm a bot.

O3 or Ofast for ffmpeg?

export CFLAGS+=" -march=x86-64-v3 -mtune=skylake -O3 -Ofast -fno-semantic-interposition -mprefer-vector-width=256"

Upon reading this, I've noticed that you're specifying both optimization flags, I understand that GCC will process the latter, but is Ofast intended for use with ffmpeg?

bash-pgo: debugging

After further debugging the problems given by the custom bash-pgo PKGBUILD on my system. It look like it was derived from the aggressive flags generated with graphite.

After rebuilding bash without graphite (but still with LTO), the problems ceased.
I'm still following the issue (since I compile packages everyday, it won't be long if the problems is not solved to happen again).

If we confirm that the issue was due to aggressive graphite flags, I guess we can go back to delivering bash-pgo in the repositories.

pak-git: version is different

Version is different for pak-git.

CachyOS: 5.5.3.r10.g390528f-1
AUR: r27.51071dc-2

Please update the package.

Bip bop, I'm a bot.

cachyos-hooks missing libnotify dependency

New installation (yesterday) from ISO file, although in the installation I indicated to download the packages from the Internet, so they were their most recent versions.

Hyprland desktop.

When updating today it showed me an error in one of your hooks:

....
(5/8) Check if user should be informed about rebooting after certain system package upgrades.
error: failed to execute the cachyos-reboot-required.hook hook: could not satisfy dependencies

The dependency is libnotify which was not installed on my system.

llvm-git: version is different

Version is different for llvm-git.

CachyOS: 16.0.0_r446173.1456b6868680-1
AUR: 18.0.0_r479038.d16d149e3d96-1

Please update the package.

Bip bop, I'm a bot.

glibc: version is different

Version is different for glibc.

CachyOS: 2.38-11
Upstream: 2.40

Please update the package.

Bip bop, I'm a bot.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.