Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 111125 Details for
Bug 185970
Copyright check should look for third-party copyrights
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Changes Copyright-check.sh to separate third party copyrights into their own file
copyright_thirdparty_supportv2.txt (text/plain), 1.58 KB, created by
Joshua Bowles
on 2008-08-27 16:43:27 EDT
(
hide
)
Description:
Changes Copyright-check.sh to separate third party copyrights into their own file
Filename:
MIME Type:
Creator:
Joshua Bowles
Created:
2008-08-27 16:43:27 EDT
Size:
1.58 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.hyades.releng.builder >Index: master/bash/copyright-check.sh >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.hyades.releng.builder/master/bash/copyright-check.sh,v >retrieving revision 1.26 >diff -u -r1.26 copyright-check.sh >--- master/bash/copyright-check.sh 24 Jul 2008 14:43:59 -0000 1.26 >+++ master/bash/copyright-check.sh 27 Aug 2008 20:32:54 -0000 >@@ -42,8 +42,12 @@ > > # List of all files missing copyrights > touch BadOrMissingCopyrights >+touch ThirdPartyCopyrights > cat CheckedFiles | while read i; do >- if [[ `grep -c "http://www.eclipse.org/legal/epl-v10.html" "$i"` = 0 || `grep -c "Copyright" "$i"` = 0 ]];then >+ if [[ `grep "Copyright" "$i" | grep -c "IBM"` == 0 && `grep "Copyright" "$i" | grep -c "Scapa"` == 0 && `grep "Copyright" "$i" | grep -c "Intel"` == 0 && `echo $i | grep -c "source"` == 0 | grep -c ".win_"` == 0 && `echo $i | grep -c ".linux_"` == 0 ]] >+ then >+ echo $i >>ThirdPartyCopyrights >+ elif [[ `grep -c "http://www.eclipse.org/legal/epl-v10.html" "$i"` = 0 || `grep -c "Copyright" "$i"` = 0 ]];then > echo $i >>BadOrMissingCopyrights > else > echo $i >>FilesWithCopyrights >@@ -74,6 +78,6 @@ > fi > > # Copies all the reports to the published directory >-for file in Patterns CheckedFiles BadOrMissingCopyrights FilesWithCopyrights NeedUpdate; do >+for file in Patterns CheckedFiles BadOrMissingCopyrights FilesWithCopyrights NeedUpdate ThirdPartyCopyrights; do > cat "$file" >> "$publishDir/$file" > done >\ No newline at end of file
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 185970
:
110368
|
111125
|
111835
|
111836
|
114550