source: projects/specs/trunk/lib/libs/libsecret/libsecret-vl.spec @ 12446

Revision 12446, 3.8 KB checked in by tomop, 4 years ago (diff)

updated 92 packages

ModemManager?-1.14.0-1

accountsservice-0.6.55-1

adwaita-icon-theme-3.36.1-1

cheese-3.34.0-1

clutter-gst3-3.0.27-1

clutter-gtk-1.8.4-2

clutter-1.26.4-1

cogl-1.22.8-1

colord-gtk-0.2.0-1

colord-1.4.4-1

control-center-3.36.4-1

eog-plugins-3.26.5-1

eog-3.36.3-1

evince-3.36.7-1

evolution-data-server-3.36.4-1

evolution-3.36.4-1

folks-0.14.0-1

fuse3-3.9.2-2

gcr-3.36.0-1

gdm-3.36.3-1

geocode-glib-3.26.2-1

gjs-1.64.4-1

glade3-3.36.0-1

gnome-applets-3.36.4-1

gnome-autoar-0.2.4-1

gnome-bluetooth-3.34.1-1

gnome-books-3.34.0-3

gnome-clocks-3.36.2-1

gnome-color-manager-3.36.0-1

gnome-contacts-3.36.2-1

gnome-desktop3-3.36.4-1

gnome-documents-3.34.0-1

gnome-flashback-3.36.3-1

gnome-font-viewer-3.34.0-1

gnome-keyring-3.36.0-1

gnome-menus-3.36.0-1

gnome-online-accounts-3.36.0-1

gnome-panel-3.36.2-1

gnome-session-3.36.0-1

gnome-settings-daemon-3.36.1-1

gnome-shell-3.36.4-1

gnome-software-3.36.1-1

gnome-themes-extra-3.28-2

gnome-tweaks-3.34.0-1

gnome-video-effects-0.5.0-1

gom-0.4-1

graphene-1.10.2-2

grilo-plugins-0.3.11-1

grilo-0.3.12-1

gsettings-desktop-schemas-3.36.1-1

gsound-1.0.2-3

gvfs-1.44.1-1

libaccounts-glib-1.25-1

libappindicator-12.10.0-1

libchamplain-0.12.20-1

libdbusmenu-16.04.0-1

libgdata-0.17.12-1

libgepub-0.6.0-4

libgphoto2-2.5.25-1

libgweather-3.36.1-1

libgxps-0.3.1-1

libhandy0-0.0.13-6

libical-3.0.8-2

libindicator-12.10.1-2

libmtp-1.1.17-1

libnma-1.8.30-2

liboauth-1.0.3-2

libsecret-0.20.3-1

libspectre-0.2.9-1

libwacom-1.4.1-1

libwnck3-3.36.0-1

libxmlb-0.1.15-3

metacity-3.36.1-1

mm-common-1.0.1-3

mobile-broadband-provider-info-0.20190618-1

mozjs68-68.11.0-1

mutter-3.36.4-1

nautilus-3.36.3-1

network-manager-applet-1.18.0-1

pipewire-0.3.8-1

python-dbusmock-0.18.3-6

python-mallard-ducktype-1.0.2-8

startup-notification-0.12-4

totem-pl-parser-3.26.5-1

totem-3.34.1-1

vala-0.48.8-1

xdg-desktop-portal-gtk-1.7.1-1

xdg-desktop-portal-1.7.2-1

yelp-tools-3.32.2-1

yelp-xsl-3.36.0-1

yelp-3.36.0-1

zenity-3.32.0-1

Line 
1Name:           libsecret
2Version:        0.20.3
3Release:        1%{?_dist_release}
4Summary:        GObject based library for accessing the Secret Service API
5Summary(ja):    シークレットサービス API アクセス用の GObject 基本ライブラリ
6Vendor:             Project Vine
7Distribution:   Vine Linux
8
9License:        LGPLv2+
10URL:            https://live.gnome.org/Libsecret
11%define         shortver %(echo %{version} | cut -d. -f1-2)
12Source0:        https://download.gnome.org/sources/libsecret/%{shortver}/%{name}-%{version}.tar.xz
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  glib2-devel >= 2.12.0
16BuildRequires:  gobject-introspection-devel
17BuildRequires:  libxslt-devel
18BuildRequires:  libgcrypt-devel
19BuildRequires:  vala-devel
20BuildRequires:  gtk-doc
21
22%description
23libsecret is a library for storing and retrieving passwords and other secrets.
24It communicates with the "Secret Service" using DBus. gnome-keyring and
25ksecretservice are both implementations of a Secret Service.
26
27libsecret replaces libgnome-keyring.
28
29%package        devel
30Summary:        Development files for %{name}
31Summary(ja):    %{name} の開発ファイル
32Group:          Development/Libraries
33Requires:       %{name} = %{version}-%{release}
34Requires:       pkgconfig
35
36
37%description    devel
38The %{name}-devel package contains libraries and header files for
39developing applications that use %{name}.
40
41
42%package        doc
43Summary:        Documentation for %{name}
44Summary(ja):    %{name} 用のドキュメント
45Group:          Documentation
46Requires:       %{name} = %{version}-%{release}
47BuildArch:      noarch
48
49%description    doc
50This package contains documentation for %{name}.
51
52
53%prep
54%setup -q
55
56%build
57%configure --disable-static
58make %{?_smp_mflags}
59
60%check
61
62%install
63rm -rf $RPM_BUILD_ROOT
64make install DESTDIR=$RPM_BUILD_ROOT
65find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
66
67%find_lang %{name}
68
69%clean
70rm -rf $RPM_BUILD_ROOT
71
72
73%post -p /sbin/ldconfig
74
75%postun -p /sbin/ldconfig
76
77
78%files -f %{name}.lang
79%defattr(-,root,root,-)
80%license COPYING
81%doc AUTHORS ChangeLog NEWS README
82%{_bindir}/secret-tool
83%{_libdir}/*.so.*
84%dir %{_libdir}/girepository-1.0
85%{_libdir}/girepository-1.0/*.typelib
86%{_mandir}/man1/secret-tool.1.gz
87
88%files devel
89%defattr(-,root,root,-)
90%{_includedir}/%{name}-1
91%{_libdir}/*.so
92%{_libdir}/pkgconfig/*.pc
93%dir %{_datadir}/gir-1.0
94%{_datadir}/gir-1.0/*.gir
95%dir %{_datadir}/vala
96%dir %{_datadir}/vala/vapi
97%{_datadir}/vala/vapi/*
98
99%files doc
100%defattr(-,root,root,-)
101%{_datadir}/gtk-doc/html/%{name}-1
102
103
104%changelog
105* Mon Aug 03 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.20.3-1
106- new upstream release.
107
108* Fri Nov 01 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.18.8-2
109- added vala stuff.
110
111* Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.18.8-1
112- new upstream release.
113
114* Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.5-1
115- new upstream release
116
117* Sun Jan 24 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.4-1
118- new upstream release
119
120* Sun Aug 30 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.3-1
121- new upstream release
122
123* Sun May 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.2-1
124- new upstream release
125
126* Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18-1
127- new upstream release
128
129* Wed Feb 19 2014 NAKAMURA Kenta <kenta@vinelinux.org> 0.16-3
130- rebuilt with libgcrypt-1.6
131
132* Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16-2
133- rebuild with VineSeed environment
134
135* Sat Aug 31 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16-1
136- new upstream release
137
138* Thu Apr 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.15-1
139- new upstream release
140
141* Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11-1
142- new upstream release
143
144* Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10-1
145- initial build
Note: See TracBrowser for help on using the repository browser.