Skip to content

Commit 31e153f

Browse files
committed
Merge remote-tracking branch 'upstream/2.12.x' into 2.13.x
2 parents 3c4501e + f1c600c commit 31e153f

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

.github/workflows/cla.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: "Check Scala CLA"
2+
on:
3+
pull_request:
4+
jobs:
5+
cla-check:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Verify CLA
9+
uses: scala/cla-checker@v1
10+
with:
11+
author: ${{ github.event.pull_request.user.login }}

NOTICE

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Scala
2-
Copyright (c) 2002-2024 EPFL
3-
Copyright (c) 2011-2024 Lightbend, Inc.
2+
Copyright (c) 2002-2025 EPFL
3+
Copyright (c) 2011-2025 Lightbend, Inc. dba Akka
44

55
Scala includes software developed at
66
LAMP/EPFL (https://lamp.epfl.ch/) and
7-
Lightbend, Inc. (https://www.lightbend.com/).
7+
Akka (https://akka.io/).
88

99
Licensed under the Apache License, Version 2.0 (the "License").
1010
Unless required by applicable law or agreed to in writing, software

project/ScalaDist.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ object ScalaDist {
5454
useNativeZip ++ // use native zip to preserve +x permission on scripts
5555
Seq(
5656
name := "scala",
57-
maintainer := "LAMP/EPFL and Lightbend, Inc. <[email protected]>",
57+
maintainer := "LAMP/EPFL and Akka",
5858
packageSummary := "Scala Programming Language Distribution", // this will be spliced into the middle of a sentence --> no period (it also determines sort order, so, no "The" in front)
5959
packageDescription := "Have the best of both worlds. Construct elegant class hierarchies for maximum code reuse and extensibility, implement their behavior using higher-order functions. Or anything in-between.",
6060
crossPaths := false,

project/Unix.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ object Unix {
6565
},
6666

6767
// RPM Specific
68-
Rpm / name := "scala",
69-
rpmVendor := "lightbend",
70-
rpmUrl := Some("http://github.com/scala/scala"),
71-
rpmLicense := Some("BSD"),
68+
Rpm / name := "scala",
69+
rpmVendor := "akka",
70+
rpmUrl := Some("https://github.com/scala/scala"),
71+
rpmLicense := Some("Apache 2"),
7272
rpmGroup := Some("Development/Languages"),
7373

7474
// This hack lets us ignore the RPM specific versioning junks.

src/linux/copyright

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Scala
2-
Copyright (c) 2002-2024 EPFL
3-
Copyright (c) 2011-2024 Lightbend, Inc.
2+
Copyright (c) 2002-2025 EPFL
3+
Copyright (c) 2011-2025 Lightbend, Inc. dba Akka
44

55
Scala includes software developed at
66
LAMP/EPFL (https://lamp.epfl.ch/) and
7-
Lightbend, Inc. (https://www.lightbend.com/).
7+
Akka. (https://akka.io/).
88

99
Licensed under the Apache License, Version 2.0 (the "License").
1010
Unless required by applicable law or agreed to in writing, software

0 commit comments

Comments
 (0)