forked from ui-alchemy/ui_alchemy-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconverge-ui-devel.spec
207 lines (191 loc) · 9.57 KB
/
converge-ui-devel.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# vim: sw=4:ts=4:et
#
# Copyright 2011 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (GPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of GPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
%global homedir %{_datarootdir}/%{name}
Name: converge-ui-devel
Summary: A collection of assets
Group: Applications/System
License: GPLv2
URL: http://www.katello.org
Version: 0.5
Release: 1%{?dist}
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
%description
A common set of web assets.
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
install -m0755 -d %{buildroot}%{homedir}
install -m0755 -d %{buildroot}%{homedir}/javascripts/
install -m0755 -d %{buildroot}%{homedir}/rails/
install -m0755 -d %{buildroot}%{homedir}/stylesheets/
cp -R javascripts/* %{buildroot}%{homedir}/javascripts/
cp -R rails/* %{buildroot}%{homedir}/rails
cp -R stylesheets/* %{buildroot}%{homedir}/stylesheets/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(755, root, root)
%{homedir}
%doc README.rst LICENSE
%changelog
* Mon Jun 18 2012 Mike McCune <[email protected]> 0.5-1
- rolling back to 0.3-1 so I can fix the forgotten tag ([email protected])
- Adds short list of supported libraries to test documentation workflow.
- Removes documentation build directory from source tree. ([email protected])
- Updates to README ([email protected])
- Automatic commit of package [converge-ui-devel] release [0.4-1].
- Updates to README. ([email protected])
- Fixing some settings. ([email protected])
- Re-build docus. ([email protected])
- Adding new test documentation. ([email protected])
- Initial crack at using Sphinx to generate docs. ([email protected])
- Updates to internationalization of string that generates the recovery link.
- Updates a few strings for consistency around login vs username.
- Merge branch 'master' of git://github.com/Katello/converge-ui
- More clean-up of unused code and adding a link back to the login screen from
the change password screen. ([email protected])
- Org switcher and other small changes. ([email protected])
- Re-factors colors within login styling to define default variables to make
them overrideable by a parent project. ([email protected])
- Updates change password screen to new html structure. ([email protected])
- Updates to color and styling of outer sign on box. ([email protected])
- Re-works the login screen to include slide-out panels for password and
username recovery. ([email protected])
- Splits the password recovery page into two seperate pages - one for username
recovery and one for password recovery. ([email protected])
- Adds an instance variable that allows for the disabling of the password
recovery link. This may be useful if the project has not implemented
password recovery or is using a central password store like LDAP.
- Removes forms.scss from shell styling until form element styling is
finalized. ([email protected])
- Merge branch 'master' of git://github.com/Katello/converge-ui
- Clean up and re-factor around login javascript and fixing up the favicon
path. ([email protected])
- Updates to styling to put login page inline with newest design proposals.
- Changes to using font-url and assumes that the project using the fonts will
setup proper font-url configuration variables. ([email protected])
- Fix for details icon in wrong place. Should not float left.
- Adds a base.scss file to store and import common variables, mixins and
utilities. Updates all scss files to use new base file and includes some
minor updates to shell and footer styling. ([email protected])
- Merge branch 'master' into login ([email protected])
- Updates the yield blocks for javascript and stylesheets to be less likely to
clash with an applications declarations. ([email protected])
- Fix for bad url calls on some images. ([email protected])
- Merge pull request #14 from knowncitizen/master ([email protected])
- Fix to abstract app name. Allows user of converge-ui to pass in any string.
- Double position declaration removal. ([email protected])
- Relative image urls using compass. ([email protected])
- Additional refactoring for decreasing duplicate CSS directives.
- Updates to get login, password reset and change password basic javascript
support working. ([email protected])
- Adds footer to user session layout. ([email protected])
- Refactoring for to pull out common bits amongst user session layouts.
- Touch-ups to the login screen. ([email protected])
- Updates change password layout to conform with general styling and adds more
translations for text used on both reset and change pages.
- jquery - multiselect & filter - add new widgets ([email protected])
- Adds updated password reset screen with translations and formatting.
- Merge pull request #11 from knowncitizen/master ([email protected])
- Fix for tab highlight on currently selected tab. ([email protected])
* Sat Jun 16 2012 Eric D Helms <[email protected]> 0.4-1
- Updates to README. ([email protected])
- Fixing some settings. ([email protected])
- Re-build docus. ([email protected])
- Adding new test documentation. ([email protected])
- Initial crack at using Sphinx to generate docs. ([email protected])
- Updates to internationalization of string that generates the recovery link.
- Updates a few strings for consistency around login vs username.
- Merge branch 'master' of git://github.com/Katello/converge-ui
- More clean-up of unused code and adding a link back to the login screen from
the change password screen. ([email protected])
- Org switcher and other small changes. ([email protected])
- Re-factors colors within login styling to define default variables to make
them overrideable by a parent project. ([email protected])
- Updates change password screen to new html structure. ([email protected])
- Updates to color and styling of outer sign on box. ([email protected])
- Re-works the login screen to include slide-out panels for password and
username recovery. ([email protected])
- Splits the password recovery page into two seperate pages - one for username
recovery and one for password recovery. ([email protected])
- Adds an instance variable that allows for the disabling of the password
recovery link. This may be useful if the project has not implemented
password recovery or is using a central password store like LDAP.
- Removes forms.scss from shell styling until form element styling is
finalized. ([email protected])
- Merge branch 'master' of git://github.com/Katello/converge-ui
- Clean up and re-factor around login javascript and fixing up the favicon
path. ([email protected])
- Updates to styling to put login page inline with newest design proposals.
- Changes to using font-url and assumes that the project using the fonts will
setup proper font-url configuration variables. ([email protected])
- Fix for details icon in wrong place. Should not float left.
- Adds a base.scss file to store and import common variables, mixins and
utilities. Updates all scss files to use new base file and includes some
minor updates to shell and footer styling. ([email protected])
- Merge branch 'master' into login ([email protected])
- Updates the yield blocks for javascript and stylesheets to be less likely to
clash with an applications declarations. ([email protected])
- Fix for bad url calls on some images. ([email protected])
- Merge pull request #14 from knowncitizen/master ([email protected])
- Fix to abstract app name. Allows user of converge-ui to pass in any string.
- Double position declaration removal. ([email protected])
- Relative image urls using compass. ([email protected])
- Additional refactoring for decreasing duplicate CSS directives.
- Updates to get login, password reset and change password basic javascript
support working. ([email protected])
- Adds footer to user session layout. ([email protected])
- Refactoring for to pull out common bits amongst user session layouts.
- Touch-ups to the login screen. ([email protected])
- Updates change password layout to conform with general styling and adds more
translations for text used on both reset and change pages.
- jquery - multiselect & filter - add new widgets ([email protected])
- Adds updated password reset screen with translations and formatting.
- Merge pull request #11 from knowncitizen/master ([email protected])
- Fix for tab highlight on currently selected tab. ([email protected])
* Wed May 16 2012 Eric D Helms <[email protected]> 0.3-1
- First tag of converge-ui-devel.
* Thu Mar 29 2012 Eric D Helms <[email protected]> 0.2-1
- new package built with tito
* Wed Mar 28 2012 Eric D Helms <[email protected]> 0.1-1
- Changes to spec file. ([email protected])