First check in

This commit is contained in:
2019-01-12 21:49:25 -06:00
commit 513f807951
11 changed files with 495 additions and 0 deletions

181
Makefile Normal file
View File

@@ -0,0 +1,181 @@
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation here:
# (http://www.gnu.org/licenses/gpl-2.0.html)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# Some, but not all of variables are required. The following list
# describes the required variables:
#
# * URL: The main website of the upstream project
# * REPO: The location of the package on the source pacakge
# server. This might be one of core, main, dev, or
# perhaps others.
# * BRIEF: Short description, should be 50 chars or less
# * SNAPVER: This is the package version. When a package is
# changed, but no changes are made to the source code
# this value should be increased. This would include
# things like usher being modified, changes to default
# configuration files, file permissions, etc.
# * ARCHIVE: The default commands that set this variable should
# work in most cases, but in some cases it may need
# to be modified. This variable should contain the
# path to the source of the package (./SRC/filename)
# * TYPE: This is probably not really needed due to the
# ability of gnu tar to figure it out on its own.
# Should probably be removed at some point.
# * SRCDIR: This is the name of the source directory after the
# package source is extracted. The default command
# should in most cases set this automatically.
# * PATCHDIR: This directory should be ./SRC/patches and is
# required, whether or not patches are used.
# * VERSION: This should be set automatically based on the
# version string in the source directory and SNAPVER.
# The default command here should work in many cases,
# but certain packages may need to use a different
# method.
#
# Variables that aren't required:
#
# * ARCH: This should be populated for packages which contain
# compiled binaries. If it is not populated the ARCH
# will be set to 'noarch'.
# * DEPENDS: If any other packages are required for this package
# to function then they need to be listed here,
# preferably in alphabetical order.
# * BUILDDEPS: Any package beyond packages from the core repo
# need to be listed here. The idea is that we
# can automate building and testing packages
# from clean core systems. The core repo is
# intended to include only the base minimum
# packages which provide a functional system.
# * SRCPKG: By default this is populated automatically with
# the name of the package (current directory). If
# the source package is used to generate multiple
# packages then this variable should contain the
# name of the git repo that tracks the source.
# * DESC: This is to be used to provide a longer description
# of the package.
export ARCH = x86_64
export DEPENDS = glibc,libslang,popt,python
export BUILDDEPS = popt-dev,slang-dev
export SRCPKG = newt
export URL = https://pagure.io/newt
SNAPVER = 0
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//')
PATCHDIR := $(PWD)/SRC/patches
export VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'| \
sed 's/^-//')-$(SNAPVER)
ROOT := $(PWD)/ROOT
WHIPTAIL := $(PWD)/whiptail
WHIPTAILROOT := $(WHIPTAIL)/ROOT
LIBNEWT := $(PWD)/libnewt
LIBNEWTROOT :=$(LIBNEWT)/ROOT
NEWTDEV := $(PWD)/newt-dev
NEWTDEVROOT := $(NEWTDEV)/ROOT
$(WHIPTAIL): $(LIBNEWTROOT)
@install -v -d $(WHIPTAIL)/SNAP && \
if [ -d $(WHIPTAILROOT) ]; then \
touch $(WHIPTAILROOT); \
else \
install -v -d $(WHIPTAILROOT); \
fi && \
mv -v $(ROOT)/* $(WHIPTAILROOT) && \
cd $(WHIPTAIL) && make -f ../Makefile.whiptail && mv *.snap ../
$(LIBNEWTROOT): $(NEWTDEVROOT)
@install -v -d $(LIBNEWT)/SNAP && \
if [ -d $(LIBNEWTROOT) ]; then \
touch $(LIBNEWTROOT); \
else \
install -v -d $(LIBNEWTROOT); \
fi && \
[ ! -d $(LIBNEWTROOT)/usr/share ] && \
install -v -d -m 0755 $(LIBNEWTROOT)/usr/share && \
mv -v $(ROOT)/usr/lib $(LIBNEWTROOT)/usr/lib && \
mv -v $(ROOT)/usr/share/locale $(LIBNEWTROOT)/usr/share/locale && \
cd $(LIBNEWT) && make -f ../Makefile.libnewt && mv *.snap ../
$(NEWTDEVROOT): $(ROOT)
@install -v -d $(NEWTDEV)/SNAP && \
if [ -d $(NEWTDEVROOT) ]; then \
touch $(NEWTDEVROOT); \
else \
install -v -d $(NEWTDEVROOT); \
fi && \
for file in `find $(ROOT)|egrep 'pkgconfig\/|\.a$$|\.h$$'`; do \
path=`dirname $$file|sed "s[$(ROOT)[$(NEWTDEVROOT)["`; \
mkdir -p $$path; \
mv $$file $$path; \
done && \
find $(ROOT) -type d -empty -delete && \
cd $(NEWTDEV) && make -f ../Makefile.newt-dev && mv *.snap ../
$(SRCDIR)/configure: $(ARCHIVE)
@if [ '$(TYPE)' = 'application/x-bzip2' ]; then \
tar -jxf $(ARCHIVE); \
elif [ '$(TYPE)' = 'application/x-gzip' ]; then \
tar -zxf $(ARCHIVE); \
elif [ '$(TYPE)' = 'application/x-tar' ]; then \
tar -xf $(ARCHIVE); \
elif [ '$(TYPE)' = 'application/x-xz' ]; then \
tar -xf $(ARCHIVE); \
else \
echo 'Unable to determine archive type'; \
exit 1; \
fi
@touch $(SRCDIR)/configure
$(SRCDIR)/config.log: $(SRCDIR)/configure
@cd $(SRCDIR) && \
for patch in `find $(PATCHDIR) -name \*.patch|sort`; do \
patch --verbose -Np1 -i $$patch; \
done
@cd $(SRCDIR); \
./configure \
--prefix=/usr \
--build=x86_64-snap-linux-gnu \
--host=x86_64-snap-linux-gnu \
--target=x86_64-snap-linux-gnu
# binfile should be replaced with a file generated by the
# make process. It won't really break anything if not
# set to a valid file, but the source make process will
# be re-executed even if it isn't necessary
$(SRCDIR)/binfile: $(SRCDIR)/config.log
@cd $(SRCDIR) && make
$(ROOT): $(SRCDIR)/binfile
@if [ -d $(ROOT) ]; then \
touch $(ROOT); \
else \
mkdir -v $(ROOT); \
fi
@cd $(SRCDIR) && make install DESTDIR=$(ROOT)
test: $(ROOT)
@cd $(SRCDIR); \
make check
clean:
@rm -rvf $(ROOT) \
$(NEWTDEV) \
$(WHIPTAIL) \
$(LIBNEWT) \
$(SNAPINFO) \
$(MANIFEST) \
$(FILES) \
$(SRCDIR)

17
Makefile.libnewt Normal file
View File

@@ -0,0 +1,17 @@
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation here:
# (http://www.gnu.org/licenses/gpl-2.0.html)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
REPO = main
BRIEF = Library for widget based user interfaces
DESC = Newt is a programming library for color text mode, widget based user \
interfaces.
include /usr/share/snap/Makefile.snaplinux

16
Makefile.newt-dev Normal file
View File

@@ -0,0 +1,16 @@
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation here:
# (http://www.gnu.org/licenses/gpl-2.0.html)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
REPO = dev
BRIEF = Development files for newt
DESC = Development files for newt
include /usr/share/snap/Makefile.snaplinux

17
Makefile.whiptail Normal file
View File

@@ -0,0 +1,17 @@
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation here:
# (http://www.gnu.org/licenses/gpl-2.0.html)
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
REPO = main
BRIEF = display dialog boxes from shell scripts
DESC = whiptail is a program that will let you present a variety of \
questions or display messages using dialog boxes from a shell script.
include /usr/share/snap/Makefile.snaplinux

5
SNAP/README Normal file
View File

@@ -0,0 +1,5 @@
This is the directory where the manifest, snapinfo,
and files.tar.gz files will be created. It is also
where the usher file should be placed if it is
required by the package. Any other files that need
to be included could also be placed here.

BIN
SNAP/files.tar.gz Normal file

Binary file not shown.

243
SNAP/manifest Normal file
View File

@@ -0,0 +1,243 @@
a7b1bd9b9dce8e4caf438284c997e6df2e6117ec -rw-r--r-- usr/share/man/man1/whiptail.1.gz
________________________________________ drwxr-xr-x usr/share/man/man1
________________________________________ drwxr-xr-x usr/share/man
f48fb0181aa606a26e45b9e7232ede17ef39df5a -rw-r--r-- usr/share/locale/zh_TW/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/zh_TW/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/zh_TW
1486546d54a4532f54bed449f6184c91066b28d2 -rw-r--r-- usr/share/locale/zh_CN/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/zh_CN/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/zh_CN
ceeebb36c708206c6ac680aa56d4d80a527aaeaf -rw-r--r-- usr/share/locale/xh/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/xh/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/xh
9912064169878d75aaf0414718b701ecced2f68e -rw-r--r-- usr/share/locale/wo/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/wo/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/wo
10a20ba0e568fffdf8dbd7bd6778c5e60fc6b174 -rw-r--r-- usr/share/locale/vi/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/vi/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/vi
9e18b6e56b7779e5e3074a4b9c6ff86cab06592d -rw-r--r-- usr/share/locale/uk/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/uk/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/uk
42a1e9e2592047185cdf8b91c88b4946e6f3f82f -rw-r--r-- usr/share/locale/tr/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/tr/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/tr
acdd084ae3b108bb0bd3ccf977d6d283f057768a -rw-r--r-- usr/share/locale/tl/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/tl/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/tl
7abeeda1c21b90bfed3a1b6ef370c54b373182f8 -rw-r--r-- usr/share/locale/th/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/th/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/th
77a3c67f4cbb8a3b8cd8e37c3a841cbc388b1247 -rw-r--r-- usr/share/locale/tg/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/tg/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/tg
fe4b671ecb96a86056d4b243a41c8f54898e137c -rw-r--r-- usr/share/locale/te/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/te/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/te
c263ad1e573bf6b99670e27421a463a68c0d612c -rw-r--r-- usr/share/locale/ta/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ta/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ta
583e7c0891537ef84186d3794ba5e4922543bca0 -rw-r--r-- usr/share/locale/sv/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/sv/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/sv
dc3b088cc0707496ce1a564c88a4faff362a0d13 -rw-r--r-- usr/share/locale/sr@latin/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/sr@latin/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/sr@latin
1714e795d98578f8cad630fcb21ce5d38cf2945c -rw-r--r-- usr/share/locale/sr/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/sr/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/sr
60fb9ce03e3edc57a0e22336c43f7c5b8fc0edc5 -rw-r--r-- usr/share/locale/sq/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/sq/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/sq
6fab62c60f58a9d241bd00f7ed5a1c5da5b52f39 -rw-r--r-- usr/share/locale/sl/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/sl/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/sl
b0bed119114baf91cf970044b029733b2a1a2a38 -rw-r--r-- usr/share/locale/sk/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/sk/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/sk
8b8b8dc04b82c9f5401708d79559ca49ebf905a5 -rw-r--r-- usr/share/locale/ru/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ru/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ru
988faeebaf2e6b4c302f31c48c7d0ef0e9f4d955 -rw-r--r-- usr/share/locale/ro/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ro/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ro
c44e7266399d664250c33d97d5fb02ed38f4397a -rw-r--r-- usr/share/locale/pt_BR/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/pt_BR/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/pt_BR
8add7d3e0d8690ba4870c44a8916add1fe885cac -rw-r--r-- usr/share/locale/pt/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/pt/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/pt
c2e5ab0cc748f43e5c02fefbfc0e26b4e279ebd4 -rw-r--r-- usr/share/locale/pl/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/pl/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/pl
080813d97349afaee2e0125b46017925dd600342 -rw-r--r-- usr/share/locale/pa/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/pa/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/pa
10d9e830143b65499ceeac085592a4de72f5ccda -rw-r--r-- usr/share/locale/nn/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/nn/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/nn
b7c7b72e49f901f6af6b90275e83fc62344ab8f6 -rw-r--r-- usr/share/locale/nl/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/nl/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/nl
ff9609b215104b51adf019102f5201c0bdc733cb -rw-r--r-- usr/share/locale/ne/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ne/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ne
ef692429027153161b253b78228d5232297f26fc -rw-r--r-- usr/share/locale/nds/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/nds/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/nds
ad1d3dd868bd0c50e504e64da9043aa7e4678ea0 -rw-r--r-- usr/share/locale/nb/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/nb/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/nb
47ecbda8a76e0456165face97a2e2e24c5c129e6 -rw-r--r-- usr/share/locale/ms/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ms/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ms
3011e081032d6f353fa922ee9ac0cd2ff5d337f5 -rw-r--r-- usr/share/locale/mr/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/mr/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/mr
e33ee820f6198aac377a38553823cb230fe47211 -rw-r--r-- usr/share/locale/ml/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ml/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ml
140ab5b94fdb3511f19f5755147955abb36fcecf -rw-r--r-- usr/share/locale/mk/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/mk/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/mk
19c652d715a2c0d749bc27a94168cfef0cb57c3c -rw-r--r-- usr/share/locale/mg/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/mg/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/mg
5567a7ff92a664f3bfbdb02f36dcd481372717af -rw-r--r-- usr/share/locale/lv/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/lv/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/lv
6d149b355b9aa39497be8b9be4aae76b98a964e4 -rw-r--r-- usr/share/locale/lt/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/lt/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/lt
5eb15be179f46dbc1af7128f7ec3e96564c97d2f -rw-r--r-- usr/share/locale/ku/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ku/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ku
bb4c0644a5f28166972a98b4c379913cb88d0a16 -rw-r--r-- usr/share/locale/ko/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ko/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ko
406582d1f45901bdb82cf5deb9bd1e5765f6183d -rw-r--r-- usr/share/locale/kn/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/kn/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/kn
0b073b8d12624d24cd3c69ea978e172ce143de36 -rw-r--r-- usr/share/locale/km/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/km/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/km
e100a3c3e217baa37fbe7ed664497f111c1b2a81 -rw-r--r-- usr/share/locale/ka/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ka/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ka
ccb1aeeaf5118a8c2e3f22845553c3b5784446f3 -rw-r--r-- usr/share/locale/ja/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ja/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ja
e77d88b4f5310ac308d75727e98bdb41501151b4 -rw-r--r-- usr/share/locale/it/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/it/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/it
b24d3e27d72dbe6065db61c64d81b6b33d673b74 -rw-r--r-- usr/share/locale/id/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/id/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/id
1f72ca40587541331e4bde71d6c214272ebdf8f3 -rw-r--r-- usr/share/locale/ia/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ia/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ia
852eb5613dc5d8ac70130ab59ecb38cf281bd319 -rw-r--r-- usr/share/locale/hu/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/hu/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/hu
17b18132b17825a9c2b15b941abf3deb291a9f63 -rw-r--r-- usr/share/locale/hr/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/hr/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/hr
53e0c9cd68b7b1b223b3183a438a287132ef3c59 -rw-r--r-- usr/share/locale/hi/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/hi/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/hi
bf697b5b88a29644f6186a626b2163729b8c296b -rw-r--r-- usr/share/locale/he/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/he/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/he
180d69326c5c3bb89c67b7363702d2a01a932a34 -rw-r--r-- usr/share/locale/gu/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/gu/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/gu
98fe15c9112928266be632febb598466b126efa1 -rw-r--r-- usr/share/locale/gl/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/gl/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/gl
b90f95d475c2d98d3b0529da4d638604141464ab -rw-r--r-- usr/share/locale/ga/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ga/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ga
e3a25b19ecf986dd82845d5d1cd3c3a31dad387b -rw-r--r-- usr/share/locale/fr/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/fr/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/fr
fb3d6b621e763c2d054064fe0e27502f80f60330 -rw-r--r-- usr/share/locale/fi/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/fi/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/fi
b67e1c645daacc5a2e8525bbe8fac86e7e33e8be -rw-r--r-- usr/share/locale/fa/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/fa/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/fa
9e721a25875663d3e0d698af1c7cba7a5e00d616 -rw-r--r-- usr/share/locale/eu/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/eu/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/eu
2424f3c88650535c403024f0b70367116bcb8794 -rw-r--r-- usr/share/locale/et/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/et/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/et
046be7674a7aec52085a5c666a2b4b922b6b2ef0 -rw-r--r-- usr/share/locale/es/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/es/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/es
7bd3d375efaab78556e126c6b01a3de6c851a9ed -rw-r--r-- usr/share/locale/eo/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/eo/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/eo
55a1d18adf768d72f4ca014d122d2ab3ee51de58 -rw-r--r-- usr/share/locale/el/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/el/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/el
1b6f7c164f022a9e04ea802a565b2c6b116d1fc1 -rw-r--r-- usr/share/locale/dz/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/dz/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/dz
70a222013a4af14556e3a8e4ddfb2871156c3591 -rw-r--r-- usr/share/locale/de/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/de/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/de
310564756aa8ee6a25b565437a93575594e6f50d -rw-r--r-- usr/share/locale/da/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/da/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/da
64d3f6fd712c78b20aaa159d14cbf8b66c70bbef -rw-r--r-- usr/share/locale/cy/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/cy/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/cy
9884eefd5bd7fa2b275752555dc708894d48dc8c -rw-r--r-- usr/share/locale/cs/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/cs/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/cs
fbbd629896b8232c3cfb7a5296d70f91a2038efc -rw-r--r-- usr/share/locale/ca/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ca/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ca
70e60b426639504f670f0517ce26f4a4f4132280 -rw-r--r-- usr/share/locale/bs/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/bs/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/bs
87af0049c5f4867a2a09bcecf32d4b96770cbf5c -rw-r--r-- usr/share/locale/bn_IN/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/bn_IN/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/bn_IN
947ab15f43a5a28ed00a53e46711027820dc4252 -rw-r--r-- usr/share/locale/bn/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/bn/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/bn
f5b85f647aa7956adfaa1c80f5e8292a749ad47c -rw-r--r-- usr/share/locale/bg/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/bg/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/bg
0b2072c5580d2824eabbaa16d3fff156972b289c -rw-r--r-- usr/share/locale/bal/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/bal/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/bal
56b282bb2c837c04d652e28d3e9833a30646e360 -rw-r--r-- usr/share/locale/ast/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ast/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ast
f3260b1da09dc89064937feb8150a7f208acc4b2 -rw-r--r-- usr/share/locale/as/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/as/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/as
c2afa7aa896560f1b4774269c2b3530cb7310dd4 -rw-r--r-- usr/share/locale/ar/LC_MESSAGES/newt.mo
________________________________________ drwxr-xr-x usr/share/locale/ar/LC_MESSAGES
________________________________________ drwxr-xr-x usr/share/locale/ar
________________________________________ drwxr-xr-x usr/share/locale
________________________________________ drwxr-xr-x usr/share
07ce32ed5a27b5c155fff392d2ccf713a3003842 -rw-r--r-- usr/lib/python2.7/site-packages/snack.py
97e72589e365ed2db6641c693d36309e921883a1 -rwxr-xr-x usr/lib/python2.7/site-packages/_snack.so
________________________________________ drwxr-xr-x usr/lib/python2.7/site-packages
________________________________________ drwxr-xr-x usr/lib/python2.7
92c10a69fb211049b270ea70cc8f2510cf615724 -rw-r--r-- usr/lib/pkgconfig/libnewt.pc
________________________________________ drwxr-xr-x usr/lib/pkgconfig
07d0550596a74300f8abb2630ec26fd8f69861c9 -rwxr-xr-x usr/lib/libnewt.so.0.52.20
07d0550596a74300f8abb2630ec26fd8f69861c9 lrwxrwxrwx usr/lib/libnewt.so.0.52
07d0550596a74300f8abb2630ec26fd8f69861c9 lrwxrwxrwx usr/lib/libnewt.so
53a8368e80bd561720e3f2b45eaa5cb314b57925 -rw-r--r-- usr/lib/libnewt.a
________________________________________ drwxr-xr-x usr/lib
3f5cc3c03a17d691014c07e07911707a63b2edc7 -rw-r--r-- usr/include/newt.h
________________________________________ drwxr-xr-x usr/include
bb84659168b938b0ca86c244b6f2f1253886d8e8 -rwxr-xr-x usr/bin/whiptail
________________________________________ drwxr-xr-x usr/bin
________________________________________ drwxr-xr-x usr

12
SNAP/snapinfo Normal file
View File

@@ -0,0 +1,12 @@
name: newt
version: 0.52.20-0
arch: x86_64
depends:
builddeps:
srcpkg: newt
bytes: 911360
url: https://pagure.io/newt
repo: main
sha256man: cfca886e10db8a678f5231d1d9ce65f90379a2ff1539e22337b3ea6b0c4a4acb
brief: Library for color text mode
description: Newt is a programming library for color text mode, widget based user interfaces.

BIN
SRC/newt-0.52.20.tar.gz Normal file

Binary file not shown.

View File

@@ -0,0 +1 @@
8d66ba6beffc3f786d4ccfee9d2b43d93484680ef8db9397a4fb70b5adbb6dbc

3
SRC/patches/README Normal file
View File

@@ -0,0 +1,3 @@
Place any patch files here and preface each with a
number indicating the order of execution. Patch
files are expected to use a .patch extension.