You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by rs...@apache.org on 2021/03/05 15:39:52 UTC

[avro] 03/03: AVRO-3069: Ignore modified files after build

This is an automated email from the ASF dual-hosted git repository.

rskraba pushed a commit to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 56de625fd2b5a9b4e40bb0f9bcef1791d5ac5b40
Author: Ryan Skraba <ry...@skraba.com>
AuthorDate: Fri Mar 5 15:26:33 2021 +0100

    AVRO-3069: Ignore modified files after build
---
 lang/c++/.gitignore | 2 ++
 lang/c++/build.sh   | 2 +-
 lang/perl/README    | 3 +++
 pom.xml             | 1 +
 4 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/lang/c++/.gitignore b/lang/c++/.gitignore
index 21f4083..c53d482 100644
--- a/lang/c++/.gitignore
+++ b/lang/c++/.gitignore
@@ -6,3 +6,5 @@ test6.df
 test8.df
 test9.df
 test_skip.df
+test_lastSync.df
+test_readRecordUsingLastSync.df
diff --git a/lang/c++/build.sh b/lang/c++/build.sh
index 598d7aa..afa65ed 100755
--- a/lang/c++/build.sh
+++ b/lang/c++/build.sh
@@ -115,7 +115,7 @@ case "$target" in
 
   clean)
     (cd build && make clean)
-    rm -rf doc test.avro test?.df test_skip.df
+    rm -rf doc test.avro test?.df test??.df test_skip.df test_lastSync.df test_readRecordUsingLastSync.df
     ;;
 
   install)
diff --git a/lang/perl/README b/lang/perl/README
index 970c69a..ec76e5a 100644
--- a/lang/perl/README
+++ b/lang/perl/README
@@ -6,6 +6,9 @@ SYNOPSIS
       use Avro;
 
 DESCRIPTION
+    Apache Avro <https://avro.apache.org/> is a data serialization system
+    providing rich data structures and a compact, fast, binary data form.
+
 AUTHOR
     Apache Avro <de...@avro.apache.org>
 
diff --git a/pom.xml b/pom.xml
index 133f6d0..44cf6f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -377,6 +377,7 @@
                 <exclude>lang/perl/inc/Module/Install.pm</exclude>
                 <exclude>lang/perl/inc/Module/Install/*.pm</exclude>
                 <exclude>lang/py/.eggs/**</exclude>
+                <exclude>lang/py/.mypy_cache/**</exclude>
                 <exclude>lang/py/.tox/**</exclude>
                 <exclude>lang/py/build/**</exclude>
                 <exclude>lang/py/dist/**</exclude>