Skip to content

Commit 38fc373

Browse files
committed
Add PKG_* to all components
1 parent 692d037 commit 38fc373

File tree

39 files changed

+499
-131
lines changed

39 files changed

+499
-131
lines changed

etc/check-components.sh

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/usr/bin/env bash
2+
3+
# Copyright 2017 The UNIC Project Developers.
4+
#
5+
# See the COPYRIGHT file at the top-level directory of this distribution.
6+
#
7+
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8+
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9+
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10+
# option. This file may not be copied, modified, or distributed
11+
# except according to those terms.
12+
13+
# Since `cargo publish --all` does not exist yet, we use this dumb alternative
14+
# solution for now.
15+
#
16+
# Main downside of this approch is that there are separate `target/`
17+
# directories used for each component, increasing the test and publish process
18+
# time.
19+
20+
set -e
21+
22+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
23+
. "$DIR/common.sh"
24+
25+
26+
# Steps
27+
28+
# Package all components
29+
for component in $COMPONENTS; do
30+
pkg_file="$component/src/pkg_info.rs"
31+
if [ ! -f "$pkg_file" ]
32+
then
33+
echo "Missing pkg_file: $component"
34+
fi
35+
done

unic/bidi/src/lib.rs

+12-15
Original file line numberDiff line numberDiff line change
@@ -77,26 +77,23 @@ extern crate serde;
7777
#[cfg(all(feature = "serde", test))]
7878
extern crate serde_test;
7979

80+
pub use unic_ucd_bidi::UNICODE_VERSION;
81+
pub use unic_ucd_bidi::{bidi_class, BidiClass, BidiClassCategory};
82+
83+
mod pkg_info;
84+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
85+
8086
pub mod format_chars;
87+
8188
pub mod level;
89+
pub use level::Level;
8290

8391
mod bidi_info;
84-
mod explicit;
85-
mod implicit;
86-
mod prepare;
87-
88-
pub use unic_ucd_bidi::UNICODE_VERSION;
89-
pub use unic_ucd_bidi::{bidi_class, BidiClass, BidiClassCategory};
90-
9192
pub use bidi_info::{BidiInfo, ParagraphInfo};
92-
pub use level::Level;
93-
pub use prepare::LevelRun;
9493

95-
/// UNIC component version.
96-
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
94+
mod explicit;
9795

98-
/// UNIC component name.
99-
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
96+
mod implicit;
10097

101-
/// UNIC component description.
102-
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");
98+
mod prepare;
99+
pub use prepare::LevelRun;

unic/bidi/src/pkg_info.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2017 The UNIC Project Developers.
2+
//
3+
// See the COPYRIGHT file at the top-level directory of this distribution.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
//! Package information
12+
13+
/// UNIC component version.
14+
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
15+
16+
/// UNIC component name.
17+
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
18+
19+
/// UNIC component description.
20+
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/char/property/src/lib.rs

+10-9
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,26 @@
2828
#[macro_use]
2929
extern crate unic_char_range;
3030

31-
// pub because is used in macros, called from macro call-site.
32-
pub mod tables;
33-
34-
mod macros;
3531
mod pkg_info;
36-
mod property;
37-
mod range_types;
32+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
3833

34+
mod property;
3935
pub use self::property::{CharProperty, PartialCharProperty, TotalCharProperty};
40-
pub use self::range_types::{
36+
37+
mod range_types;
38+
pub use range_types::{
4139
BinaryCharProperty,
4240
CustomCharProperty,
4341
EnumeratedCharProperty,
4442
NumericCharProperty,
4543
NumericCharPropertyValue,
4644
};
4745

46+
mod macros;
47+
48+
// pub because is used in macros, called from macro call-site.
49+
pub mod tables;
50+
4851
// Used in macros
4952
#[doc(hidden)]
5053
pub use core::{fmt as __fmt, str as __str};
51-
52-
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};

unic/char/range/src/lib.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,21 @@
5252
#[cfg(feature = "std")]
5353
extern crate core;
5454

55-
mod iter;
56-
mod macros;
5755
mod pkg_info;
56+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
57+
58+
mod iter;
59+
pub use iter::CharIter;
60+
5861
mod range;
62+
pub use range::CharRange;
63+
64+
mod macros;
65+
5966
mod step;
6067

6168
#[cfg(feature = "fused")]
6269
mod iter_fused;
6370

6471
#[cfg(feature = "trusted-len")]
6572
mod iter_trusted_len;
66-
67-
pub use range::CharRange;
68-
pub use iter::CharIter;
69-
70-
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};

unic/char/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ pub extern crate unic_char_property as property;
1919
pub extern crate unic_char_range as range;
2020

2121
mod pkg_info;
22-
2322
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};

unic/emoji/char/src/lib.rs

+10-9
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,22 @@ extern crate unic_char_range;
2222
extern crate unic_ucd_version;
2323

2424
mod pkg_info;
25-
26-
mod emoji_version;
27-
28-
mod emoji;
29-
mod emoji_component;
30-
mod emoji_modifier;
31-
mod emoji_modifier_base;
32-
mod emoji_presentation;
33-
3425
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
3526

27+
mod emoji_version;
3628
pub use emoji_version::{UnicodeVersion, EMOJI_VERSION};
3729

30+
mod emoji;
3831
pub use emoji::{is_emoji, Emoji};
32+
33+
mod emoji_component;
3934
pub use emoji_component::{is_emoji_component, EmojiComponent};
35+
36+
mod emoji_modifier;
4037
pub use emoji_modifier::{is_emoji_modifier, EmojiModifier};
38+
39+
mod emoji_modifier_base;
4140
pub use emoji_modifier_base::{is_emoji_modifier_base, EmojiModifierBase};
41+
42+
mod emoji_presentation;
4243
pub use emoji_presentation::{is_emoji_presentation, EmojiPresentation};

unic/emoji/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@
2020
pub extern crate unic_emoji_char as char;
2121

2222
mod pkg_info;
23-
2423
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};

unic/idna/mapping/src/lib.rs

+3-9
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,10 @@ mod mapping;
2626

2727
use unic_ucd_version::UnicodeVersion;
2828

29+
mod pkg_info;
30+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
31+
2932
pub use mapping::Mapping;
3033

3134
/// The version of [Unicode IDNA Compatibility Processing](https://www.unicode.org/reports/tr46/)
3235
pub const UNICODE_VERSION: UnicodeVersion = include!("../tables/unicode_version.rsv");
33-
34-
/// UNIC component version.
35-
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
36-
37-
/// UNIC component name.
38-
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
39-
40-
/// UNIC component description.
41-
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/idna/mapping/src/pkg_info.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2017 The UNIC Project Developers.
2+
//
3+
// See the COPYRIGHT file at the top-level directory of this distribution.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
//! Package information
12+
13+
/// UNIC component version.
14+
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
15+
16+
/// UNIC component name.
17+
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
18+
19+
/// UNIC component description.
20+
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/idna/punycode/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@
2525
2626
use std::u32;
2727
use std::char;
28+
2829
// TODO: Drop following after MIN_RUST_VERSION >= 1.23
2930
#[allow(unused_imports)]
3031
use std::ascii::AsciiExt;
3132

33+
mod pkg_info;
34+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
35+
3236
// Bootstring parameters for Punycode
3337
static BASE: u32 = 36;
3438
static T_MIN: u32 = 1;

unic/idna/punycode/src/pkg_info.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2017 The UNIC Project Developers.
2+
//
3+
// See the COPYRIGHT file at the top-level directory of this distribution.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
//! Package information
12+
13+
/// UNIC component version.
14+
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
15+
16+
/// UNIC component name.
17+
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
18+
19+
/// UNIC component description.
20+
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/idna/src/lib.rs

+4-10
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,12 @@ extern crate unic_ucd_normal;
4848
extern crate unic_idna_mapping as mapping;
4949
extern crate unic_idna_punycode as punycode;
5050

51-
mod process;
51+
mod pkg_info;
52+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
5253

5354
pub use mapping::UNICODE_VERSION;
55+
56+
mod process;
5457
pub use process::PUNYCODE_PREFIX;
5558
pub use process::{Errors, Flags};
5659
pub use process::{to_ascii, to_unicode};
57-
58-
/// UNIC component version.
59-
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
60-
61-
/// UNIC component name.
62-
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
63-
64-
/// UNIC component description.
65-
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/idna/src/pkg_info.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2017 The UNIC Project Developers.
2+
//
3+
// See the COPYRIGHT file at the top-level directory of this distribution.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
//! Package information
12+
13+
/// UNIC component version.
14+
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
15+
16+
/// UNIC component name.
17+
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
18+
19+
/// UNIC component description.
20+
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/normal/src/lib.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,8 @@ pub use unic_ucd_normal::UNICODE_VERSION;
4141
pub use decompose::Decompositions;
4242
pub use recompose::Recompositions;
4343

44-
/// UNIC component version.
45-
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
46-
47-
/// UNIC component name.
48-
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
49-
50-
/// UNIC component description.
51-
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");
44+
mod pkg_info;
45+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
5246

5347
/// Methods for iterating over strings while applying Unicode normalizations
5448
/// as described in

unic/normal/src/pkg_info.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2017 The UNIC Project Developers.
2+
//
3+
// See the COPYRIGHT file at the top-level directory of this distribution.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
//! Package information
12+
13+
/// UNIC component version.
14+
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
15+
16+
/// UNIC component name.
17+
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
18+
19+
/// UNIC component description.
20+
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");

unic/segment/src/lib.rs

+6-12
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,13 @@ extern crate unic_ucd_segment;
7777
#[cfg(test)]
7878
extern crate unic_ucd_common;
7979

80-
mod grapheme;
81-
mod word;
82-
8380
pub use unic_ucd_segment::UNICODE_VERSION;
8481

85-
pub use grapheme::{GraphemeCursor, GraphemeIncomplete, GraphemeIndices, Graphemes};
86-
pub use word::{WordBoundIndices, WordBounds, Words};
87-
88-
/// UNIC component version.
89-
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
82+
mod pkg_info;
83+
pub use pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
9084

91-
/// UNIC component name.
92-
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
85+
mod grapheme;
86+
pub use grapheme::{GraphemeCursor, GraphemeIncomplete, GraphemeIndices, Graphemes};
9387

94-
/// UNIC component description.
95-
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");
88+
mod word;
89+
pub use word::{WordBoundIndices, WordBounds, Words};

0 commit comments

Comments
 (0)