Commit graph

556 commits

Author SHA1 Message Date
pho
ef6aa67385 +gkrellsun 2021-11-27 12:34:07 +00:00
pin
de80f76f7b Add nora 2021-10-11 10:40:14 +00:00
markd
d23566510f misc: add kquickcharts 2021-09-04 02:27:53 +00:00
adam
0029050e8d py-platformdirs: added version 2.2.0
When writing desktop application, finding the right location to store user data
and configuration varies per platform. Even for single-platform apps, there
may by plenty of nuances in figuring out the right location. This kind of thing
is what the platformdirs module is for.
2021-08-29 13:24:32 +00:00
taca
857894f275 misc/Makefile: delete ruby-mimemagic 2021-06-03 14:54:17 +00:00
taca
ab82dd60a1 misc/Makefile: remove ruby-bundler1 2021-05-30 09:45:51 +00:00
pin
3e1fbc260f Add deckster 2021-05-17 07:48:27 +00:00
bsiegert
c13a431938 Remove net/go-grpc, misc/go-genproto and misc/go-genproto-googleapis-rpc
The latter two were only useful to support the go-grpc and go-tools builds.
go-grpc has no useful binaries (the CLI is in net/grpc), it only consists
of libraries that are now unused. No replacements.
2021-05-09 08:54:07 +00:00
wiz
a2a061dc3d molden: remove
Upstream website gone, the distfile was not re-distributable, and
noone had updated it since 2007.
2021-04-24 08:47:53 +00:00
markd
a80f69c201 misc: -libkgeomap 2021-04-07 19:42:25 +00:00
jnemeth
bf76336650 add and enable catpoint 2021-03-04 04:32:30 +00:00
simonb
a63fa51434 misc: add sleepto
Jared's sleep command with at-style time specification.
2021-02-25 10:11:30 +00:00
schmonz
79b0be6fb1 Add and enable s6-portable-utils. 2020-11-19 20:19:37 +00:00
mrg
8a4d13f802 add two packages from cpan:
- devel/p5-File-Valet 1.0.7
- misc/p5-Weather-PurpleAir-API 0.04

File::Valet has utilities for file slurping, locking, and finding.
Weather::PurpleAir::API provides access to the PurpleAir API
interfaces, and a small program to inspect particular sensors.
2020-09-22 01:50:23 +00:00
wiz
0abc984b17 p5-Locale-Maketext-Simple: remove, part of perl since 2008 2020-09-04 12:01:53 +00:00
wiz
08d48839ed p5-Locale-Maketext: remove, part of perl since 2003 2020-09-04 12:00:48 +00:00
jmcneill
1d2003a5c5 + sd-mux-ctrl 2020-08-03 18:28:07 +00:00
nia
0558066b12 misc: Add mime-types
A database of common mappings of file extensions to MIME types.

The purpose of this package is to provide a reasonably complete
default database of MIME types for packages that expect a mime.types
file to be installed in the system configuration directory.
2020-06-09 10:10:37 +00:00
nia
15c5ce6e6c misc: Add abduco.
abduco provides session management i.e. it allows programs to be run
independently from their controlling terminal. That is programs can be
detached - run in the background - and then later reattached.

Together with dvtm it provides a simpler and cleaner alternative to tmux or
screen.
2020-03-04 20:30:50 +00:00
pho
e3461400ed Add mic-paren 2020-01-22 00:11:53 +00:00
taca
dded46ed0f misc/Makefile: add and enable ruby-license-acceptance 2020-01-19 15:39:25 +00:00
nia
56bf58949f misc: Remove gok.
"This module is heading towards planned deprecation. It will continue to be supported and API/ABI stable throughout the GNOME 2.x series, but we do not recommend using it in new applications unless you require functionality that has not already been moved elsewhere."

GNOME 2.x is ded.
2020-01-19 12:10:56 +00:00
pho
f71ba7faec Add cabal-install 2020-01-19 07:52:21 +00:00
nia
33a9d1530f misc: Remove gnome-utils, another dead GNOME 2 component 2020-01-16 14:11:03 +00:00
nia
5270154089 misc: Add lr.
lr is a new tool for generating file listings, which includes the best
features of ls(1), find(1), stat(1) and du(1).
2020-01-15 14:56:46 +00:00
nia
4d75650e8c misc: Add pixd.
pixd is a tool for visualizing binary data using a colour palette. It is in
a lot of ways akin to a hexdump tool, except using coloured squares to
represent each octet.

pixd uses 24-bit color SGR escape sequences.  For a list of terminal emulators
with support for these, see XVilka's list of supporting terminal emulators:
https://gist.github.com/XVilka/8346728
2020-01-13 22:30:34 +00:00
nia
e84cadd63b misc: Add hexd.
hexd prints a human-readable hexdump of the specified files, or standard
input if omitted. Its main distinguishing feature is the use of colours to
visually indicate which range of values an octet belongs to, aiding in
spotting patterns in binary data.

By default, hexd relies on 256-color SGR escape sequences. Most terminal
emulators should support these today, but technically they're only defacto
standard. However, you can override the formatting used with the HEXD_COLORS
environment variable (see manpage), or use the -p option for plaintext
output.
2020-01-13 22:29:24 +00:00
adam
fa1eefe5c9 py-sniffio: added version 1.1.0
You're writing a library. You've decided to be ambitious, and support multiple
async I/O packages, like Trio, and asyncio, and... You've written a bunch of
clever code to handle all the differences. But... how do you know which piece of
clever code to run?

This is a tiny package whose only purpose is to let you detect which async
library your code is running under.
2020-01-08 20:04:27 +00:00
adam
2e7c631bd7 py-immutables: added version 0.11
An immutable mapping type for Python.

The underlying datastructure is a Hash Array Mapped Trie (HAMT) used in
Clojure, Scala, Haskell, and other functional languages. This implementation is
used in CPython 3.7 in the contextvars module (see PEP 550 and PEP 567 for more
details).

Immutable mappings based on HAMT have O(log N) performance for both set() and
get() operations, which is essentially O(1) for relatively small mappings.
2020-01-08 20:01:40 +00:00
nia
31152cf0b8 misc: Remove deskbar-applet
Dead GNOME 2 applet. This is no longer part of GNOME.
2020-01-04 13:13:59 +00:00
pho
5ff45be473 Add hs-extra 2020-01-03 06:05:20 +00:00
markd
0aec57a9de misc: add khelpcenter 2019-11-30 21:46:35 +00:00
jperkin
788f5d5c41 misc: Spell libkeduvocdocument correctly. 2019-11-22 23:30:32 +00:00
markd
a3bc49355e misc: add kdeedu-data, libkeduvocdocument 2019-11-21 06:00:55 +00:00
adam
8b39125273 wandio: added version 4.2.2
WANDIO is a library for reading from, and writing to, files. Depending on
libraries available at compile time, WANDIO provides transparent
compression/decompression for the following formats:
- zlib (gzip)
- bzip2
- lzo (write-only)
- lzma
- zstd
- lz4
- Intel QAT (write-only)
- http (read-only)

WANDIO also improves IO performance by performing compression/decompression in
a separate thread (if pthreads are available).
2019-11-20 20:52:41 +00:00
markd
7374ab99a2 misc: add kidentitymanagement 2019-11-17 06:17:46 +00:00
markd
85bdd66715 misc: add kdav 2019-11-17 05:54:13 +00:00
markd
c8f6031174 misc: add kcontacts 2019-11-11 09:38:49 +00:00
nros
75d3044a42 Add XyGrib version 1.2.6.1 to pkgsrc-current.
Packaged in pkgsrc-wip by myself.

XyGrib is visualizer of meteorologial data.
XyGrib is continuation of zyGrib available in misc/zyGrib.
2019-11-04 18:35:21 +00:00
kamil
2c706998c3 py-anki2: Retired
This package has no upgrade path and in the current version depends on EOL
libraries (qt4). There is need to get chromium aboard for the qt5 version.
2019-10-30 14:43:46 +00:00
kamil
29c61d0e68 -mnemosyne 2019-10-30 13:45:42 +00:00
kamil
b21ce20327 -tellico 2019-10-30 12:37:50 +00:00
wiz
1fefb6acc2 softmaker-office-demo: remove
This is a Linux binary of a test version of a text editor, last
updated in 2006, which does not fetch.

Newer versions are available, so someone can re-add it if interested.
2019-09-27 07:00:51 +00:00
nia
f22ffb683f Remove misc/gnome-devel-docs
GNOME 2 development documentation - no longer useful
2019-09-18 09:32:08 +00:00
nia
e0c016ed55 Remove misc/gnome-user-docs - old GNOME 2 documentation... 2019-09-16 10:40:49 +00:00
brook
d199b04eb6 R-praise: initial commit
Build friendly R packages that praise their users if they have done
something good, or they just need it to feel better.
2019-08-09 18:29:50 +00:00
brook
b6e35d7d52 R-Hmisc: initial commit.
Contains many functions useful for data analysis, high-level graphics,
utility operations, functions for computing sample size and power,
importing and annotating datasets, imputing missing values, advanced
table making, variable clustering, character string manipulation,
conversion of R objects to LaTeX and html code, and recoding
variables.
2019-07-31 13:37:02 +00:00
nia
deec4be646 Remove misc/yelp - replaced by misc/yelp3.
Discussed on pkgsrc-users@ last week.
2019-07-11 09:32:19 +00:00
jaapb
3b22e209ad Added ocaml-magic-mime to Makefile SUBDIRs 2019-07-01 15:54:08 +00:00
tsutsui
f0409b6bf3 misc/Makefile: add libreoffice6-bin 2019-03-23 10:55:06 +00:00