Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
0507e5b9f2
!24 [sync] PR-19: 添加sw架构
From: @openeuler-sync-bot 
Reviewed-by: @liqingqing_1229 
Signed-off-by: @liqingqing_1229
2022-11-17 07:44:26 +00:00
wzx
64e0ca0030 Add sw64 architecture
Signed-off-by: wzx <wuzx1226@qq.com>
(cherry picked from commit 997de354eef4282495244b8dbcb118458f064bac)
2022-11-17 15:43:51 +08:00
openeuler-ci-bot
e5f001c541
!23 [sync] PR-21: rebuild package
From: @openeuler-sync-bot 
Reviewed-by: @liqingqing_1229 
Signed-off-by: @liqingqing_1229
2022-10-26 02:41:28 +00:00
lijianglin
14e040e697 rebuild package
(cherry picked from commit 30596c5fa80d89ebe203fb16458fa44b1445117e)
2022-10-26 10:40:33 +08:00
openeuler-ci-bot
1c13c64597 !15 [sync] PR-14: update verion to 1.2.5.1
From: @openeuler-sync-bot
Reviewed-by: @liqingqing_1229
Signed-off-by: @liqingqing_1229
2021-11-30 11:21:02 +00:00
zhouwenpei
9b790f7f4d update verion to 1.2.5.1
(cherry picked from commit a61f996d952c2e2b6cfab580468158d209ecd4d5)
2021-11-30 19:20:43 +08:00
openeuler-ci-bot
40af11e25b !13 update to 1.2.4
From: @xinghe_1
Reviewed-by: @SuperSix173
Signed-off-by: @SuperSix173
2021-02-01 09:14:14 +08:00
renmingshuai
bbfaefb1bd update version 2021-01-30 14:19:07 +08:00
openeuler-ci-bot
276664eed8 !12 【mainline】添加差异yaml文件
Merge pull request !12 from xinghe/master
2020-08-17 20:00:19 +08:00
jinzhimin369
21135ceac6 add diff yaml 2020-08-17 17:55:00 +08:00
9 changed files with 62 additions and 4 deletions

View File

@ -0,0 +1,33 @@
name: alsa-lib
old_version: 1.2.2
new_version: 1.2.3
interface_differences:
- type: 'config file'
item: src/conf/alsa.conf
diff: 添加对XDG_CONFIG_HOME路径的搜索支持
influence: 功能增强
- type: 'config file'
item: PCM
diff: 改变PCM设备编号为Asus Xonar U5
influence: 功能优化
- type: 'config file'
item: src/conf/cards/USB-Audio.conf
diff: 为Asus Xonar 5添加另一个声卡名XONAR U5
influence: 功能增强
- type: 'feature'
item: Define/DefineRegex
diff: 在Syntax 3支持Define/DefineRegex
influence: 功能增强
- type: 'ABI'
item: ucm配置文件解析器
diff: src/ucm/parser.c添加ucm配置文件解析器
influence: 功能增强
- type: 'ABI'
item: ucm新增parse_string_substituteparse_integer_substitute
diff: 解析字符串并替换,解析整数并替换
influence: 功能增强,对外无影响
- type: 'ABI'
item: ucm新增parse_controls_once
diff: 解析UCM配置文件中的SectionOnce部分
influence: 功能增强
remark: '新增功能,对原有功能无影响;'

Binary file not shown.

12
alsa-lib-1.2.5.1-sw.patch Executable file
View File

@ -0,0 +1,12 @@
diff -Naur alsa-lib-1.2.5.1.org/include/alsa-symbols.h alsa-lib-1.2.5.1.sw/include/alsa-symbols.h
--- alsa-lib-1.2.5.1.org/include/alsa-symbols.h 2020-10-19 09:45:13.000000000 +0000
+++ alsa-lib-1.2.5.1.sw/include/alsa-symbols.h 2021-11-13 15:59:28.040000000 +0000
@@ -43,7 +43,7 @@
default_symbol_version(real, name, version)
#else
#define use_symbol_version(real, name, version) /* nothing */
-#if defined(__alpha__) || defined(__mips__)
+#if defined(__alpha__) || defined(__sw_64__) || defined(__mips__)
#define use_default_symbol_version(real, name, version) \
__asm__ (".weak " ASM_NAME(#name)); \
__asm__ (ASM_NAME(#name) " = " ASM_NAME(#real))

BIN
alsa-lib-1.2.5.1.tar.bz2 Normal file

Binary file not shown.

View File

@ -1,8 +1,8 @@
%define version_alsa_ucm 1.2.3
%define version_alsa_tplg 1.2.3
%define version_alsa_ucm 1.2.5.1
%define version_alsa_tplg 1.2.5.1
Name: alsa-lib
Version: 1.2.3
Release: 2
Version: 1.2.5.1
Release: 3
Summary: the user space library that developers compile ALSA applications against
License: LGPLv2+
@ -11,6 +11,7 @@ Source0: https://www.alsa-project.org/files/pub/lib/%{name}-%{version}.tar.bz2
Source1: ftp://ftp.alsa-project.org/pub/lib/alsa-ucm-conf-%{version_alsa_ucm}.tar.bz2
Source2: ftp://ftp.alsa-project.org/pub/lib/alsa-topology-conf-%{version_alsa_tplg}.tar.bz2
Source10: asound.conf
Patch1: alsa-lib-1.2.5.1-sw.patch
Source40: alsa-ucm-conf.patch
BuildRequires: autoconf, automake, libtool, doxygen
@ -122,6 +123,18 @@ tar xvjf %{SOURCE2} -C %{buildroot}/%{_datadir}/alsa --strip-components=1 "*/top
%{_datadir}/alsa/topology
%changelog
* Mon Nov 14 2022 wuzx<wuzx1226@qq.com> - 1.2.5.1-3
- Add sw64 architecture
* Tue Oct 25 2022 lijianglin <lijianglin2@huawei.com> - 1.2.5.1-2
- rebuild package
* Mon Nov 29 2021 zhouwenpei <zhouwenpei1@huawei.com> - 1.2.5.1-1
- update to 1.2.5.1
* Sat Jan 30 2021 xinghe <xinghe1@huawei.com> - 1.2.4-1
- update to 1.2.4
* Mon Aug 10 2020 douyan <douyan@kylinos.cn> - 1.2.3-2
- add alsa-ucm and alsa-topology package

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.