Add python3-all-dev build-dep

pull/266/head
nick black 5 years ago committed by Nick Black
parent 306045116f
commit 202115d826

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(notcurses VERSION 1.0.0
project(notcurses VERSION 1.1.0
DESCRIPTION "UI for modern terminal emulators"
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
LANGUAGES C CXX)

6
debian/changelog vendored

@ -1,3 +1,9 @@
notcurses (1.1.0-1) UNRELEASED; urgency=medium
* Add python3-all-dev build-dep (#149)
-- Nick Black <dankamongmen@gmail.com> Tue, 07 Jan 2020 16:06:56 -0500
notcurses (1.0.0-1) unstable; urgency=medium
* Let's light this candle. Upstream GA release.

2
debian/control vendored

@ -3,7 +3,7 @@ Priority: optional
Maintainer: Nick Black <dankamongmen@gmail.com>
Build-Depends: debhelper-compat (= 12), cmake (>= 3.13), pkg-config (>= 0.29),
libncurses-dev (>= 6.1), libavformat-dev (>= 57.0), libswscale-dev (>= 5.0),
libavutil-dev (>= 56.0), pandoc (>= 1.19.2.4)
libavutil-dev (>= 56.0), pandoc (>= 1.19.2.4), python3-all-dev (>= 3.2)
Standards-Version: 4.4.1.1
Section: libs
Homepage: https://nick-black.com/dankwiki/index.php/notcurses

@ -1,4 +1,4 @@
.TH notcurses-demo 1 "v1.0.0"
.TH notcurses-demo 1 "v1.1.0"
.SH NAME
notcurses-demo \- Show off some notcurses features
.SH SYNOPSIS

@ -1,4 +1,4 @@
.TH notcurses-input. 1 "v1.0.0"
.TH notcurses-input. 1 "v1.1.0"
.SH NAME
notcurses-input \- Display and decode input
.SH SYNOPSIS

@ -1,4 +1,4 @@
.TH notcurses-planereel 1 "v1.0.0"
.TH notcurses-planereel 1 "v1.1.0"
.SH NAME
notcurses-planereel \- Experiment with panelreels
.SH SYNOPSIS

@ -1,4 +1,4 @@
.TH notcurses-view 1 "v1.0.0"
.TH notcurses-view 1 "v1.1.0"
.SH NAME
notcurses-view \- Render multimedia to the terminal
.SH SYNOPSIS

@ -1,6 +1,6 @@
% notcurses(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME
@ -56,7 +56,7 @@ notcurses supports input from keyboards (via **stdin**) and pointing devices (vi
a broker such as GPM, X, or Wayland). Input is delivered as 32-bit Unicode
code points. Synthesized events such as mouse button presses and arrow keys
are mapped into Unicode's
[Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U100000.pdf).
[Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U1.1.00.pdf).
Information on input is available at **notcurses_input(3)**.
## Ncplanes

@ -1,6 +1,6 @@
% notcurses_cell(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_channels(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_init(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_input(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME
@ -39,7 +39,7 @@ notcurses supports input from keyboards and mice, and any device that looks
like them. Mouse support requires a broker such as GPM, Wayland, or Xorg, and
must be explicitly enabled via **notcurses_mouse_enable(3)**. The full 32-bit
range of Unicode is supported (see **unicode(7)**), with synthesized events
mapped into the [Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U100000.pdf).
mapped into the [Supplementary Private Use Area-B](https://unicode.org/charts/PDF/U1.1.00.pdf).
Unicode characters are returned directly as UCS-32, one codepoint at a time.
notcurses takes its keyboard input from **stdin**, which will be placed into

@ -1,6 +1,6 @@
% notcurses_lines(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_ncplane(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_ncvisual(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME
notcurses_ncvisual - notcurses multimedia

@ -1,6 +1,6 @@
% notcurses_output(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME
@ -10,25 +10,25 @@ notcurses_output - output to ncplanes
**#include <notcurses.h>**
**int ncplane_putc(struct ncplane* n, const cell* c);**
**static inline int
ncplane_putc_yx(struct ncplane* n, int y, int x, const cell* c);**
ncplane_putc(struct ncplane* n, const cell* c);**
**int ncplane_putsimple(struct ncplane* n, char c);**
**int ncplane_putc_yx(struct ncplane* n, int y, int x, const cell* c);**
**static inline int
ncplane_putsimple_yx(struct ncplane* n, int y, int x, char c);**
ncplane_putsimple(struct ncplane* n, char c);**
**int ncplane_putwc(struct ncplane* n, wchar_t w);**
**int ncplane_putsimple_yx(struct ncplane* n, int y, int x, char c);**
**static inline int
ncplane_putwc_yx(struct ncplane* n, int y, int x, wchar_t w);**
ncplane_putwc(struct ncplane* n, wchar_t w);**
**int ncplane_putegc(struct ncplane* n, const char* gclust, int* sbytes);**
**int ncplane_putwc_yx(struct ncplane* n, int y, int x, wchar_t w);**
**static inline int
ncplane_putegc_yx(struct ncplane* n, int y, int x, const char* gclust, int* sbytes);**
ncplane_putegc(struct ncplane* n, const char* gclust, int* sbytes);**
**int ncplane_putegc_yx(struct ncplane* n, int y, int x, const char* gclust, int* sbytes);**
**static inline int
ncplane_putwegc(struct ncplane* n, const wchar_t* gclust, int* sbytes);**
@ -44,8 +44,7 @@ ncplane_putstr(struct ncplane* n, const char* gclustarr);**
**int ncplane_putstr_aligned(struct ncplane* n, int y, ncalign_e align,
const char* s);**
**static inline int
ncplane_putwstr_yx(struct ncplane* n, int y, int x, const wchar_t* gclustarr);**
**int ncplane_putwstr_yx(struct ncplane* n, int y, int x, const wchar_t* gclustarr);**
**static inline int
ncplane_putwstr_aligned(struct ncplane* n, int y, ncalign_e align,

@ -1,6 +1,6 @@
% notcurses_panelreels(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_render(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_stats(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_stdplane(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -1,6 +1,6 @@
% notcurses_stop(3)
% nick black <nickblack@linux.com>
% v1.0.0
% v1.1.0
# NAME

@ -6,7 +6,7 @@ def read(fname):
setup(
name="notcurses",
version="1.0.0",
version="1.1.0",
package_dir={'': 'src'},
packages=find_packages('src'),
author="Nick Black",

@ -1,6 +1,6 @@
[package]
name = "notcurses"
version = "1.0.0"
version = "1.1.0"
authors = ["nick black <dankamongmen@gmail.com>"]
edition = "2018"
license = "Apache-2.0"

Loading…
Cancel
Save