- Debian Policy : https://www.debian.org/doc/debian-policy/ch-controlfields.html#version
- Upstream version:
upstream_version
- If upstream versioning is changed:
epoch
- Pre-release:
~
- Post-release:
+
- If upstream versioning is changed:
- Debian version:
debian_revision
- Upstream version:
This file contains hidden or 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
#!/bin/bash | |
find . -path "./RIOT/build" -prune -o -type d -name "include" -print | sort |
This file contains hidden or 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
require 'uuid7' | |
def update_ids(model_class) | |
ActiveRecord::Base.transaction do | |
records = if model_class.column_names.include?('seq') | |
# Sort by the 'seq' column if the model has it, as it describes the sequence of the records | |
model_class.order(:seq) | |
elsif model_class.column_names.include?('created_at') | |
# Sort by the 'created_at' column, which is automatically generated by Ruby on Rails with 't.timestamps' | |
model_class.order(:created_at) |
This file contains hidden or 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
require 'uuid7' | |
def update_ids(model_class) | |
ActiveRecord::Base.transaction do | |
records = if model_class.column_names.include?('seq') | |
# Sort by the 'seq' column if the model has it, as it describes the sequence of the records | |
model_class.order(:seq) | |
elsif model_class.column_names.include?('created_at') | |
# Sort by the 'created_at' column, which is automatically generated by Ruby on Rails with 't.timestamps' | |
model_class.order(:created_at) |
This file contains hidden or 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
#!/bin/bash | |
LIST_PATH="$1" | |
LIST="$(cat $LIST_PATH)" | |
for pkg in $LIST | |
do | |
echo "" | |
echo "------------------------------------------------------" | |
echo "$pkg" |
This file contains hidden or 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
sudo apt build-dep lazygit | |
iThe following package was automatically installed and is no longer required: | |
linux-image-6.12.17-amd64 | |
Use 'sudo apt autoremove' to remove it. | |
Installing: | |
golang-github-adrg-xdg-dev golang-github-kardianos-osext-dev | |
golang-github-atotto-clipboard-dev golang-github-kyokomi-emoji-dev | |
golang-github-cloudfoundry-jibber-jabber-dev golang-github-lucasb-eyer-go-colorful-dev | |
golang-github-creack-pty-dev golang-github-mattn-go-runewidth-dev |
This file contains hidden or 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
['scale-monitor-framebuffer', 'xwayland-native-scaling'] |
This file contains hidden or 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
From 423319693132e1b28ed8e81a72078f45cb00863d Mon Sep 17 00:00:00 2001 | |
From: Jongmin Kim <[email protected]> | |
Date: Thu, 10 Apr 2025 20:28:34 +0900 | |
Subject: [PATCH] pkg/exp32: fix ESP-IDF build conflicts | |
Signed-off-by: Jongmin Kim <[email protected]> | |
--- | |
...x-undefined-reference-to-rtc_gpio_fo.patch | 29 +++++++++++++++++++ | |
...newlib-guard-sys-uio.h-for-RIOT-only.patch | 27 +++++++++++++++++ | |
2 files changed, 56 insertions(+) |
This file contains hidden or 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
Source: lazygit | |
Section: vcs | |
Priority: optional | |
Maintainer: Debian Go Packaging Team <[email protected]> | |
Uploaders: Jongmin Kim <[email protected]> | |
Build-Depends: debhelper-compat (= 13), | |
# | |
# DIRECT - Uploaded and ACCEPTED | |
dh-golang, | |
golang-any, |
This file contains hidden or 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
# sSMTP aliases | |
# | |
# Format: local_account:outgoing_address:mailhub | |
# | |
# Example: root:[email protected]:mailhub.your.domain[:port] | |
# where [:port] is an optional port number that defaults to 25. |
NewerOlder