from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

71346

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->nano

Configuring the nano text editor


nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "goto line number".

Lets go ahead and configure it.

($:~)=> nano -w ~/.nanorc
# Use auto-indentation  
set autoindent

# Backup files to filename~
set backup

# Use cut to end of line with ^K by default
set cut

# Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

# Don't convert files from DOS/Mac format
set noconvert

# Don't follow symlinks when writing files
# set nofollow

# Don't display the help lists at the bottom of the screen
# set nohelp

# Don't wrap text at all
set nowrap

# Use smooth scrolling as the default
set smooth

# Use this spelling checker instead of the internal one. This option
# does not properly have a default value.
set speller "aspell -c"

# Allow nano to be suspended with ^Z
# set suspend

# Use this tab size instead of the default; it must be greater than 0
# set tabsize 8

# Save automatically on exit, don't prompt
# set tempfile

# Enable ~/.nano_history for saving and reading search/replace strings.
# set historylog

# Disallow file modification, why would you want this in an rc file? ;)
# set view

#Color Syntax Highlighting
syntax "c-file" "\.(c|h)$"
color red "\<[A-Z_]{2,}\>"
color green "\<(float|char|int|void|static|const|struct)\>"
color brightyellow "\<(if|while|do|else|case|switch)\>"
color brightcyan "^#( )*(define|include|ifn?def|endif|elif|else|if)"
color brightyellow "<[^= ]*>" ""(.|[^"])*""
color brightyellow start=""(\\.|[^\"])*\\( | )*$" end="^(\\.|[^\"])*""
color brightblue "//.*"
color brightblue start="/\*" end="\*/"

syntax "HTML" "\.html$"
color blue start="<" end=">"
color red "&[^; ]*;"

syntax "TeX" "\.tex$"
color green "\\.|\\[A-Za-z]*"
color magenta "[{}]"
color blue "%.*"

syntax "mutt"
color green "^>.*"

syntax "php" ".*/*.php$"
color brightwhite "\{|\}|\."
color red "('[^']*')"
color red "\"[^\"]*\""
color brightblue "(\$([[:alpha:]_]|->)*)"
color brightgreen "((\$(([[:alpha:]_0-9])+\->)+)[[:alpha:]_0-9]+\()"
color yellow " (if|else if|else|return|case|break)"
color yellow "\|\||\?|!|\||&&|=|;|\(|\)"
color red "false|true"
color brightwhite "[[:space:]]+debug|[[:space:]]+echo|\$this\->debug"
color cyan "//.*"
color cyan start="/\*" end="\*/"

syntax "groff" "\.ms$" "\.mm$" "\.me$" "\.tmac$" "^tmac." ".rof"
color cyan "^\.ds [^ ]*"
color cyan "^\.nr [^ ]*"
color brightmagenta "\\."
color brightmagenta "\\f."
color brightmagenta "\\f\(.."
color brightmagenta "\\s(\+|\-)?[0-9]"
color cyan "(\\|\\\\)n."
color cyan "(\\|\\\\)n\(.."
color cyan start="(\\|\\\\)n\[" end="]"
color brightgreen "^\. *[^ ]*"
color yellow "^\.\\\".*$"
color green "(\\|\\\\)\*."
color green "(\\|\\\\)\*\(.."
color green start="(\\|\\\\)\*\[" end="]"
color brightred "\\\(.."
color brightred start="\\\[" end="]"
color brightcyan "\\\\\$[1-9]"

syntax "perl" "\.p[lm]$"
color red "\<(accept|alarm|atan2|bin(d|mode)|c(aller|h(dir|mod|op|own|root)|lose(dir)?|onnect|os|rypt)|d(bm(close|open)|efined|elete|ie|o
|ump)|e(ach|of|val|x(ec|ists|it|p))|f(cntl|ileno|lock|ork)|get(c|login|peername|pgrp|ppid|priority|pwnam|(host|net|proto|serv)byname|pwuid
|grgid|(host|net)byaddr|protobynumber|servbyport)|([gs]et|end)(pw|gr|host|net|proto|serv)ent|getsock(name|opt)|gmtime|goto|grep|hex|index|
int|ioctl|join|keys|kill|last|length|link|listen|local(time)?|log|lstat|m|mkdir|msg(ctl|get|snd|rcv)|next|oct|open(dir)?|ord|pack|pipe|pop
|printf?|push|q|qq|qx|rand|re(ad(dir|link)?|cv|do|name|quire|set|turn|verse|winddir)|rindex|rmdir|s|scalar|seek|seekdir|se(lect|mctl|mget|
mop|nd|tpgrp|tpriority|tsockopt)|shift|shm(ctl|get|read|write)|shutdown|sin|sleep|socket(pair)?|sort|spli(ce|t)|sprintf|sqrt|srand|stat|st
udy|substr|symlink|sys(call|read|tem|write)|tell(dir)?|time|tr|y|truncate|umask|un(def|link|pack|shift)|utime|values|vec|wait(pid)?|wantarray|warn|write)\>"
color magenta "\<(continue|else|elsif|do|for|foreach|if|unless|until|while|eq|ne|lt|gt|le|ge|cmp|x|my|sub|use|package|can|isa)\>"
color cyan start="[$@%]" end="( |\\W|-)"
color yellow "".*"|qq\|.*\|"
color white "[sm]/.*/"
color white start="(^use| = new)" end=";"
color green "#.*"
color yellow start="<< 'STOP'" end="STOP"

syntax "Java source" "\.java$"
color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>"
color red "\<(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>"
color cyan "\<(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\>"
color red ""[^"]*""
color yellow "<(true|false|null)>"
color blue "//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color brightgreen,brightgreen "[ ]+$"

syntax "nanorc" "[\.]*nanorc$"
color white "^ *(set|unset).*$"
color cyan "^ *(set|unset) (autoindent|backup|const|cut|fill|keypad|multibuffer|noconvert|nofollow|nohelp|nowrap|operatingdir|preserve|quotestr|regexp|smooth|speller|suspend|tabsize|tempfile|historylog|view)"
color brightwhite "^ *syntax [^ ]*"
color brightblue "^ *set\>" "^ *unset\>" "^ *syntax\>"
color white "^ *color\>.*"
color yellow "^ *color (bright)?(white|black|red|blue|green|yellow|magenta|cyan)\>"
color magenta "^ *color\>"
color green "^#.*$"

syntax "bash" "\.sh$"
color brightblack "#.*"
color brightyellow "\(" "\)" "\{" "\}"
color red "\<[A-Z_]{2,}\>"
color red "[\$\*\'\`\|\=]"
color brightblue "\[.*\]"
color green "\<-e\>" "\<-d\>" "\<-f\>" "\<-r\>" "\<-g\>" "\<-u\>" "\<-u\>" "\<-w\>" "\<-x\>" "\<-L\>"
color green "\<-eq\>" "\<-ne\>" "\<-gt\>" "\<-lt\>" "\<-ge\>" "\<-le\>" "\<-s\>" "\<-n\>" "\<-z\>"
color blue "\" "\" "\" "\" "\" "\" "\" "\" "\"
color blue "\" "\" "\" "\" "\"
color brightwhite "\.*"


And thats it. You may want to read the /usr/share/doc/nano/nanorc.sample file for any other options you may want or change the color highlighting a bit.
rate this article:
current rating: average rating: 2.2 (8 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-01-02
bluedevil - 6.2.5
Ebuild name:

kde-plasma/bluedevil-6.2.5

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-01-02

breeze - 6.2.5
Ebuild name:

kde-plasma/breeze-6.2.5

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-01-02

breeze-grub - 6.2.5
Ebuild name:

kde-plasma/breeze-grub-6.2.5

Description

Breeze theme for GRUB

Added to portage

2025-01-02

breeze-gtk - 6.2.5
Ebuild name:

kde-plasma/breeze-gtk-6.2.5

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-01-02

breeze-plymouth - 6.2.5
Ebuild name:

kde-plasma/breeze-plymouth-6.2.5

Description

Breeze theme for Plymouth

Added to portage

2025-01-02

discover - 6.2.5
Ebuild name:

kde-plasma/discover-6.2.5

Description

KDE Plasma resources management GUI

Added to portage

2025-01-02

drkonqi - 6.2.5
Ebuild name:

kde-plasma/drkonqi-6.2.5

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-01-02

flatpak-kcm - 6.2.5
Ebuild name:

kde-plasma/flatpak-kcm-6.2.5

Description

Flatpak Permissions Management KCM

Added to portage

2025-01-02

kactivitymanagerd - 6.2.5
Ebuild name:

kde-plasma/kactivitymanagerd-6.2.5

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-01-02

kde-cli-tools - 6.2.5
Ebuild name:

kde-plasma/kde-cli-tools-6.2.5

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-01-02

kde-cli-tools-common - 6.2.5
Ebuild name:

kde-plasma/kde-cli-tools-common-6.2.5

Description

Added to portage

2025-01-02

kde-gtk-config - 6.2.5
Ebuild name:

kde-plasma/kde-gtk-config-6.2.5

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-01-02

kdecoration - 6.2.5
Ebuild name:

kde-plasma/kdecoration-6.2.5

Description

Plugin based library to create window decorations

Added to portage

2025-01-02

kdeplasma-addons - 6.2.5
Ebuild name:

kde-plasma/kdeplasma-addons-6.2.5

Description

Extra Plasma applets and engines

Added to portage

2025-01-02

kdesu-gui - 6.2.5
Ebuild name:

kde-plasma/kdesu-gui-6.2.5

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-01-02

keditfiletype - 6.2.5
Ebuild name:

kde-plasma/keditfiletype-6.2.5

Description

File Type Editor

Added to portage

2025-01-02

kgamma - 6.2.5
Ebuild name:

kde-plasma/kgamma-6.2.5

Description

Screen gamma values kcontrol module

Added to portage

2025-01-02

kglobalacceld - 6.2.5
Ebuild name:

kde-plasma/kglobalacceld-6.2.5

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-01-02

kinfocenter - 6.2.5
Ebuild name:

kde-plasma/kinfocenter-6.2.5

Description

Utility providing information about the computer hardware

Added to portage

2025-01-02

kmenuedit - 6.2.5
Ebuild name:

kde-plasma/kmenuedit-6.2.5

Description

KDE Plasma menu editor

Added to portage

2025-01-02

kpipewire - 6.2.5
Ebuild name:

kde-plasma/kpipewire-6.2.5

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-01-02

krdp - 6.2.5
Ebuild name:

kde-plasma/krdp-6.2.5

Description

Library and examples for creating an RDP server

Added to portage

2025-01-02

kscreen - 6.2.5
Ebuild name:

kde-plasma/kscreen-6.2.5

Description

KDE Plasma screen management

Added to portage

2025-01-02

kscreenlocker - 6.2.5
Ebuild name:

kde-plasma/kscreenlocker-6.2.5

Description

Library and components for secure lock screen architecture

Added to portage

2025-01-02

ksshaskpass - 6.2.5
Ebuild name:

kde-plasma/ksshaskpass-6.2.5

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-01-02

ksystemstats - 6.2.5
Ebuild name:

kde-plasma/ksystemstats-6.2.5

Description

Plugin-based system monitoring daemon

Added to portage

2025-01-02

kwallet-pam - 6.2.5
Ebuild name:

kde-plasma/kwallet-pam-6.2.5

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-01-02

kwayland - 6.2.5
Ebuild name:

kde-plasma/kwayland-6.2.5

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-01-02

kwayland-integration - 6.2.5
Ebuild name:

kde-plasma/kwayland-integration-6.2.5

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-01-02

kwin - 6.2.5
Ebuild name:

kde-plasma/kwin-6.2.5

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-01-02

kwrited - 6.2.5
Ebuild name:

kde-plasma/kwrited-6.2.5

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-01-02

layer-shell-qt - 6.2.5
Ebuild name:

kde-plasma/layer-shell-qt-6.2.5

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2025-01-02

lgogdownloader - 3.16-r1
Ebuild name:

games-util/lgogdownloader-3.16-r1

Description

Unofficial GOG.com downloader for Linux

Added to portage

2025-01-02

libkscreen - 6.2.5
Ebuild name:

kde-plasma/libkscreen-6.2.5

Description

Plasma screen management library

Added to portage

2025-01-02

libksysguard - 6.2.5
Ebuild name:

kde-plasma/libksysguard-6.2.5

Description

Task management and system monitoring library

Added to portage

2025-01-02

libplasma - 6.2.5
Ebuild name:

kde-plasma/libplasma-6.2.5

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-01-02

milou - 6.2.5
Ebuild name:

kde-plasma/milou-6.2.5

Description

Dedicated search application built on top of Baloo

Added to portage

2025-01-02

ocean-sound-theme - 6.2.5
Ebuild name:

kde-plasma/ocean-sound-theme-6.2.5

Description

Ocean Sound Theme for Plasma

Added to portage

2025-01-02

oxygen - 6.2.5
Ebuild name:

kde-plasma/oxygen-6.2.5

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-01-02

oxygen-sounds - 6.2.5
Ebuild name:

kde-plasma/oxygen-sounds-6.2.5

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-01-02

plasma-activities - 6.2.5
Ebuild name:

kde-plasma/plasma-activities-6.2.5

Description

Core components for KDE's Activities System

Added to portage

2025-01-02

plasma-activities-stats - 6.2.5
Ebuild name:

kde-plasma/plasma-activities-stats-6.2.5

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-01-02

plasma-browser-integration - 6.2.5
Ebuild name:

kde-plasma/plasma-browser-integration-6.2.5

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-01-02

plasma-desktop - 6.2.5
Ebuild name:

kde-plasma/plasma-desktop-6.2.5

Description

KDE Plasma desktop

Added to portage

2025-01-02

plasma-disks - 6.2.5
Ebuild name:

kde-plasma/plasma-disks-6.2.5

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2025-01-02

plasma-firewall - 6.2.5
Ebuild name:

kde-plasma/plasma-firewall-6.2.5

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-01-02

plasma-integration - 6.2.5
Ebuild name:

kde-plasma/plasma-integration-6.2.5

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-01-02

plasma-login-sessions - 6.2.5
Ebuild name:

kde-plasma/plasma-login-sessions-6.2.5

Description

KDE Plasma login sessions

Added to portage

2025-01-02

plasma-meta - 6.2.5
Ebuild name:

kde-plasma/plasma-meta-6.2.5

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-01-02

plasma-nm - 6.2.5
Ebuild name:

kde-plasma/plasma-nm-6.2.5

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-01-02

2025-01-01
FP16 - 2024.06.20
Ebuild name:

dev-libs/FP16-2024.06.20

Description

conversion to/from half-precision floating point formats

Added to portage

2025-01-01

ampache_browser - 1.0.8
Ebuild name:

media-libs/ampache_browser-1.0.8

Description

Ampache desktop client library

Added to portage

2025-01-01

argcomplete - 3.5.3
Ebuild name:

dev-python/argcomplete-3.5.3

Description

Bash tab completion for argparse

Added to portage

2025-01-01

aseprite - 1.3.5-r1
Ebuild name:

dev-games/aseprite-1.3.5-r1

Description

Animated sprite editor & pixel art tool

Added to portage

2025-01-01

caddy - 2.9.0
Ebuild name:

www-servers/caddy-2.9.0

Description

Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTT

Added to portage

2025-01-01

cerberus - 1.3.7
Ebuild name:

dev-python/cerberus-1.3.7

Description

A lightweight and extensible data-validation library for Python

Added to portage

2025-01-01

chameleon - 4.6.0
Ebuild name:

dev-python/chameleon-4.6.0

Description

Fast HTML/XML template compiler for Python

Added to portage

2025-01-01

converseen - 0.12.2.4
Ebuild name:

media-gfx/converseen-0.12.2.4

Description

Batch image converter and resizer based on ImageMagick

Added to portage

2025-01-01

edi - 0.8.0-r3
Ebuild name:

dev-util/edi-0.8.0-r3

Description

An EFL-based IDE

Added to portage

2025-01-01

electrum - 4.5.8-r1
Ebuild name:

net-misc/electrum-4.5.8-r1

Description

User friendly Bitcoin client

Added to portage

2025-01-01

electrum - 4.5.8-r2
Ebuild name:

net-misc/electrum-4.5.8-r2

Description

User friendly Bitcoin client

Added to portage

2025-01-01

fceux - 2.6.6-r2
Ebuild name:

games-emulation/fceux-2.6.6-r2

Description

Portable Famicom/NES emulator, an evolution of the original FCE Ultr

Added to portage

2025-01-01

folium - 0.19.3
Ebuild name:

sci-geosciences/folium-0.19.3

Description

Python Data, Leaflet.js Maps

Added to portage

2025-01-01

foot - 1.20.0
Ebuild name:

gui-apps/foot-1.20.0

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2025-01-01

foot-terminfo - 1.20.0
Ebuild name:

gui-apps/foot-terminfo-1.20.0

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2025-01-01

fortune-mod - 3.24.0
Ebuild name:

games-misc/fortune-mod-3.24.0

Description

The notorious fortune program

Added to portage

2025-01-01

ghostty - 1.0.1
Ebuild name:

x11-terms/ghostty-1.0.1

Description

Fast, feature-rich, and cross-platform terminal emulator

Added to portage

2025-01-01

gpxsee - 13.33-r1
Ebuild name:

sci-geosciences/gpxsee-13.33-r1

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea

Added to portage

2025-01-01

krusader - 2.9.0
Ebuild name:

kde-misc/krusader-2.9.0

Description

Advanced twin-panel (commander-style) file-manager with many extras

Added to portage

2025-01-01

libmikmod - 3.3.12
Ebuild name:

media-libs/libmikmod-3.3.12

Description

Library to play a wide range of module formats

Added to portage

2025-01-01

librepcb - 1.1.0-r2
Ebuild name:

sci-electronics/librepcb-1.1.0-r2

Description

Free EDA software to develop printed circuit boards

Added to portage

2025-01-01

markdown - 24.0.0-r1
Ebuild name:

dev-ada/markdown-24.0.0-r1

Description

Provides a markdown parser written in Ada

Added to portage

2025-01-01

markdown - 25.0.0
Ebuild name:

dev-ada/markdown-25.0.0

Description

Provides a markdown parser written in Ada

Added to portage

2025-01-01

mikmod - 3.2.9
Ebuild name:

media-sound/mikmod-3.2.9

Description

Console MOD-Player based on libmikmod

Added to portage

2025-01-01

moonlight - 6.1.0-r1
Ebuild name:

net-misc/moonlight-6.1.0-r1

Description

NVIDIA GameStream (and Sunshine) client

Added to portage

2025-01-01

ngtcp2 - 1.10.0-r1
Ebuild name:

net-libs/ngtcp2-1.10.0-r1

Description

Implementation of the IETF QUIC Protocol

Added to portage

2025-01-01

ngtcp2 - 1.5.0-r1
Ebuild name:

net-libs/ngtcp2-1.5.0-r1

Description

Implementation of the IETF QUIC Protocol

Added to portage

2025-01-01

ngtcp2 - 1.7.0-r1
Ebuild name:

net-libs/ngtcp2-1.7.0-r1

Description

Implementation of the IETF QUIC Protocol

Added to portage

2025-01-01

nomacs - 3.19.1-r1
Ebuild name:

media-gfx/nomacs-3.19.1-r1

Description

Qt-based image viewer

Added to portage

2025-01-01

openpgp-keys-electrum - 4.5.8
Ebuild name:

sec-keys/openpgp-keys-electrum-4.5.8

Description

OpenPGP keys for net-misc/electrum releases

Added to portage

2025-01-01

pkgcraft-tools - 0.0.21
Ebuild name:

sys-apps/pkgcraft-tools-0.0.21

Description

pkgcraft-based tools for Gentoo

Added to portage

2025-01-01

pkgcruft - 0.0.8
Ebuild name:

dev-util/pkgcruft-0.0.8

Description

QA library and tools based on pkgcraft

Added to portage

2025-01-01

portalocker - 3.1.1
Ebuild name:

dev-python/portalocker-3.1.1

Description

A library for Python file locking

Added to portage

2025-01-01

pyparsing - 3.2.1
Ebuild name:

dev-python/pyparsing-3.2.1

Description

Easy-to-use Python module for text parsing

Added to portage

2025-01-01

pyzotero - 1.6.2
Ebuild name:

dev-python/pyzotero-1.6.2

Description

A Python client for the Zotero API

Added to portage

2025-01-01

qsampler - 1.0.0-r1
Ebuild name:

media-sound/qsampler-1.0.0-r1

Description

Graphical frontend to the LinuxSampler engine

Added to portage

2025-01-01

qsynth - 1.0.2-r1
Ebuild name:

media-sound/qsynth-1.0.2-r1

Description

Qt application to control FluidSynth

Added to portage

2025-01-01

qtpass - 1.4.0-r2
Ebuild name:

app-admin/qtpass-1.4.0-r2

Description

Multi-platform GUI for pass, the standard unix password manager

Added to portage

2025-01-01

qtractor - 1.5.1-r1
Ebuild name:

media-sound/qtractor-1.5.1-r1

Description

Audio/MIDI multi-track sequencer written in C++ with the Qt framework

Added to portage

2025-01-01

quimup - 2.1.1
Ebuild name:

media-sound/quimup-2.1.1

Description

Qt client for the music player daemon (MPD)

Added to portage

2025-01-01

resolv - 0.6.0-r1
Ebuild name:

dev-ruby/resolv-0.6.0-r1

Description

Thread-aware DNS resolver library in Ruby

Added to portage

2025-01-01

rfc3161-client - 1.0.0
Ebuild name:

dev-python/rfc3161-client-1.0.0

Description

An Opinionated Python RFC3161 Client

Added to portage

2025-01-01

slack - 4.41.105
Ebuild name:

net-im/slack-4.41.105

Description

Team collaboration tool

Added to portage

2025-01-01

tortoisehg - 6.6.3-r1
Ebuild name:

dev-vcs/tortoisehg-6.6.3-r1

Description

Set of graphical tools for Mercurial

Added to portage

2025-01-01

urt - 3.2_rc1_p20250101
Ebuild name:

media-libs/urt-3.2_rc1_p20250101

Description

the Utah Raster Toolkit is a library for dealing with raster image

Added to portage

2025-01-01

whatsie - 4.16.3-r1
Ebuild name:

net-im/whatsie-4.16.3-r1

Description

Qt Based WhatsApp Client

Added to portage

2025-01-01

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2025-01-01

zenlib - 3.1.4
Ebuild name:

dev-python/zenlib-3.1.4

Description

Useful python decorators and utilities

Added to portage

2025-01-01

zstd - 1.5.6.1
Ebuild name:

dev-python/zstd-1.5.6.1

Description

Simple python bindings to Yann Collet ZSTD compression library

Added to portage

2025-01-01

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 56.9 ms