summaryrefslogtreecommitdiff
path: root/pygnulib/__init__.py
diff options
context:
space:
mode:
authorDmitry Selyutin <ghostmansd@gmail.com>2017-08-20 11:17:58 +0300
committerDmitry Selyutin <ghostmansd@gmail.com>2017-09-08 17:27:55 +0300
commit02a1f93ea265428559d5e60b3cd79b563371e00c (patch)
treed6cb20690ee563a185050021029285e825a09212 /pygnulib/__init__.py
parent3ba4dbaefe671991083ff46a2714ff256adf75a1 (diff)
downloadgnulib-02a1f93ea265428559d5e60b3cd79b563371e00c.tar.gz
[pygnulib] initial merge (including some small bug fixes)
Diffstat (limited to 'pygnulib/__init__.py')
-rw-r--r--pygnulib/__init__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/pygnulib/__init__.py b/pygnulib/__init__.py
new file mode 100644
index 0000000000..5fbb4220a7
--- /dev/null
+++ b/pygnulib/__init__.py
@@ -0,0 +1,21 @@
+'''Gnulib - The GNU Portability Library
+GNU software has a well-deserved reputation for running on many different types
+of systems. While our primary goal is to write software for the GNU system, many
+users and developers have been introduced to us through the systems that they
+were already using.
+Gnulib is a central location for common GNU code, intended to be shared among
+GNU packages. GCC has libiberty, but this is hard to disentangle from the GCC
+build tree.
+Gnulib takes a different approach. Its components are intended to be shared at
+the source level, rather than being a library that gets built, installed, and
+linked against. Thus, there is no distribution tarball; the idea is to copy
+files from Gnulib into your own source tree.
+Gnulib also includes copies of a few files purely for convenience: the GNU
+coding standards, the GNU maintainer information, the GPL and other licenses (in
+Texinfo), assorted configuration scripts, and more. The goal is to provide all
+the common infrastructure needed by GNU packages.'''
+
+__copyright__ = '2012 Free Software Foundation, Inc.'
+__author__ = 'Dmitriy Selyutin'
+__license__ = 'GNU GPLv3+'
+