diff --git a/pkgs/typed_data/.gitignore b/pkgs/typed_data/.gitignore new file mode 100644 index 00000000..89f7747c --- /dev/null +++ b/pkgs/typed_data/.gitignore @@ -0,0 +1,8 @@ +.buildlog +.DS_Store +.idea +.pub/ +.settings/ +build/ +packages +pubspec.lock diff --git a/pkgs/typed_data/.status b/pkgs/typed_data/.status new file mode 100644 index 00000000..364ca4b4 --- /dev/null +++ b/pkgs/typed_data/.status @@ -0,0 +1,4 @@ +# Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +# for details. All rights reserved. Use of this source code is governed by a +# BSD-style license that can be found in the LICENSE file. + diff --git a/pkgs/typed_data/AUTHORS b/pkgs/typed_data/AUTHORS new file mode 100644 index 00000000..e8063a8c --- /dev/null +++ b/pkgs/typed_data/AUTHORS @@ -0,0 +1,6 @@ +# Below is a list of people and organizations that have contributed +# to the project. Names should be added to the list like so: +# +# Name/Organization + +Google Inc. diff --git a/pkgs/typed_data/CHANGELOG.md b/pkgs/typed_data/CHANGELOG.md new file mode 100644 index 00000000..a123d27a --- /dev/null +++ b/pkgs/typed_data/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 1.0.0 + +- ChangeLog starts here diff --git a/pkgs/typed_data/CONTRIBUTING.md b/pkgs/typed_data/CONTRIBUTING.md new file mode 100644 index 00000000..6f5e0ea6 --- /dev/null +++ b/pkgs/typed_data/CONTRIBUTING.md @@ -0,0 +1,33 @@ +Want to contribute? Great! First, read this page (including the small print at +the end). + +### Before you contribute +Before we can use your code, you must sign the +[Google Individual Contributor License Agreement](https://cla.developers.google.com/about/google-individual) +(CLA), which you can do online. The CLA is necessary mainly because you own the +copyright to your changes, even after your contribution becomes part of our +codebase, so we need your permission to use and distribute your code. We also +need to be sure of various other things—for instance that you'll tell us if you +know that your code infringes on other people's patents. You don't have to sign +the CLA until after you've submitted your code for review and a member has +approved it, but you must do it before we can put your code into our codebase. + +Before you start working on a larger contribution, you should get in touch with +us first through the issue tracker with your idea so that we can help out and +possibly guide you. Coordinating up front makes it much easier to avoid +frustration later on. + +### Code reviews +All submissions, including submissions by project members, require review. + +### File headers +All files in the project must start with the following header. + + // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file + // for details. All rights reserved. Use of this source code is governed by a + // BSD-style license that can be found in the LICENSE file. + +### The small print +Contributions made by corporations are covered by a different agreement than the +one above, the +[Software Grant and Corporate Contributor License Agreement](https://developers.google.com/open-source/cla/corporate). diff --git a/pkgs/typed_data/LICENSE b/pkgs/typed_data/LICENSE index ee999303..de31e1a0 100644 --- a/pkgs/typed_data/LICENSE +++ b/pkgs/typed_data/LICENSE @@ -1,4 +1,4 @@ -Copyright 2013, the Dart project authors. All rights reserved. +Copyright 2015, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/pkgs/typed_data/README.md b/pkgs/typed_data/README.md index e1e7db53..c7a4772c 100644 --- a/pkgs/typed_data/README.md +++ b/pkgs/typed_data/README.md @@ -1,4 +1,4 @@ -Helper libraries for working with typed data lists. +# Helper libraries for working with typed data lists. The `typed_data` package contains utility functions and classes that makes working with typed data lists easier. @@ -12,4 +12,10 @@ The `typed_data` package can be imported as Typed buffers are contains growable lists backed by typed arrays. These are similar to the growable lists returned by `new List()`, -but stores typed data like a typed data list. \ No newline at end of file +but stores typed data like a typed data list. + +## Features and bugs + +Please file feature requests and bugs at the [issue tracker][tracker]. + +[tracker]: https://github.com/dart-lang/typed_data/issues diff --git a/pkgs/typed_data/codereview.settings b/pkgs/typed_data/codereview.settings new file mode 100644 index 00000000..26c267c4 --- /dev/null +++ b/pkgs/typed_data/codereview.settings @@ -0,0 +1,3 @@ +CODE_REVIEW_SERVER: http://codereview.chromium.org/ +VIEW_VC: https://github.com/dart-lang/typed_data/commit/ +CC_LIST: reviews@dartlang.org diff --git a/pkgs/typed_data/pubspec.yaml b/pkgs/typed_data/pubspec.yaml index b4c39456..c804a6a5 100644 --- a/pkgs/typed_data/pubspec.yaml +++ b/pkgs/typed_data/pubspec.yaml @@ -2,7 +2,7 @@ name: typed_data version: 1.0.1-dev author: Dart Team description: Utility functions and classes related to the 'dart:typed_data' library. -homepage: http://www.dartlang.org +homepage: https://github.com/dart-lang/typed_data dev_dependencies: unittest: ">=0.9.0 <0.10.0" environment: