This is the mail archive of the cygwin-apps-cvs mailing list for the cygwin-apps project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[crypt - a crypt library based on musl crypto code] branch master, updated. crypt-2_1-release-2-gb7e0816




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/crypt.git;h=b7e0816dcb426cd8188cb8452ad2e4d8fbb05311

commit b7e0816dcb426cd8188cb8452ad2e4d8fbb05311
Author: Yaakov Selkowitz <yselkowi@redhat.com>
Date:   Thu Dec 21 19:14:09 2017 -0600

    Rename crypt.README to README
    
    This is more similar to package documentation than Cygwin documentation.


Diff:
---
 Makefile     |    4 ++--
 README       |   20 ++++++++++++++++++++
 crypt.README |   20 --------------------
 3 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/Makefile b/Makefile
index ee8d07b..9fc900a 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ prefix:=/usr
 bindir=$(prefix)/bin
 libdir=$(prefix)/lib
 incdir=$(prefix)/include
-docdir=$(prefix)/share/doc/Cygwin
+docdir=$(prefix)/share/doc/crypt
 DLLVER=0
 
 STATICLIB=libcrypt.a
@@ -47,5 +47,5 @@ install: all
 	install -m 644 $(STATICLIB)    $(DESTDIR)$(libdir)
 	install -m 644 $(IMPORTLIB)    $(DESTDIR)$(libdir)
 	install -m 755 $(SHAREDLIB)    $(DESTDIR)$(bindir)
-	install -m 644 crypt.README    $(DESTDIR)$(docdir)
+	install -m 644 README          $(DESTDIR)$(docdir)
 
diff --git a/README b/README
new file mode 100644
index 0000000..31f576e
--- /dev/null
+++ b/README
@@ -0,0 +1,20 @@
+This is the crypt package Version 2.1
+
+It provides a static library libcrypt.a as well as a shared library
+cygcrypt-0.dll together with a link lib libcrypt.dll.a, which export
+the functions
+
+        crypt(3)
+        crypt_r(3)
+        encrypt(3)
+        setkey(3)
+
+The passwords created by crypt(3) are 100% identical to those created by 
+the Linux crypt().  DES, MD5, Blowfish, SHA-256, and SHA-512 algorithms are 
+supported.
+
+Please send requests, error reports etc. to the mailing list
+cygwin@cygwin.com.
+
+Have fun,
+Corinna Vinschen
diff --git a/crypt.README b/crypt.README
deleted file mode 100644
index 31f576e..0000000
--- a/crypt.README
+++ /dev/null
@@ -1,20 +0,0 @@
-This is the crypt package Version 2.1
-
-It provides a static library libcrypt.a as well as a shared library
-cygcrypt-0.dll together with a link lib libcrypt.dll.a, which export
-the functions
-
-        crypt(3)
-        crypt_r(3)
-        encrypt(3)
-        setkey(3)
-
-The passwords created by crypt(3) are 100% identical to those created by 
-the Linux crypt().  DES, MD5, Blowfish, SHA-256, and SHA-512 algorithms are 
-supported.
-
-Please send requests, error reports etc. to the mailing list
-cygwin@cygwin.com.
-
-Have fun,
-Corinna Vinschen


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]